Files
lodash/_getPlaceholder.js
John-David Dalton 7eeb5ebd61 Bump to v4.5.1.
2016-02-21 21:12:51 -08:00

14 lines
290 B
JavaScript

/**
* Gets the argument placeholder value for `func`.
*
* @private
* @param {Function} func The function to inspect.
* @returns {*} Returns the placeholder value.
*/
function getPlaceholder(func) {
var object = func;
return object.placeholder;
}
module.exports = getPlaceholder;