Changeset e29cc2e for trip-planner-front/node_modules/cookie
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/cookie
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/cookie/HISTORY.md
r59329aa re29cc2e 1 0.4.1 / 2020-04-212 ==================3 4 * Fix `maxAge` option to reject invalid values5 6 1 0.4.0 / 2019-05-15 7 2 ================== -
trip-planner-front/node_modules/cookie/README.md
r59329aa re29cc2e 10 10 11 11 ## Installation 12 13 This is a [Node.js](https://nodejs.org/en/) module available through the14 [npm registry](https://www.npmjs.com/). Installation is done using the15 [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):16 12 17 13 ```sh -
trip-planner-front/node_modules/cookie/index.js
r59329aa re29cc2e 121 121 if (null != opt.maxAge) { 122 122 var maxAge = opt.maxAge - 0; 123 124 if (isNaN(maxAge) || !isFinite(maxAge)) { 125 throw new TypeError('option maxAge is invalid') 126 } 127 123 if (isNaN(maxAge)) throw new Error('maxAge should be a Number'); 128 124 str += '; Max-Age=' + Math.floor(maxAge); 129 125 } -
trip-planner-front/node_modules/cookie/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "cookie@0.4.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "cookie@0.4.1", 10 "_id": "cookie@0.4.1", 2 "_from": "cookie@0.4.0", 3 "_id": "cookie@0.4.0", 11 4 "_inBundle": false, 12 "_integrity": "sha512- ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",5 "_integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", 13 6 "_location": "/cookie", 14 7 "_phantomChildren": {}, … … 16 9 "type": "version", 17 10 "registry": true, 18 "raw": "cookie@0.4. 1",11 "raw": "cookie@0.4.0", 19 12 "name": "cookie", 20 13 "escapedName": "cookie", 21 "rawSpec": "0.4. 1",14 "rawSpec": "0.4.0", 22 15 "saveSpec": null, 23 "fetchSpec": "0.4. 1"16 "fetchSpec": "0.4.0" 24 17 }, 25 18 "_requiredBy": [ 26 "/e ngine.io"19 "/express" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", 29 "_spec": "0.4.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 22 "_shasum": "beb437e7022b3b6d49019d088665303ebe9c14ba", 23 "_spec": "cookie@0.4.0", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\express", 31 25 "author": { 32 26 "name": "Roman Shtylman", … … 36 30 "url": "https://github.com/jshttp/cookie/issues" 37 31 }, 32 "bundleDependencies": false, 38 33 "contributors": [ 39 34 { … … 42 37 } 43 38 ], 39 "deprecated": false, 44 40 "description": "HTTP server cookie parsing and serialization", 45 41 "devDependencies": { 46 42 "beautify-benchmark": "0.2.4", 47 43 "benchmark": "2.1.4", 48 "eslint": " 6.8.0",49 "eslint-plugin-markdown": "1.0. 2",50 " mocha": "7.1.1",51 " nyc": "15.0.1"44 "eslint": "5.16.0", 45 "eslint-plugin-markdown": "1.0.0", 46 "istanbul": "0.4.5", 47 "mocha": "6.1.4" 52 48 }, 53 49 "engines": { … … 74 70 "bench": "node benchmark/index.js", 75 71 "lint": "eslint --plugin markdown --ext js,md .", 76 "test": "mocha --reporter spec --bail --check-leaks --ui qunittest/",77 "test-ci": " nyc --reporter=text npm test",78 "test-cov": " nyc --reporter=html --reporter=text npm test",72 "test": "mocha --reporter spec --bail --check-leaks test/", 73 "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", 74 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", 79 75 "version": "node scripts/version-history.js && git add HISTORY.md" 80 76 }, 81 "version": "0.4. 1"77 "version": "0.4.0" 82 78 }
Note:
See TracChangeset
for help on using the changeset viewer.