0.1.0 • Published 8 years ago

get-set-props v0.1.0

Weekly downloads
46,117
License
MIT
Repository
github
Last release
8 years ago

get-set-props Build Status

List of getter/setter properties for JavaScript types

It's just a JSON file and can be used wherever.

Forked from Sindre Sorhus' proto-props

Install

$ npm install --save get-set-props

Usage

var getSetProps = require('get-set-props');

console.log(getSetProps);
/*
{
	Array: [
		'length',
	],
	ArrayBuffer: [
	],
	...
	Error: [
		'stack'
	],
	...
}
*/

Dev

The JSON file is generated by running:

$ npm run generate

License

MIT © Dustin Specker