prc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
..
.github b6c02717e6 Upload complete no-internet building environment. 1 年間 前
helpers b6c02717e6 Upload complete no-internet building environment. 1 年間 前
test b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.editorconfig b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.eslintignore b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.eslintrc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.nycrc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
CHANGELOG.md b6c02717e6 Upload complete no-internet building environment. 1 年間 前
LICENSE b6c02717e6 Upload complete no-internet building environment. 1 年間 前
README.md b6c02717e6 Upload complete no-internet building environment. 1 年間 前
auto.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前
implementation.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前
index.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前
package.json b6c02717e6 Upload complete no-internet building environment. 1 年間 前
polyfill.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前
shim.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前

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