UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

20 lines (19 loc) 382 B
import { equals } from 'ramda'; /** * Testing if argument equals to true * * @func * @category Relation * * @param {any} value * @return {boolean} True if `value` is true * * @example * * R_.equalsToTrue(true) // true * R_.equalsToTrue(false) // false * * @sig a -> Boolean */ var equalsToTrue = /*#__PURE__*/equals(true); export default equalsToTrue;