47344d44ec26e52ec081c583ea6bc572dac497c85b7da04bb952ab733b6340173f474b5d14210a0cf3c13643c480e87b3244e2e936f82e79e2435467dd8d59 278 B

12345678910111213
  1. /**
  2. * Gets the argument placeholder value for `func`.
  3. *
  4. * @private
  5. * @param {Function} func The function to inspect.
  6. * @returns {*} Returns the placeholder value.
  7. */
  8. function getHolder(func) {
  9. var object = func;
  10. return object.placeholder;
  11. }
  12. export default getHolder;