UNPKG

crocks

Version:

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

10 lines (7 loc) 226 B
/** @license ISC License (c) copyright 2018 original and current authors */ /** @author Robert Pearce (rpearce) */ // isSymbol : a -> Boolean function isSymbol(x) { return typeof x === 'symbol' } module.exports = isSymbol