GithubHelp home page GithubHelp logo

fn.name's Introduction

fn.name

Version npmBuild StatusDependenciesCoverage Status

Extract the name of a given function. Nothing more than that.

Installation

This module is compatible with Browserify and Node.js and can be installed using:

npm install --save fn.name

Usage

Using this module is super simple, it exposes the function directly on the exports so it can be required as followed:

'use strict';

var name = require('fn.name');

Now that we have the name function we can pass it functions:

console.log(name(function foo() {})) // foo

And that's it folks!

License

MIT

fn.name's People

Contributors

3rd-eden avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

fn.name's Issues

support for arrow functions (incorrect currently)

currently it works only for arrow functions that don't have arguments/params

var fnName = require('fn.name')

console.log(fnName(() => 123)) // => anonymous
console.log(fnName(() => {return 123})) // => anonymous
console.log(fnName((a, b, c) => a + b + c)) // => a, b, c
console.log(fnName((a, b) => {return a + b})) // => a, b

Why no check for null?

@3rd-Eden Curious, curious, what is the reason this heavily-used module/function throws when fn === null ?

Perhaps in the past this was handled, but doing this extra check reduces performance etc.?
Or is it to be flow-agnostic, AKA let the calling dev decide how to handle the uncaught TypeError that is thrown?

https://github.com/3rd-Eden/fn.name/blob/master/index.js#L22C3-L24C22

//
  // Check to see if the constructor has a name.
  //
  if (
       'object' === typeof fn
    && fn.constructor // this will throw when fn === null
    && 'string' === typeof fn.constructor.name
  ) return fn.constructor.name;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.