astro-ghostcms/.pnpm-store/v3/files/db/c0dbead6660f09962213aaae951...

8 lines
226 B
Plaintext

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