Apply new format to snippets and template
This commit is contained in:
@ -5,7 +5,7 @@ tags: node,string,beginner
|
||||
|
||||
Converts a tilde path to an absolute path.
|
||||
|
||||
Use `String.prototype.replace()` with a regular expression and `OS.homedir()` to replace the `~` in the start of the path with the home directory.
|
||||
- Use `String.prototype.replace()` with a regular expression and `OS.homedir()` to replace the `~` in the start of the path with the home directory.
|
||||
|
||||
```js
|
||||
const untildify = str => str.replace(/^~($|\/|\\)/, `${require('os').homedir()}$1`);
|
||||
|
||||
Reference in New Issue
Block a user