🚀 Socket Launch Week 🚀 Day 5: Introducing Socket Fix.Learn More

get-func-name

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-func-name

Utility for getting a function's name for node and the browser

3.0.0
latest
Version published
Weekly downloads
9M
-7.35%
Maintainers
2
Weekly downloads
 
Created

What is get-func-name?

The npm package 'get-func-name' is designed to retrieve the name of a given JavaScript function. This can be particularly useful for debugging purposes, documentation generation, or any scenario where function identification is required programmatically.

What are get-func-name's main functionalities?

Retrieve function name

This feature allows you to extract the name of a function. It is useful for debugging or when you need to display the function name in logs or error messages.

const getFuncName = require('get-func-name');

function exampleFunction() {}

console.log(getFuncName(exampleFunction)); // Outputs: 'exampleFunction'

Other packages similar to get-func-name

FAQs

Package last updated on 26 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts