Newer
Older
alert / js / node_modules / lodash / _getHolder.js
@Réz István Réz István on 18 Nov 2021 280 bytes first commit
/**
 * Gets the argument placeholder value for `func`.
 *
 * @private
 * @param {Function} func The function to inspect.
 * @returns {*} Returns the placeholder value.
 */
function getHolder(func) {
  var object = func;
  return object.placeholder;
}

module.exports = getHolder;