包详细信息

prototype-properties

sindresorhus62.1kMIT5.0.0

List of prototype properties for JavaScript types

js, javascript, ecmascript, builtin

自述文件

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