remove-unprintable
v2.0.2
Published
Return a new string with all unprintable characters removed
Maintainers
Readme
#remove-unprintable
Small npm module to remove all unprintable characters from a string
installation
npm install remove-unprintable
yarn add remove-unprintableexample/usage
var removeUnprintable = require("remove-unprintable");
var str = "\u0000foo";
console.log(removeUnprintable(str) === "foo"); // will print true;