# object-prototype-functions **Repository Path**: mirrors_watson/object-prototype-functions ## Basic Information - **Project Name**: object-prototype-functions - **Description**: An array containing the names of the functions on `Object.prototype` - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # object-prototype-functions An array containing the names of the functions on `Object.prototype`. [![npm](https://img.shields.io/npm/v/object-prototype-functions.svg)](https://www.npmjs.com/package/object-prototype-functions) [![build status](https://travis-ci.org/watson/object-prototype-functions.svg?branch=master)](https://travis-ci.org/watson/object-prototype-functions) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) ## Installation ``` npm install object-prototype-functions --save ``` ## Usage ```js const ObjectPrototypeFunctions = require('object-prototype-functions') console.log('The functions of Object.prototype are:') console.log(ObjectPrototypeFunctions.join(', ')) // hasOwnProperty, isPrototypeOf... ``` ## API ### `ObjectPrototypeFunctions` An array containing the names of the functions on `Object.prototype`. ### `ObjectPrototypeFunctions.deprecated` An array containing the names of the deprecated functions on `Object.prototype`. ### `ObjectPrototypeFunctions.nonSpec` An array containing the names of the non-spec'd functions on `Object.prototype`. ### `ObjectPrototypeFunctions.nodejs` An array containing the all names of the functions on `Object.prototype` that are normally available in Node.js - both the spec'd and deprecated functions. ### `ObjectPrototypeFunctions.all` An array containing the all names of the functions on `Object.prototype`, both the spec'd, deprecated, and non-spec'd functions. ## License [MIT](LICENSE)