0.2.0 • Published 3 years ago

@lunjs/split-cmd v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@lunjs/split-cmd

Split a string into an array, like as process.argv.

Installation

npm install @lunjs/archy

Usage

import { splitCmd } from '@lunjs/split-cmd';

const command = `git commit -m "hello \
world!

This is a message."`;

console.log(splitCmd(command));
// Output:
// ['git', 'commit', '-m', 'hello world!\n\nThis is a message.']

License