Package Exports
- proto-props
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (proto-props) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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 protoProps = require('proto-props');
console.log(protoProps);
/*
{
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