npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

prototype-properties

5.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:990546
$ npm install prototype-properties
DailyWeeklyMonthlyYearly

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