UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

20 lines (18 loc) 352 B
/** * This method returns the first argument provided to it. * * @static * @memberOf _ * @category Utility * @param {*} value Any value. * @returns {*} Returns `value`. * @example * * var object = { 'user': 'fred' }; * _.identity(object) === object; * // => true */ function identity(value) { return value; } module.exports = identity;