0.9.4 • Published 6 years ago

passthrough-object v0.9.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

passthrough-object

Availables operations

  • get : passes through an object to get its sub properties
  • set : passes through an object to set its sub properties

Installation

npm install passthrough-object --save

or

yarn add passthrough-object --save

Without installation

<script src="https://cdn.jsdelivr.net/npm/passthrough-object/distrib/passthrough-object.min.js" type="module"></script>

prerequisites

for NodeJs

 var Path=require("passthrough-object");

for browser

<script src="node_modules/passthrough-object/distrib/passthrough-object.min.js" type="module"></script>

for IE only, add this script

<script src="node_modules/object-polyfills/distrib/object-polyfills.min.js"></script>

usage

API & DEMO