frontend/.pnpm-store/v3/files/3c/2788567b89f83a98c10a4b25a8d761a86259dfa851ed2d99986d9b4eb9679319c32ec2c67049c3a72fb916e26048610aa4e3c9c2b0357b119c75772bea8a3e

7 lines
288 B
Plaintext

import assertString from './util/assertString';
import blacklist from './blacklist';
export default function stripLow(str, keep_new_lines) {
assertString(str);
var chars = keep_new_lines ? '\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F' : '\\x00-\\x1F\\x7F';
return blacklist(str, chars);
}