Urara-Blog/node_modules/.pnpm-store/v3/files/22/5a1e7515c05f66b5ed05145216051ea1b6d23f41816b606e5657130e46448d7bfb7e1e137771c4ff9f8e47ffd8bf513dcd3042ab38525c7d51b7cdd9184db0
2022-08-14 01:14:53 +08:00

13 lines
280 B
Text

/**
* 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;