文件名称:dot-prop:使用点路径从嵌套对象获取,设置或删除属性
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-03 22:08:26
JavaScript
点道具 使用点路径从嵌套对象获取,设置或删除属性 安装 $ npm install dot-prop 用法 const dotProp = require ( 'dot-prop' ) ; // Getter dotProp . get ( { foo : { bar : 'unicorn' } } , 'foo.bar' ) ; //=> 'unicorn' dotProp . get ( { foo : { bar : 'a' } } , 'foo.notDefined.deep' ) ; //=> undefined dotProp . get ( { foo : { bar : 'a' } } , 'foo.notDefined.deep' , 'default value' ) ; //=> 'default value' dotProp . get ( { foo : { 'd
【文件预览】:
dot-prop-main
----.gitignore(23B)
----package.json(837B)
----.npmrc(19B)
----index.js(3KB)
----test.js(6KB)
----.github()
--------security.md(179B)
--------workflows()
--------funding.yml(114B)
----license(1KB)
----bench.js(4KB)
----readme.md(2KB)
----index.test-d.ts(652B)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(3KB)