own

1.0.0 • Public • Published

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.

Build Status

Installation

$ npm install own

Usage

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 test

License

MIT License, see LICENSE for details.

Readme

Keywords

Package Sidebar

Install

npm i own

Weekly Downloads

47

Version

1.0.0

License

MIT

Last publish

Collaborators

  • christophercliff