vitorsalgado/nodejs-fx

View on GitHub
src/def/index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

/**
 * Checks if a value is
 *
 * @param {*} x
 * @return {Boolean}
 * @example
 *
 * const isDefined = def('test') // true
 *
 */
module.exports = x => !!x