null-check

Ensure a path doesn't contain null bytes

MIT 3 个版本
安装
npm install null-check
yarn add null-check
pnpm add null-check
bun add null-check
README

null-check

Ensure a path doesn't contain null bytes

Install

$ npm install null-check

Usage

import nullCheck from 'null-check';

try {
	nullCheck('unicorn.png\u0000');
} catch (error) {
	console.log(error);
	//=> 'Path must be a string without null bytes.'
}
版本列表
3.0.0 2021-05-03
2.0.0 2015-10-17
1.0.0 2015-05-10