htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
..
.github 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
.eslintrc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
CHANGELOG.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
index.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前
tsconfig.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 月之前

README.md

set-function-name Version Badge

github actions coverage License Downloads

npm badge

Set a function’s name.

Arguments:

  • fn: the function
  • name: the new name
  • loose: Optional. If true, and the name fails to be set, do not throw. Default false.

Returns fn.

Usage

var setFunctionName = require('set-function-name');
var assert = require('assert');

const obj = {
    concise() {},
    arrow: () => {},
    named: function named() {},
    anon: function () {},
};
assert.equal(obj.concise.name, 'concise');
assert.equal(obj.arrow.name, 'arrow');
assert.equal(obj.named.name, 'named');
assert.equal(obj.anon.name, 'anon');

assert.equal(setFunctionName(obj.concise, 'brief'), obj.concise);
assert.equal(setFunctionName(obj.arrow, 'pointy'), obj.arrow);
assert.equal(setFunctionName(obj.named, ''), obj.named);
assert.equal(setFunctionName(obj.anon, 'anonymous'), obj.anon);

assert.equal(obj.concise.name, 'brief');
assert.equal(obj.arrow.name, 'pointy');
assert.equal(obj.named.name, '');
assert.equal(obj.anon.name, 'anonymous');