change to nodejs

This commit is contained in:
adrian
2025-10-27 22:24:20 +01:00
parent f3671429ee
commit 8a0d1ad4d1
639 changed files with 73033 additions and 61 deletions

23
node_modules/cookie-signature/Readme.md generated vendored Normal file
View File

@ -0,0 +1,23 @@
# cookie-signature
Sign and unsign cookies.
## Example
```js
var cookie = require('cookie-signature');
var val = cookie.sign('hello', 'tobiiscool');
val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI');
var val = cookie.sign('hello', 'tobiiscool');
cookie.unsign(val, 'tobiiscool').should.equal('hello');
cookie.unsign(val, 'luna').should.be.false;
```
## License
MIT.
See LICENSE file for details.