Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

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-21
    2 ==================
    3 
    4   * Fix `maxAge` option to reject invalid values
    5 
    610.4.0 / 2019-05-15
    72==================
  • trip-planner-front/node_modules/cookie/README.md

    r59329aa re29cc2e  
    1010
    1111## Installation
    12 
    13 This is a [Node.js](https://nodejs.org/en/) module available through the
    14 [npm registry](https://www.npmjs.com/). Installation is done using the
    15 [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
    1612
    1713```sh
  • trip-planner-front/node_modules/cookie/index.js

    r59329aa re29cc2e  
    121121  if (null != opt.maxAge) {
    122122    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');
    128124    str += '; Max-Age=' + Math.floor(maxAge);
    129125  }
  • trip-planner-front/node_modules/cookie/package.json

    r59329aa re29cc2e  
    11{
    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",
    114  "_inBundle": false,
    12   "_integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
     5  "_integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
    136  "_location": "/cookie",
    147  "_phantomChildren": {},
     
    169    "type": "version",
    1710    "registry": true,
    18     "raw": "cookie@0.4.1",
     11    "raw": "cookie@0.4.0",
    1912    "name": "cookie",
    2013    "escapedName": "cookie",
    21     "rawSpec": "0.4.1",
     14    "rawSpec": "0.4.0",
    2215    "saveSpec": null,
    23     "fetchSpec": "0.4.1"
     16    "fetchSpec": "0.4.0"
    2417  },
    2518  "_requiredBy": [
    26     "/engine.io"
     19    "/express"
    2720  ],
    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",
    3125  "author": {
    3226    "name": "Roman Shtylman",
     
    3630    "url": "https://github.com/jshttp/cookie/issues"
    3731  },
     32  "bundleDependencies": false,
    3833  "contributors": [
    3934    {
     
    4237    }
    4338  ],
     39  "deprecated": false,
    4440  "description": "HTTP server cookie parsing and serialization",
    4541  "devDependencies": {
    4642    "beautify-benchmark": "0.2.4",
    4743    "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"
    5248  },
    5349  "engines": {
     
    7470    "bench": "node benchmark/index.js",
    7571    "lint": "eslint --plugin markdown --ext js,md .",
    76     "test": "mocha --reporter spec --bail --check-leaks --ui qunit test/",
    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/",
    7975    "version": "node scripts/version-history.js && git add HISTORY.md"
    8076  },
    81   "version": "0.4.1"
     77  "version": "0.4.0"
    8278}
Note: See TracChangeset for help on using the changeset viewer.