UNPKG

md-link-extractor

Version:
10 lines (9 loc) 242 B
const NEWLINES_RE = /\r\n?|\n/g; const NULL_RE = /\0/g; export function normalize(string) { let str = string; str = str.replace(NEWLINES_RE, '\n'); str = str.replace(NULL_RE, '\uFFFD'); return str; } export default normalize;