Add gitignore

This commit is contained in:
2025-06-19 19:04:29 +02:00
parent 75c2aa89d5
commit 79fb02aaee
888 changed files with 114285 additions and 2 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.