Files
lodash/_getPlaceholder.js
John-David Dalton 65e5d998b3 Bump to v4.5.1.
2016-02-21 20:40:07 -08:00

17 lines
333 B
JavaScript

define([], function() {
/**
* 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;
}
return getPlaceholder;
});