/usr/share/doc/node-uid-number/README.md is in node-uid-number 0.0.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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.
})
```
|