@primitive/is-function
v1.1.0
Published
Determine if a value is a function
Downloads
5
Readme
is-function
Determine if a value is a function.
A value is a function if it is a literal function
, or is an instance of type
Function
.
Usage
npm install @primitive/is-function --save # Install package via NPM
yarn add @primitive/is-function # Install package via Yarn
import { expect } from "chai";
import isFunction from "@primitive/is-function";
expect(isFunction(function () {})).to.be.true;
expect(isFunction(() => {})).to.be.true;
expect(isFunction(new Function())).to.be.true;
expect(isFunction(undefined)).to.be.false;
expect(isFunction(null)).to.be.false;
expect(isFunction(42).to.be.false;
This package contains TypeScript type declarations. Furthermore, the package uses TypeScript type guards to allow type inference to influence intellisense.
if (isFunction(x)) {
// IntelliSense now knows `x` is a function.
let y: Function = x;
}
Content Delivery Network (CDN)
This package can be imported via unpkg as demonstrated below.
<script src="https://unpkg.com/@primitive/is-function/dist/index.min.js">
<script type="application/javascript">
if (isFunction(console.log)) {
// `console.log` is a function!
}
</script>
Build & Test
This package uses Gulp for building, and Chai and Mocha for testing.
npm install # Installs dependencies.
npm run build # Build the project.
npm test # Run tests.
License
Refer to the LICENSE
file for license information.