mirror of
https://github.com/foss42/apidash.git
synced 2025-05-29 04:50:36 +08:00
10 lines
219 B
Dart
10 lines
219 B
Dart
import 'package:shlex/shlex.dart' as shlex;
|
|
|
|
List<String> splitAsCommandLineArgs(String command) {
|
|
return shlex.split(command);
|
|
}
|
|
|
|
String? clean(String? url) {
|
|
return url?.replaceAll('"', '').replaceAll("'", '');
|
|
}
|