$ cnpm install null-check
Ensure a path doesn't contain null bytes
$ npm install null-check
import nullCheck from 'null-check';
try {
nullCheck('unicorn.png\u0000');
} catch (error) {
console.log(error);
//=> 'Path must be a string without null bytes.'
}
Copyright 2013 - present © cnpmjs.org