1.0.0 • Published 11 years ago
own v1.0.0
Own
Simple propertiesObject creation for use with Object.create()
The propertiesObject is painfully verbose. own is a helper function that makes it easy to create enumerable and writable propertiesObjects from an object literal.
Installation
$ npm install ownUsage
Use the result of own() as the second parameter in Object.create():
var own = require('own')
var yourObject = Object.create(YOUR_PROTOTYPE, own({ hello: 'world' }))
yourObject.hasOwnProperty('hello') // true
yourObject.hello // 'world'Tests
Install the dependencies and run:
$ npm testLicense
MIT License, see LICENSE for details.
