🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

assert-is-function-x

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

assert-is-function-x

If isFunction(callbackfn) is false, throw a TypeError exception.

1.2.0
Source
npm
Version published
Weekly downloads
1.7K
15.65%
Maintainers
1
Weekly downloads
 
Created
Source

assert-is-function-x

Travis status Dependency status devDependency status npm version

If isFunction(callbackfn) is false, throw a TypeError exception.

Version: 1.2.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

module.exports(callback)*

Tests callback to see if it is a function, throws a TypeError if it is not. Otherwise returns the callback.

Kind: Exported function
Returns: * - Returns callback if it is function.
Throws:

  • TypeError Throws if callback is not a function.
ParamTypeDescription
callback*The argument to be tested.

Example

var assertIsFunction = require('assert-is-function-x');
var primitive = true;
var mySymbol = Symbol('mySymbol');
var symObj = Object(mySymbol);
var object = {};
function fn () {}

assertIsFunction(primitive);
   // TypeError 'true is not a function'.
assertIsFunction(object);
   // TypeError '#<Object> is not a function'.
assertIsFunction(mySymbol);
   // TypeError 'Symbol(mySymbol) is not a function'.
assertIsFunction(symObj);
   // TypeError '#<Object> is not a function'.
assertIsFunction(fn);
   // Returns fn.

Keywords

assertIsFunction

FAQs

Package last updated on 29 Mar 2017

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