File size: 226 Bytes
369fac9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { inspectList } from './helpers'

export default function inspectArguments(args, options) {
  if (args.length === 0) return 'Arguments[]'
  options.truncate -= 13
  return `Arguments[ ${inspectList(args, options)} ]`
}