5.0.0 • Published 8 days ago

prototype-properties v5.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 days ago

prototype-properties

List of prototype properties for JavaScript types

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

Install

npm install prototype-properties

Usage

import prototypeProperties from 'prototype-properties';

console.log(prototypeProperties);
/*
{
	Array: [
		'length',
		'constructor',
		'toString',
		'toLocaleString',
		'join',
		'pop',
		…
	],
	ArrayBuffer: [
		'constructor',
		'byteLength',
		'slice'
	],
	…
}
*/

Dev

The JSON file is generated by running:

npm run build