发布了个模块 Typo,从此再也不怕输错属性(方法)名了!
发布于 1个月前 作者 luinlee 276 次浏览 来自 分享

https://github.com/luin/typo

var typo = require('node-typo');
var fs = typo.wrap(require('fs'));
console.log(fs.exist === fs.exists); // true
console.log(fs.exsit === fs.exists); // true
console.log(fs.exsiiiiit === fs.exists); // false

只是娱乐一下~~

4 回复

没看明白做什么的

这样很不好,纵容犯错

@captainblue2013 如果你输入的方法名(比如例子中的 exist)在对象(比如例子中的 fs)中不存在的话,就会自动找一个看起来最接近的方法(比如例子中的 exists)。

@xiuxu123 噗,只是娱乐的。。。当然不能用了

回到顶部