You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

is-function

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-function

is that thing a function? Use this module to find out

1.0.2
latest
Source
npmnpm
Version published
Maintainers
1
Created

What is is-function?

The is-function npm package is a simple utility used for checking if a given value is a function. It is particularly useful in JavaScript environments where determining the type of an object can sometimes be less straightforward due to the dynamic nature of the language. This package provides a reliable way to ensure that a variable holds a function before attempting to invoke it, thus preventing runtime errors in code.

What are is-function's main functionalities?

Function Type Checking

This feature allows developers to check if a variable is a function. It supports various types of functions including regular functions, async functions, and arrow functions. It returns true if the variable is a function and false otherwise. This is particularly useful for validating callbacks or any variable that is expected to be a function before invoking it.

const isFunction = require('is-function');

console.log(isFunction(function() {})); // true
console.log(isFunction(async () => {})); // true
console.log(isFunction(() => {})); // true
console.log(isFunction(class MyClass {})); // false
console.log(isFunction({})); // false

Other packages similar to is-function

Keywords

polyfill

FAQs

Package last updated on 22 Apr 2020

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