Initial commit

This commit is contained in:
2025-12-07 14:32:46 +00:00
commit 0a0969b8af
4726 changed files with 536089 additions and 0 deletions

30
node_modules/tildify/readme.md generated vendored Executable file
View File

@@ -0,0 +1,30 @@
# tildify [![Build Status](https://travis-ci.org/sindresorhus/tildify.svg?branch=master)](https://travis-ci.org/sindresorhus/tildify)
> Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`
## Install
```
$ npm install tildify
```
## Usage
```js
const tildify = require('tildify');
tildify('/Users/sindresorhus/dev');
//=> '~/dev'
```
## Related
See [untildify](https://github.com/sindresorhus/untildify) for the inverse.
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)