UNPKG

crocks

Version:

A collection of well known Algebraic Datatypes for your utter enjoyment.

10 lines (7 loc) 213 B
/** @license ISC License (c) copyright 2019 original and current authors */ /** @author Dale Francis (dalefrancis88) */ // isTruthy : a -> Boolean function isTruthy(x) { return !!x } module.exports = isTruthy