文件名称:validate-by-shorthand:该库提供了广泛的验证测试,可通过简捷方式轻松访问
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-29 14:13:10
JavaScript
速记验证 该库提供了广泛的验证测试,可通过简写轻松访问。 用法 var validate = require ( 'validate-by-shorthand' ) ; // validate using shorthands validate ( 'string!empty' , 'foo' ) ; // true validate ( 'string!empty' , '' ) ; // false validate ( 'number>0' , 5 ) ; // true validate ( 'number>0' , 0 ) ; // false validate ( 'string[]' , [ 'foo' , '' , 'bar' ] ) ; // true validate ( 'string[]' , [ 'foo' , '' , 5 ] ) ; // false // v
【文件预览】:
validate-by-shorthand-master
----.jshintrc(171B)
----.gitignore(38B)
----.codeclimate.yml(26B)
----.jscsrc(116B)
----package.json(1KB)
----.travis.yml(2KB)
----LICENSE(1KB)
----index.js(178B)
----README.md(4KB)
----lib()
--------is-type.js(2KB)
--------validate-value.js(821B)
----test()
--------index.js(3KB)
--------fixtures.js(3KB)
----.editorconfig(262B)