test.ts 144 B

123456789
  1. import * as shlex from '../'
  2. shlex.quote('test text')
  3. shlex.split('test text "multi word thing"')
  4. // Should error
  5. shlex.quote()
  6. shlex.split()