summaryrefslogtreecommitdiff
path: root/together/node_modules/cookiejar/readme.md
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
committerMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
commit3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch)
tree75be5fba4368472fb11c8015aee026b2b9a71888 /together/node_modules/cookiejar/readme.md
parent8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff)
downloadpluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'together/node_modules/cookiejar/readme.md')
-rw-r--r--together/node_modules/cookiejar/readme.md60
1 files changed, 0 insertions, 60 deletions
diff --git a/together/node_modules/cookiejar/readme.md b/together/node_modules/cookiejar/readme.md
deleted file mode 100644
index 71a9f23..0000000
--- a/together/node_modules/cookiejar/readme.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# CookieJar
-
-[![NPM version](http://img.shields.io/npm/v/cookiejar.svg)](https://www.npmjs.org/package/cookiejar)
-[![devDependency Status](https://david-dm.org/bmeck/node-cookiejar/dev-status.svg)](https://david-dm.org/bmeck/node-cookiejar?type=dev)
-
-Simple robust cookie library
-
-## Exports
-
-### CookieAccessInfo(domain,path,secure,script)
-
-class to determine matching qualities of a cookie
-
-##### Properties
-
-* String domain - domain to match
-* String path - path to match
-* Boolean secure - access is secure (ssl generally)
-* Boolean script - access is from a script
-
-
-### Cookie(cookiestr_or_cookie, request_domain, request_path)
-
-It turns input into a Cookie (singleton if given a Cookie),
-the `request_domain` argument is used to default the domain if it is not explicit in the cookie string,
-the `request_path` argument is used to set the path if it is not explicit in a cookie String.
-
-Explicit domains/paths will cascade, implied domains/paths must *exactly* match (see http://en.wikipedia.org/wiki/HTTP_cookie#Domain_and_Pat).
-
-##### Properties
-
-* String name - name of the cookie
-* String value - string associated with the cookie
-* String domain - domain to match (on a cookie a '.' at the start means a wildcard matching anything ending in the rest)
-* Boolean explicit_domain - if the domain was explicitly set via the cookie string
-* String path - base path to match (matches any path starting with this '/' is root)
-* Boolean explicit_path - if the path was explicitly set via the cookie string
-* Boolean noscript - if it should be kept from scripts
-* Boolean secure - should it only be transmitted over secure means
-* Number expiration_date - number of millis since 1970 at which this should be removed
-
-##### Methods
-
-* `String toString()` - the __set-cookie:__ string for this cookie
-* `String toValueString()` - the __cookie:__ string for this cookie
-* `Cookie parse(cookiestr, request_domain, request_path)` - parses the string onto this cookie or a new one if called directly
-* `Boolean matches(access_info)` - returns true if the access_info allows retrieval of this cookie
-* `Boolean collidesWith(cookie)` - returns true if the cookies cannot exist in the same space (domain and path match)
-
-
-### CookieJar()
-
-class to hold numerous cookies from multiple domains correctly
-
-##### Methods
-
-* `Cookie setCookie(cookie, request_domain, request_path)` - modify (or add if not already-existing) a cookie to the jar
-* `Cookie[] setCookies(cookiestr_or_list, request_domain, request_path)` - modify (or add if not already-existing) a large number of cookies to the jar
-* `Cookie getCookie(cookie_name,access_info)` - get a cookie with the name and access_info matching
-* `Cookie[] getCookies(access_info)` - grab all cookies matching this access_info