Files
lodash/_getPlaceholder.js
John-David Dalton 9055c4e483 Bump to v4.5.1.
2016-02-21 20:49:38 -08:00

14 lines
288 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;
}
export default getPlaceholder;