UNPKG

@curvenote/schema

Version:

Schema and markdown parser for @curvenote/editor

5 lines 217 B
/** Removes nobreak and zero-width spaces */ export function cleanWhitespaceChars(text, nbsp = ' ') { return text.replace(/\u00A0/g, nbsp).replace(/[\u200B-\u200D\uFEFF]/g, ''); } //# sourceMappingURL=clean.js.map