• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..01-Jan-1970-

LICENSEH A D01-Jan-19701.1 KiB2217

README.mdH A D01-Jan-19702.4 KiB7851

package.jsonH A D01-Jan-19701.9 KiB8786

README.md

1# define-property [![NPM version](https://badge.fury.io/js/define-property.svg)](http://badge.fury.io/js/define-property)
2
3> Define a non-enumerable property on an object.
4
5## Install
6
7Install with [npm](https://www.npmjs.com/)
8
9```sh
10$ npm i define-property --save
11```
12
13## Usage
14
15**Params**
16
17* `obj`: The object on which to define the property.
18* `prop`: The name of the property to be defined or modified.
19* `descriptor`: The descriptor for the property being defined or modified.
20
21```js
22var define = require('define-property');
23var obj = {};
24define(obj, 'foo', function(val) {
25  return val.toUpperCase();
26});
27
28console.log(obj);
29//=> {}
30
31console.log(obj.foo('bar'));
32//=> 'BAR'
33```
34
35**get/set**
36
37```js
38define(obj, 'foo', {
39  get: function() {},
40  set: function() {}
41});
42```
43
44## Related projects
45
46* [delegate-object](https://www.npmjs.com/package/delegate-object): Copy properties from an object to another object, where properties with function values will be… [more](https://www.npmjs.com/package/delegate-object) | [homepage](https://github.com/doowb/delegate-object)
47* [forward-object](https://www.npmjs.com/package/forward-object): Copy properties from an object to another object, where properties with function values will be… [more](https://www.npmjs.com/package/forward-object) | [homepage](https://github.com/doowb/forward-object)
48* [mixin-deep](https://www.npmjs.com/package/mixin-deep): Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | [homepage](https://github.com/jonschlinkert/mixin-deep)
49* [mixin-object](https://www.npmjs.com/package/mixin-object): Mixin the own and inherited properties of other objects onto the first object. Pass an… [more](https://www.npmjs.com/package/mixin-object) | [homepage](https://github.com/jonschlinkert/mixin-object)
50
51## Running tests
52
53Install dev dependencies:
54
55```sh
56$ npm i -d && npm test
57```
58
59## Contributing
60
61Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/define-property/issues/new).
62
63## Author
64
65**Jon Schlinkert**
66
67+ [github/jonschlinkert](https://github.com/jonschlinkert)
68+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
69
70## License
71
72Copyright © 2015 Jon Schlinkert
73Released under the MIT license.
74
75***
76
77_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on August 31, 2015._
78