initial commit
This commit is contained in:
24
node_modules/cookie-es/LICENSE
generated
vendored
Normal file
24
node_modules/cookie-es/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
|
||||
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
32
node_modules/cookie-es/README.md
generated
vendored
Normal file
32
node_modules/cookie-es/README.md
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
# cookie-es
|
||||
|
||||
[](https://bundlephobia.com/package/cookie-es)
|
||||
|
||||
ESM build of [cookie](https://www.npmjs.com/package/cookie) with bundled types.
|
||||
|
||||
## Usage
|
||||
|
||||
Install:
|
||||
|
||||
```sh
|
||||
# npm
|
||||
npm i cookie-es
|
||||
|
||||
# yarn
|
||||
yarn add cookie-es
|
||||
```
|
||||
|
||||
Import:
|
||||
|
||||
```js
|
||||
// ESM
|
||||
import { parse, serialize } from 'cookie-es'
|
||||
|
||||
// CommonJS
|
||||
const { parse, serialize } = require('cookie-es')
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT](./LICENSE)
|
||||
109
node_modules/cookie-es/dist/index.cjs
generated
vendored
Normal file
109
node_modules/cookie-es/dist/index.cjs
generated
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
const decode = decodeURIComponent;
|
||||
const encode = encodeURIComponent;
|
||||
const pairSplitRegExp = /; */;
|
||||
const fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;
|
||||
function parse(str, options) {
|
||||
if (typeof str !== "string") {
|
||||
throw new TypeError("argument str must be a string");
|
||||
}
|
||||
let obj = {};
|
||||
let opt = options || {};
|
||||
let pairs = str.split(pairSplitRegExp);
|
||||
let dec = opt.decode || decode;
|
||||
for (let i = 0; i < pairs.length; i++) {
|
||||
let pair = pairs[i];
|
||||
let eq_idx = pair.indexOf("=");
|
||||
if (eq_idx < 0) {
|
||||
continue;
|
||||
}
|
||||
let key = pair.substr(0, eq_idx).trim();
|
||||
let val = pair.substr(++eq_idx, pair.length).trim();
|
||||
if (val[0] == '"') {
|
||||
val = val.slice(1, -1);
|
||||
}
|
||||
if (obj[key] == void 0) {
|
||||
obj[key] = tryDecode(val, dec);
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
function serialize(name, value, options) {
|
||||
let opt = options || {};
|
||||
let enc = opt.encode || encode;
|
||||
if (typeof enc !== "function") {
|
||||
throw new TypeError("option encode is invalid");
|
||||
}
|
||||
if (!fieldContentRegExp.test(name)) {
|
||||
throw new TypeError("argument name is invalid");
|
||||
}
|
||||
let encodedValue = enc(value);
|
||||
if (encodedValue && !fieldContentRegExp.test(encodedValue)) {
|
||||
throw new TypeError("argument val is invalid");
|
||||
}
|
||||
let str = name + "=" + encodedValue;
|
||||
if (opt.maxAge != null) {
|
||||
let maxAge = opt.maxAge - 0;
|
||||
if (isNaN(maxAge) || !isFinite(maxAge)) {
|
||||
throw new TypeError("option maxAge is invalid");
|
||||
}
|
||||
str += "; Max-Age=" + Math.floor(maxAge);
|
||||
}
|
||||
if (opt.domain) {
|
||||
if (!fieldContentRegExp.test(opt.domain)) {
|
||||
throw new TypeError("option domain is invalid");
|
||||
}
|
||||
str += "; Domain=" + opt.domain;
|
||||
}
|
||||
if (opt.path) {
|
||||
if (!fieldContentRegExp.test(opt.path)) {
|
||||
throw new TypeError("option path is invalid");
|
||||
}
|
||||
str += "; Path=" + opt.path;
|
||||
}
|
||||
if (opt.expires) {
|
||||
if (typeof opt.expires.toUTCString !== "function") {
|
||||
throw new TypeError("option expires is invalid");
|
||||
}
|
||||
str += "; Expires=" + opt.expires.toUTCString();
|
||||
}
|
||||
if (opt.httpOnly) {
|
||||
str += "; HttpOnly";
|
||||
}
|
||||
if (opt.secure) {
|
||||
str += "; Secure";
|
||||
}
|
||||
if (opt.sameSite) {
|
||||
let sameSite = typeof opt.sameSite === "string" ? opt.sameSite.toLowerCase() : opt.sameSite;
|
||||
switch (sameSite) {
|
||||
case true:
|
||||
str += "; SameSite=Strict";
|
||||
break;
|
||||
case "lax":
|
||||
str += "; SameSite=Lax";
|
||||
break;
|
||||
case "strict":
|
||||
str += "; SameSite=Strict";
|
||||
break;
|
||||
case "none":
|
||||
str += "; SameSite=None";
|
||||
break;
|
||||
default:
|
||||
throw new TypeError("option sameSite is invalid");
|
||||
}
|
||||
}
|
||||
return str;
|
||||
}
|
||||
function tryDecode(str, decode2) {
|
||||
try {
|
||||
return decode2(str);
|
||||
} catch (e) {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
|
||||
exports.parse = parse;
|
||||
exports.serialize = serialize;
|
||||
126
node_modules/cookie-es/dist/index.d.ts
generated
vendored
Normal file
126
node_modules/cookie-es/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
/**
|
||||
* Basic HTTP cookie parser and serializer for HTTP servers.
|
||||
*/
|
||||
/**
|
||||
* Additional serialization options
|
||||
*/
|
||||
interface CookieSerializeOptions {
|
||||
/**
|
||||
* Specifies the value for the {@link https://tools.ietf.org/html/rfc6265#section-5.2.3|Domain Set-Cookie attribute}. By default, no
|
||||
* domain is set, and most clients will consider the cookie to apply to only
|
||||
* the current domain.
|
||||
*/
|
||||
domain?: string | undefined;
|
||||
/**
|
||||
* Specifies a function that will be used to encode a cookie's value. Since
|
||||
* value of a cookie has a limited character set (and must be a simple
|
||||
* string), this function can be used to encode a value into a string suited
|
||||
* for a cookie's value.
|
||||
*
|
||||
* The default function is the global `encodeURIComponent`, which will
|
||||
* encode a JavaScript string into UTF-8 byte sequences and then URL-encode
|
||||
* any that fall outside of the cookie range.
|
||||
*/
|
||||
encode?(value: string): string;
|
||||
/**
|
||||
* Specifies the `Date` object to be the value for the {@link https://tools.ietf.org/html/rfc6265#section-5.2.1|`Expires` `Set-Cookie` attribute}. By default,
|
||||
* no expiration is set, and most clients will consider this a "non-persistent cookie" and will delete
|
||||
* it on a condition like exiting a web browser application.
|
||||
*
|
||||
* *Note* the {@link https://tools.ietf.org/html/rfc6265#section-5.3|cookie storage model specification}
|
||||
* states that if both `expires` and `maxAge` are set, then `maxAge` takes precedence, but it is
|
||||
* possible not all clients by obey this, so if both are set, they should
|
||||
* point to the same date and time.
|
||||
*/
|
||||
expires?: Date | undefined;
|
||||
/**
|
||||
* Specifies the boolean value for the {@link https://tools.ietf.org/html/rfc6265#section-5.2.6|`HttpOnly` `Set-Cookie` attribute}.
|
||||
* When truthy, the `HttpOnly` attribute is set, otherwise it is not. By
|
||||
* default, the `HttpOnly` attribute is not set.
|
||||
*
|
||||
* *Note* be careful when setting this to true, as compliant clients will
|
||||
* not allow client-side JavaScript to see the cookie in `document.cookie`.
|
||||
*/
|
||||
httpOnly?: boolean | undefined;
|
||||
/**
|
||||
* Specifies the number (in seconds) to be the value for the `Max-Age`
|
||||
* `Set-Cookie` attribute. The given number will be converted to an integer
|
||||
* by rounding down. By default, no maximum age is set.
|
||||
*
|
||||
* *Note* the {@link https://tools.ietf.org/html/rfc6265#section-5.3|cookie storage model specification}
|
||||
* states that if both `expires` and `maxAge` are set, then `maxAge` takes precedence, but it is
|
||||
* possible not all clients by obey this, so if both are set, they should
|
||||
* point to the same date and time.
|
||||
*/
|
||||
maxAge?: number | undefined;
|
||||
/**
|
||||
* Specifies the value for the {@link https://tools.ietf.org/html/rfc6265#section-5.2.4|`Path` `Set-Cookie` attribute}.
|
||||
* By default, the path is considered the "default path".
|
||||
*/
|
||||
path?: string | undefined;
|
||||
/**
|
||||
* Specifies the boolean or string to be the value for the {@link https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.2.7|`SameSite` `Set-Cookie` attribute}.
|
||||
*
|
||||
* - `true` will set the `SameSite` attribute to `Strict` for strict same
|
||||
* site enforcement.
|
||||
* - `false` will not set the `SameSite` attribute.
|
||||
* - `'lax'` will set the `SameSite` attribute to Lax for lax same site
|
||||
* enforcement.
|
||||
* - `'strict'` will set the `SameSite` attribute to Strict for strict same
|
||||
* site enforcement.
|
||||
* - `'none'` will set the SameSite attribute to None for an explicit
|
||||
* cross-site cookie.
|
||||
*
|
||||
* More information about the different enforcement levels can be found in {@link https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.2.7|the specification}.
|
||||
*
|
||||
* *note* This is an attribute that has not yet been fully standardized, and may change in the future. This also means many clients may ignore this attribute until they understand it.
|
||||
*/
|
||||
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
||||
/**
|
||||
* Specifies the boolean value for the {@link https://tools.ietf.org/html/rfc6265#section-5.2.5|`Secure` `Set-Cookie` attribute}. When truthy, the
|
||||
* `Secure` attribute is set, otherwise it is not. By default, the `Secure` attribute is not set.
|
||||
*
|
||||
* *Note* be careful when setting this to `true`, as compliant clients will
|
||||
* not send the cookie back to the server in the future if the browser does
|
||||
* not have an HTTPS connection.
|
||||
*/
|
||||
secure?: boolean | undefined;
|
||||
}
|
||||
/**
|
||||
* Additional parsing options
|
||||
*/
|
||||
interface CookieParseOptions {
|
||||
/**
|
||||
* Specifies a function that will be used to decode a cookie's value. Since
|
||||
* the value of a cookie has a limited character set (and must be a simple
|
||||
* string), this function can be used to decode a previously-encoded cookie
|
||||
* value into a JavaScript string or other object.
|
||||
*
|
||||
* The default function is the global `decodeURIComponent`, which will decode
|
||||
* any URL-encoded sequences into their byte representations.
|
||||
*
|
||||
* *Note* if an error is thrown from this function, the original, non-decoded
|
||||
* cookie value will be returned as the cookie's value.
|
||||
*/
|
||||
decode?(value: string): string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse an HTTP Cookie header string and returning an object of all cookie
|
||||
* name-value pairs.
|
||||
*
|
||||
* @param str the string representing a `Cookie` header value
|
||||
* @param [options] object containing parsing options
|
||||
*/
|
||||
declare function parse(str: string, options?: CookieParseOptions): {};
|
||||
/**
|
||||
* Serialize a cookie name-value pair into a `Set-Cookie` header string.
|
||||
*
|
||||
* @param name the name for the cookie
|
||||
* @param value value to set the cookie to
|
||||
* @param [options] object containing serialization options
|
||||
* @throws {TypeError} when `maxAge` options is invalid
|
||||
*/
|
||||
declare function serialize(name: string, value: string, options?: CookieSerializeOptions): string;
|
||||
|
||||
export { CookieParseOptions, CookieSerializeOptions, parse, serialize };
|
||||
104
node_modules/cookie-es/dist/index.mjs
generated
vendored
Normal file
104
node_modules/cookie-es/dist/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
const decode = decodeURIComponent;
|
||||
const encode = encodeURIComponent;
|
||||
const pairSplitRegExp = /; */;
|
||||
const fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;
|
||||
function parse(str, options) {
|
||||
if (typeof str !== "string") {
|
||||
throw new TypeError("argument str must be a string");
|
||||
}
|
||||
let obj = {};
|
||||
let opt = options || {};
|
||||
let pairs = str.split(pairSplitRegExp);
|
||||
let dec = opt.decode || decode;
|
||||
for (let i = 0; i < pairs.length; i++) {
|
||||
let pair = pairs[i];
|
||||
let eq_idx = pair.indexOf("=");
|
||||
if (eq_idx < 0) {
|
||||
continue;
|
||||
}
|
||||
let key = pair.substr(0, eq_idx).trim();
|
||||
let val = pair.substr(++eq_idx, pair.length).trim();
|
||||
if (val[0] == '"') {
|
||||
val = val.slice(1, -1);
|
||||
}
|
||||
if (obj[key] == void 0) {
|
||||
obj[key] = tryDecode(val, dec);
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
function serialize(name, value, options) {
|
||||
let opt = options || {};
|
||||
let enc = opt.encode || encode;
|
||||
if (typeof enc !== "function") {
|
||||
throw new TypeError("option encode is invalid");
|
||||
}
|
||||
if (!fieldContentRegExp.test(name)) {
|
||||
throw new TypeError("argument name is invalid");
|
||||
}
|
||||
let encodedValue = enc(value);
|
||||
if (encodedValue && !fieldContentRegExp.test(encodedValue)) {
|
||||
throw new TypeError("argument val is invalid");
|
||||
}
|
||||
let str = name + "=" + encodedValue;
|
||||
if (opt.maxAge != null) {
|
||||
let maxAge = opt.maxAge - 0;
|
||||
if (isNaN(maxAge) || !isFinite(maxAge)) {
|
||||
throw new TypeError("option maxAge is invalid");
|
||||
}
|
||||
str += "; Max-Age=" + Math.floor(maxAge);
|
||||
}
|
||||
if (opt.domain) {
|
||||
if (!fieldContentRegExp.test(opt.domain)) {
|
||||
throw new TypeError("option domain is invalid");
|
||||
}
|
||||
str += "; Domain=" + opt.domain;
|
||||
}
|
||||
if (opt.path) {
|
||||
if (!fieldContentRegExp.test(opt.path)) {
|
||||
throw new TypeError("option path is invalid");
|
||||
}
|
||||
str += "; Path=" + opt.path;
|
||||
}
|
||||
if (opt.expires) {
|
||||
if (typeof opt.expires.toUTCString !== "function") {
|
||||
throw new TypeError("option expires is invalid");
|
||||
}
|
||||
str += "; Expires=" + opt.expires.toUTCString();
|
||||
}
|
||||
if (opt.httpOnly) {
|
||||
str += "; HttpOnly";
|
||||
}
|
||||
if (opt.secure) {
|
||||
str += "; Secure";
|
||||
}
|
||||
if (opt.sameSite) {
|
||||
let sameSite = typeof opt.sameSite === "string" ? opt.sameSite.toLowerCase() : opt.sameSite;
|
||||
switch (sameSite) {
|
||||
case true:
|
||||
str += "; SameSite=Strict";
|
||||
break;
|
||||
case "lax":
|
||||
str += "; SameSite=Lax";
|
||||
break;
|
||||
case "strict":
|
||||
str += "; SameSite=Strict";
|
||||
break;
|
||||
case "none":
|
||||
str += "; SameSite=None";
|
||||
break;
|
||||
default:
|
||||
throw new TypeError("option sameSite is invalid");
|
||||
}
|
||||
}
|
||||
return str;
|
||||
}
|
||||
function tryDecode(str, decode2) {
|
||||
try {
|
||||
return decode2(str);
|
||||
} catch (e) {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
|
||||
export { parse, serialize };
|
||||
27
node_modules/cookie-es/package.json
generated
vendored
Normal file
27
node_modules/cookie-es/package.json
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "cookie-es",
|
||||
"version": "0.5.0",
|
||||
"repository": "unjs/cookie-es",
|
||||
"license": "MIT",
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"exports": {
|
||||
"require": "./dist/index.cjs",
|
||||
"import": "./dist/index.mjs"
|
||||
},
|
||||
"main": "./dist/index.cjs",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"release": "yarn build && standard-version && git push --follow-tags && npm publish",
|
||||
"test": "node test/index.mjs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"standard-version": "latest",
|
||||
"unbuild": "latest"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user