ow:人类的函数参数验证 源码
人类的函数参数验证 强调 富有表现力的可链接API 大量内置验证 支持自定义验证 Node.js中的自动标签推断 用TypeScript编写 安装 $ npm install ow 用法 如果使用CommonJS,则需要以const {default: ow} = require('ow')导入。 import ow from 'ow' ; const unicorn = input => { ow ( input , ow . string . minLength ( 5 ) ) ; // ... } ; unicorn ( 3 ) ; //=> ArgumentError: Expec
用户评论