stripcc
v1.0.0
Published
Strip control-characters from string
Readme
stripcc
Node.JS string module for stripping control-characters from string. Native and pure implementation.
var stripcc = require('stripcc');
console.log(stripcc('he\u0001llo'));Output:
helloInstallation
$ npm install stripccDescription
Module provides single function that removes non-printable control characters from strings. It has native and pure implementation.
More information
It removes characters from C0 and C1 sets except for CR('\r'), LF('\n'), tab('\t') and space(' ').
