1.0.0 • Published 7 years ago

poi-starpack v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

cast-function

Casts value as a function if it's not one.

Install

$ npm install cast-function

Usage

const castFunction = require('cast-function');

const unicorn = '🦄';
const rainbow = () => '🌈';

console.log(castFunction(unicorn)()); // 🦄
console.log(castFunction(rainbow)()); // 🌈

API

castFunction(value)

Casts value as a function that returns value if it's not one.

License

MIT © Cristian Pallarés