MOOver.js/node_modules/validator/es/lib/whitelist.js
2022-02-18 13:54:33 +01:00

5 lines
No EOL
187 B
JavaScript

import assertString from './util/assertString';
export default function whitelist(str, chars) {
assertString(str);
return str.replace(new RegExp("[^".concat(chars, "]+"), 'g'), '');
}