1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-09 10:30:52 +00:00
notes/node_modules/lodash/_getHolder.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

14 lines
280 B
JavaScript

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