# getHolder

# Description

获取func的参数占位符值。 placeholder

# Params

(func)

# Return

{*}

# Code

function getHolder(func) {
  const object = func
  return object.placeholder
}

# Analyze

就是拿到 placeholder 的值,并返回

# Example

const func = () => {}
func.placeholder = 'test'

console.log(getHolder(func)) // test