amitesh11's picture
Upload 3019 files
369fac9 verified
raw
history blame contribute delete
226 Bytes
import { inspectList } from './helpers'
export default function inspectArguments(args, options) {
if (args.length === 0) return 'Arguments[]'
options.truncate -= 13
return `Arguments[ ${inspectList(args, options)} ]`
}