poi-starpack
v1.0.0
Published
Higher order function to create the Starpack's Poi config
Readme
cast-function
Casts value as a function if it's not one.
Install
$ npm install cast-functionUsage
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
