14 lines
278 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/**
* 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;
}
export default getHolder;