You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nathan Steel 84b28d60b2 Add NPM build config 3 years ago
..
.github Add NPM build config 3 years ago
helpers Add NPM build config 3 years ago
test Add NPM build config 3 years ago
.editorconfig Add NPM build config 3 years ago
.eslintignore Add NPM build config 3 years ago
.eslintrc Add NPM build config 3 years ago
.nycrc Add NPM build config 3 years ago
CHANGELOG.md Add NPM build config 3 years ago
LICENSE Add NPM build config 3 years ago
README.md Add NPM build config 3 years ago
auto.js Add NPM build config 3 years ago
implementation.js Add NPM build config 3 years ago
index.js Add NPM build config 3 years ago
package.json Add NPM build config 3 years ago
polyfill.js Add NPM build config 3 years ago
shim.js Add NPM build config 3 years ago

README.md

function.prototype.name Version Badge

dependency status dev dependency status License Downloads

npm badge

An ES2015 spec-compliant Function.prototype.name shim. Invoke its "shim" method to shim Function.prototype.name if it is unavailable. Note: Function#name requires a true ES5 environment - specifically, one with ES5 getters.

This package implements the es-shim API interface. It works in an ES5-supported environment and complies with the spec.

Most common usage:

Example

var functionName = require('function.prototype.name');
var assert = require('assert');

assert.equal(functionName(function foo() {}), 'foo');

functionName.shim();
assert.equal(function foo() {}.name, 'foo');

Tests

Simply clone the repo, npm install, and run npm test