vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
14 lines • 346 B
TypeScript
/**
* Removes byte order mark (U+FEFF).
* @param input The string to normalize.
*
* @returns The normalized string.
*
* @example
*
* ```ts
* const normalized = normalizeByteOrderMark('\uFEFFHello'); // 'Hello'
* ```
*/
export declare function normalizeByteOrderMark(input: string): string;
//# sourceMappingURL=byte-order-mark.d.ts.map