9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
import * as shlex from '../'
|
|
|
|
shlex.quote('test text')
|
|
shlex.split('test text "multi word thing"')
|
|
|
|
// Should error
|
|
shlex.quote()
|
|
shlex.split()
|