文件名称:obj-def:轻松设置对象中的默认字段
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-17 22:43:21
hacktoberfest JavaScript
对象定义 轻松设置对象中的默认字段。 :cloud: 安装 # Using npm npm install --save obj-def # Using yarn yarn add obj-def :clipboard: 例子 const objDef = require ( "obj-def" ) ; let foo = { bar : 42 } ; // "bar" will remain unchanged objDef ( foo , "bar" , 7 ) ; // "location" will default to "Mars" objDef ( foo , "location" , "Mars" ) ; console . log ( foo ) ; // => { bar: 42, location: 'Mars' } :red_question_mark: 得到帮助 获得帮助的方法有以下几种: 请。 您可以打开带
【文件预览】:
obj-def-master
----.gitignore(80B)
----package.json(931B)
----DOCUMENTATION.md(412B)
----CONTRIBUTING.md(3KB)
----LICENSE(1KB)
----README.md(4KB)
----example()
--------index.js(258B)
----lib()
--------index.js(884B)