proto-props
List of prototype properties for JavaScript types
Last updated 7 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install proto-props 
SYNC missed versions from official npm registry.

proto-props Build Status

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

Current Tags

  • 3.0.0                                ...           latest (7 years ago)

7 Versions

  • 3.0.0                                ...           7 years ago
  • 2.0.0                                ...           7 years ago
  • 1.1.0                                ...           8 years ago
  • 1.0.0                                ...           9 years ago
  • 0.2.1                                ...           10 years ago
  • 0.2.0                                ...           10 years ago
  • 0.1.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (5)

Copyright 2013 - present © cnpmjs.org | Home |