杨军军

Results 3 comments of 杨军军

希望官方好好整理一下文档,文档页面连一个下载地址都没有,好多功能都没有文档

更加函数式的实现: ```js const _ = Symbol('_') const partial = (fn, ...outerArgs) => { return function (...innerArgs) { return fn.call(this, ...outerArgs.map(arg => arg === _ ? innerArgs.shift() : arg), ...innerArgs) }...

try this ```shell # windows powershell $ $env:DEBUG="express:*"; node .\index.js # windows cmd $ set debug=express:* && node index.js # linux/Mac OS $ DEBUG=express:* node index.js ```