All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._baseUnary.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * The base implementation of `_.unary` without support for storing metadata.
 *
 * @private
 * @param {Function} func The function to cap arguments for.
 * @returns {Function} Returns the new capped function.
 */
function baseUnary(func) {
  return function(value) {
    return func(value);
  };
}

module.exports = baseUnary;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy