Add curl_parser

This commit is contained in:
Ashita Prasad
2024-11-24 06:01:04 +05:30
parent 344960e1df
commit 5df562d73a
12 changed files with 875 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import 'package:shlex/shlex.dart' as shlex;
List<String> splitAsCommandLineArgs(String command) {
return shlex.split(command);
}