We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c696ceb commit 72c1f68Copy full SHA for 72c1f68
.gitignore
@@ -0,0 +1,3 @@
1
+# https://dart.dev/guides/libraries/private-files
2
+# Created by `dart pub`
3
+.dart_tool/
bin/tilde_expansion.dart
@@ -0,0 +1,6 @@
+import 'package:tilde_expansion/tilde_expansion.dart' as tilde_expansion;
+
+void main(List<String> arguments) {
4
+ print(
5
+ "Hello to convert ~/Documents/test.txt to ${'~/Documents/test.txt'.expandUser()}");
6
+}
0 commit comments