Home Identifier Source Repository

src/helpers/is-true.js

/**
 * Checks if a value is true
 *
 * @param {Boolean} val - the value to check
 * @returns {Boolean} - was it `true`?
 */
let isTrue = val => val === true

export default isTrue