add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

17
node_modules/uid-number/README.md generated vendored Normal file
View File

@@ -0,0 +1,17 @@
Use this module to convert a username/groupname to a uid/gid number.
Usage:
```
npm install uid-number
```
Then, in your node program:
```javascript
var uidNumber = require("uid-number")
uidNumber("isaacs", function (er, uid, gid) {
// gid is null because we didn't ask for a group name
// uid === 24561 because that's my number.
})
```