UNPKG

utils

Version:

Fast, generic JavaScript/node.js utility functions.

14 lines (11 loc) 189 B
'use strict'; /** * Returns the first argument passed to the function. * * @name .identity * @return {*} * @api public */ module.exports = function identity(val) { return val; };