文件名称:esdir:ES的对象检查工具
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-26 07:57:21
JavaScript
esdir:ES的对象检查工具 esdir是一个非常小的对象检查工具,如Python中的dir() 。 它包装在Object.getOwnPropertyNames() ES5 API上,并显示了哪些属性可用于您传递的对象。 var dir = require ( 'esdir' ) ; dir ( '' ) ; // => [ 'length', 'constructor', 'valueOf', 'toString', 'charAt', ...] dir ( function ( ) { } ) ; // => [ 'length', 'name', 'arguments', ... ] dir ( 10 ) ; // => [ 'toFixed', 'toExponential', 'toPrecision', ... ] 笔记 该项目是由构建的。 如果要使用ES2015源代码,
【文件预览】:
esdir-master
----.gitignore(28B)
----package.json(674B)
----src()
--------index.js(1KB)
----index.js(1KB)
----README.md(642B)
----test()
--------index.js(2KB)