mirror of
https://github.com/foss42/apidash.git
synced 2025-06-04 09:16:02 +08:00
6 lines
132 B
Dart
6 lines
132 B
Dart
import 'package:shlex/shlex.dart' as shlex;
|
|
|
|
List<String> splitAsCommandLineArgs(String command) {
|
|
return shlex.split(command);
|
|
}
|