List of prototype properties for JavaScript types
proto-props 
List of prototype properties for JavaScript types
It's just a JSON file and can be used wherever.
Install
$ npm install proto-props
Usage
const prototypeProperties = require('proto-props'); console.log(prototypeProperties); /* { Array: [ 'length', 'constructor', 'toString', 'toLocaleString', 'join', 'pop', … ], ArrayBuffer: [ 'constructor', 'byteLength', 'slice' ], … } */
Dev
The JSON file is generated by running:
$ npm run make
License
MIT © Sindre Sorhus
Repository
sindresorhus/proto-props