mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 15:05:38 -06:00
6 lines
227 B
TypeScript
6 lines
227 B
TypeScript
/**
|
|
* Remove all lines starting with `%%` from the text that don't contain a `%%{`
|
|
* @param text - The text to remove comments from
|
|
* @returns cleaned text
|
|
*/
|
|
export declare const cleanupComments: (text: string) => string;
|