Socket
Socket
Sign inDemoInstall

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.


Version published
Weekly downloads
1.4K
decreased by-2.13%
Maintainers
1
Weekly downloads
 
Created
Source

Travis status Dependency status devDependency status npm version

assert-is-function-x

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

Version: 1.5.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

FAQs

Package last updated on 11 Aug 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc