UNPKG

meta-sanitizer

Version:

This lib contain useful functions to sanitize strings.

7 lines 280 B
import { SanitizerEngine } from "./engine.js"; export function justCharsAndNumbers(stringToSanize:string,allowSpace:boolean):string{ let allowChars=[]; if(allowSpace) allowChars.push(' '); return SanitizerEngine(stringToSanize,true,true,allowChars).sanitizedData; }