文件名称:format-keys:递归格式化对象键
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-23 01:38:31
JavaScript
格式键 递归格式化对象键。 安装 npm install format-keys 用法 var formatKeys = require ( 'format-keys' ) ; var object = { foo : 'bar' , deep : { kung : 'foo' } } ; var formattedObject = formatKeys ( object , function upperCaseFormatter ( str ) { return str . toUpperCase ( ) ; } ) ; console . log ( formattedObject ) ; // { FOO: 'bar', DEEP: { KUNG: 'foo' } } 执照 麻省理工学院
【文件预览】:
format-keys-master
----.gitignore(31B)
----package.json(612B)
----.travis.yml(35B)
----LICENSE(1KB)
----index.js(1001B)
----test.js(1KB)
----README.md(818B)