b-validate:小而强大的Javascript类型验证

时间:2024-06-01 15:02:44
【文件属性】:

文件名称:b-validate:小而强大的Javascript类型验证

文件大小:18KB

文件格式:ZIP

更新时间:2024-06-01 15:02:44

JavaScript

b验证 JavaScript类型验证。 强调 可链接的api 支持自定义验证器 支持架构验证 支持异步验证 用法 npm i b-validate import bv from 'b-validate' ; bv ( 123 ) . number . min ( 2 ) . max ( 10 ) . collect ( ( error ) => { console . log ( error ) ; // { value: 123, type: 'number', message: '123 is not less than 10' } // if no error, error equal to null } ) ; // or get error message like this: const error = bv ( 'b-validate'


【文件预览】:
b-validate-master
----.gitignore(951B)
----.babelrc(78B)
----package.json(1KB)
----src()
--------index.js(3KB)
--------is.js(725B)
--------rules()
----playground()
--------async.js(426B)
--------test.js(1KB)
----.travis.yml(155B)
----jest.config.js(1KB)
----LICENSE(1KB)
----rollup.config.js(265B)
----README.md(5KB)
----tests()
--------number.test.js(2KB)
--------string.test.js(1KB)
--------array.test.js(1KB)
--------object.test.js(981B)
--------options.test.js(481B)
--------boolean.test.js(689B)
--------type.test.js(872B)
--------schema.test.js(1KB)
--------custom.test.js(272B)
--------not.test.js(301B)
----.npmignore(79B)

网友评论