UNPKG

belty

Version:
13 lines (11 loc) 277 B
/** * Helper method that returns the first argument passed in. * * @param {*?} input - Argument to be returned. This is completely optional * * @returns {*} This returns whatever is passed in. */ function indentity(input) { return input; } module.exports = indentity;