版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
12345678910
  1. import getFunctionName from 'get-func-name'
  2. import { truncate } from './helpers'
  3. export default function inspectFunction(func, options) {
  4. const name = getFunctionName(func)
  5. if (!name) {
  6. return options.stylize('[Function]', 'special')
  7. }
  8. return options.stylize(`[Function ${truncate(name, options.truncate - 11)}]`, 'special')
  9. }