0.2.0 • Published 1 year ago

get-set-props v0.2.0

Weekly downloads
46,117
License
MIT
Repository
github
Last release
1 year ago

get-set-props

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

import getSetProps from '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