文件名称:dot-wild:使用强大的点符号(点路径 + 通配符)来操作 JSON 的属性
文件大小:135KB
文件格式:ZIP
更新时间:2024-06-17 19:16:36
json typescript immutable dot-notation TypeScript
点野生 使用功能强大的点符号(点路径+通配符)来操纵JSON的属性。 目录 安装 $ npm install dot-wild --save # or $ yarn add dot-wild 用法 基本的 import * as dot from 'dot-wild' ; /** * Getter */ dot . get ( { foo : { bar : 'baz' } } , 'foo.bar' ) ; // => 'baz' dot . get ( { 'foo.bar' : 'baz' } , 'foo\\.bar' ) ; // => 'baz' dot . get ( { 'foo.bar' : 'baz' } , 'notfound' , 'default' ) ; // => 'default' const authorData = { authors : [
【文件预览】:
dot-wild-master
----.travis.yml(165B)
----docs()
--------.nojekyll(0B)
--------assets()
--------index.html(21KB)
--------globals.html(8KB)
--------interfaces()
--------modules()
----package.json(2KB)
----tslint.json(1KB)
----test()
--------index.spec.ts(25KB)
----LICENSE(1KB)
----src()
--------index.ts(11KB)
----tsconfig.json(1001B)
----.gitignore(44B)
----CHANGELOG.md(2KB)
----README.md(6KB)
----yarn.lock(30KB)