expand_path 0.0.6
expand_path: ^0.0.6 copied to clipboard
Bash-like tilde expansion for dart. Expands a leading tilde in a file path to the user home directory
example/example.dart
import 'package:expand_path/expand_path.dart';
void main() {
print(expandPath('~')); // '/Users/kasper'
}