repocairn 0.1.4 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,54 @@
1
+ /*!
2
+ * negotiator
3
+ * Copyright(c) 2026 Blake Embrey
4
+ * MIT Licensed
5
+ */
6
+
7
+ 'use strict';
8
+
9
+ var contentType = require('content-type');
10
+
11
+ /**
12
+ * Module exports.
13
+ * @private
14
+ */
15
+
16
+ module.exports = parseAccept;
17
+
18
+ /**
19
+ * Parse an Accept-style header.
20
+ * @private
21
+ */
22
+
23
+ function parseAccept(header) {
24
+ var values = [];
25
+ var index = 0;
26
+
27
+ while (index < header.length) {
28
+ var start = skipOptionalWhitespace(header, index);
29
+ var parsed = contentType.parse(header, { comma: true, start: start });
30
+
31
+ // `content-type` normalizes the type, but accept methods return original casing.
32
+ parsed.type = header.slice(start, start + parsed.type.length);
33
+ values.push(parsed);
34
+
35
+ index = parsed.index + 1;
36
+ }
37
+
38
+ return values;
39
+ }
40
+
41
+ /**
42
+ * Skip optional whitespace.
43
+ * @private
44
+ */
45
+
46
+ function skipOptionalWhitespace(header, index) {
47
+ var cursor = index;
48
+
49
+ while (header.charCodeAt(cursor) === 0x20 || header.charCodeAt(cursor) === 0x09) {
50
+ cursor++;
51
+ }
52
+
53
+ return cursor;
54
+ }
@@ -8,6 +8,8 @@
8
8
 
9
9
  'use strict';
10
10
 
11
+ var parseAccept = require('./accept');
12
+
11
13
  /**
12
14
  * Module exports.
13
15
  * @public
@@ -21,55 +23,29 @@ module.exports.preferredCharsets = preferredCharsets;
21
23
  * @private
22
24
  */
23
25
 
24
- var simpleCharsetRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/;
25
-
26
- /**
27
- * Parse the Accept-Charset header.
28
- * @private
29
- */
30
-
31
26
  function parseAcceptCharset(accept) {
32
- var accepts = accept.split(',');
27
+ var accepts = parseAccept(accept);
33
28
 
34
29
  for (var i = 0, j = 0; i < accepts.length; i++) {
35
- var charset = parseCharset(accepts[i].trim(), i);
36
-
37
- if (charset) {
38
- accepts[j++] = charset;
39
- }
30
+ var charset = formatCharset(accepts[i], i);
31
+ if (charset) accepts[j++] = charset;
40
32
  }
41
33
 
42
- // trim accepts
43
34
  accepts.length = j;
44
-
45
35
  return accepts;
46
36
  }
47
37
 
48
38
  /**
49
- * Parse a charset from the Accept-Charset header.
39
+ * Format a parsed charset for negotiation.
50
40
  * @private
51
41
  */
52
42
 
53
- function parseCharset(str, i) {
54
- var match = simpleCharsetRegExp.exec(str);
55
- if (!match) return null;
56
-
57
- var charset = match[1];
58
- var q = 1;
59
- if (match[2]) {
60
- var params = match[2].split(';')
61
- for (var j = 0; j < params.length; j++) {
62
- var p = params[j].trim().split('=');
63
- if (p[0] === 'q') {
64
- q = parseFloat(p[1]);
65
- break;
66
- }
67
- }
68
- }
43
+ function formatCharset(parsed, i) {
44
+ if (!parsed.type) return null;
69
45
 
70
46
  return {
71
- charset: charset,
72
- q: q,
47
+ charset: parsed.type,
48
+ q: parsed.parameters.q ? parseFloat(parsed.parameters.q) : 1,
73
49
  i: i
74
50
  };
75
51
  }
@@ -8,6 +8,8 @@
8
8
 
9
9
  'use strict';
10
10
 
11
+ var parseAccept = require('./accept');
12
+
11
13
  /**
12
14
  * Module exports.
13
15
  * @public
@@ -21,20 +23,13 @@ module.exports.preferredEncodings = preferredEncodings;
21
23
  * @private
22
24
  */
23
25
 
24
- var simpleEncodingRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/;
25
-
26
- /**
27
- * Parse the Accept-Encoding header.
28
- * @private
29
- */
30
-
31
26
  function parseAcceptEncoding(accept) {
32
- var accepts = accept.split(',');
27
+ var accepts = parseAccept(accept);
33
28
  var hasIdentity = false;
34
29
  var minQuality = 1;
35
30
 
36
31
  for (var i = 0, j = 0; i < accepts.length; i++) {
37
- var encoding = parseEncoding(accepts[i].trim(), i);
32
+ var encoding = formatEncoding(accepts[i], i);
38
33
 
39
34
  if (encoding) {
40
35
  accepts[j++] = encoding;
@@ -55,37 +50,21 @@ function parseAcceptEncoding(accept) {
55
50
  };
56
51
  }
57
52
 
58
- // trim accepts
59
53
  accepts.length = j;
60
-
61
54
  return accepts;
62
55
  }
63
56
 
64
57
  /**
65
- * Parse an encoding from the Accept-Encoding header.
58
+ * Format a parsed encoding for negotiation.
66
59
  * @private
67
60
  */
68
61
 
69
- function parseEncoding(str, i) {
70
- var match = simpleEncodingRegExp.exec(str);
71
- if (!match) return null;
72
-
73
- var encoding = match[1];
74
- var q = 1;
75
- if (match[2]) {
76
- var params = match[2].split(';');
77
- for (var j = 0; j < params.length; j++) {
78
- var p = params[j].trim().split('=');
79
- if (p[0] === 'q') {
80
- q = parseFloat(p[1]);
81
- break;
82
- }
83
- }
84
- }
62
+ function formatEncoding(parsed, i) {
63
+ if (!parsed.type) return null;
85
64
 
86
65
  return {
87
- encoding: encoding,
88
- q: q,
66
+ encoding: parsed.type,
67
+ q: parsed.parameters.q ? parseFloat(parsed.parameters.q) : 1,
89
68
  i: i
90
69
  };
91
70
  }
@@ -8,6 +8,9 @@
8
8
 
9
9
  'use strict';
10
10
 
11
+ var contentType = require('content-type');
12
+ var parseAccept = require('./accept');
13
+
11
14
  /**
12
15
  * Module exports.
13
16
  * @public
@@ -21,60 +24,36 @@ module.exports.preferredLanguages = preferredLanguages;
21
24
  * @private
22
25
  */
23
26
 
24
- var simpleLanguageRegExp = /^\s*([^\s\-;]+)(?:-([^\s;]+))?\s*(?:;(.*))?$/;
25
-
26
- /**
27
- * Parse the Accept-Language header.
28
- * @private
29
- */
30
-
31
27
  function parseAcceptLanguage(accept) {
32
- var accepts = accept.split(',');
28
+ var accepts = parseAccept(accept);
33
29
 
34
30
  for (var i = 0, j = 0; i < accepts.length; i++) {
35
- var language = parseLanguage(accepts[i].trim(), i);
36
-
37
- if (language) {
38
- accepts[j++] = language;
39
- }
31
+ var language = formatLanguage(accepts[i], i);
32
+ if (language) accepts[j++] = language;
40
33
  }
41
34
 
42
- // trim accepts
43
35
  accepts.length = j;
44
-
45
36
  return accepts;
46
37
  }
47
38
 
48
39
  /**
49
- * Parse a language from the Accept-Language header.
40
+ * Format a parsed language for negotiation.
50
41
  * @private
51
42
  */
52
43
 
53
- function parseLanguage(str, i) {
54
- var match = simpleLanguageRegExp.exec(str);
55
- if (!match) return null;
56
-
57
- var prefix = match[1]
58
- var suffix = match[2]
59
- var full = prefix
44
+ function formatLanguage(parsed, i) {
45
+ if (!parsed.type) return null;
60
46
 
61
- if (suffix) full += "-" + suffix;
62
-
63
- var q = 1;
64
- if (match[3]) {
65
- var params = match[3].split(';')
66
- for (var j = 0; j < params.length; j++) {
67
- var p = params[j].split('=');
68
- if (p[0] === 'q') q = parseFloat(p[1]);
69
- }
70
- }
47
+ var hyphen = parsed.type.indexOf('-');
48
+ var prefix = hyphen === -1 ? parsed.type : parsed.type.slice(0, hyphen);
49
+ var suffix = hyphen === -1 ? undefined : parsed.type.slice(hyphen + 1);
71
50
 
72
51
  return {
73
52
  prefix: prefix,
74
53
  suffix: suffix,
75
- q: q,
54
+ q: parsed.parameters.q ? parseFloat(parsed.parameters.q) : 1,
76
55
  i: i,
77
- full: full
56
+ full: parsed.type
78
57
  };
79
58
  }
80
59
 
@@ -103,7 +82,7 @@ function getLanguagePriority(language, accepted, index) {
103
82
  */
104
83
 
105
84
  function specify(language, spec, index) {
106
- var p = parseLanguage(language)
85
+ var p = formatLanguage(contentType.parse(language), 0)
107
86
  if (!p) return null;
108
87
  var s = 0;
109
88
  if(spec.full.toLowerCase() === p.full.toLowerCase()){
@@ -8,6 +8,9 @@
8
8
 
9
9
  'use strict';
10
10
 
11
+ var contentType = require('content-type');
12
+ var parseAcceptHeader = require('./accept');
13
+
11
14
  /**
12
15
  * Module exports.
13
16
  * @public
@@ -21,71 +24,35 @@ module.exports.preferredMediaTypes = preferredMediaTypes;
21
24
  * @private
22
25
  */
23
26
 
24
- var simpleMediaTypeRegExp = /^\s*([^\s\/;]+)\/([^;\s]+)\s*(?:;(.*))?$/;
25
-
26
- /**
27
- * Parse the Accept header.
28
- * @private
29
- */
30
-
31
27
  function parseAccept(accept) {
32
- var accepts = splitMediaTypes(accept);
28
+ var accepts = parseAcceptHeader(accept);
33
29
 
34
30
  for (var i = 0, j = 0; i < accepts.length; i++) {
35
- var mediaType = parseMediaType(accepts[i].trim(), i);
36
-
37
- if (mediaType) {
38
- accepts[j++] = mediaType;
39
- }
31
+ var mediaType = formatMediaType(accepts[i], i);
32
+ if (mediaType) accepts[j++] = mediaType;
40
33
  }
41
34
 
42
- // trim accepts
43
35
  accepts.length = j;
44
-
45
36
  return accepts;
46
37
  }
47
38
 
48
39
  /**
49
- * Parse a media type from the Accept header.
40
+ * Format a parsed content type for negotiation.
50
41
  * @private
51
42
  */
52
43
 
53
- function parseMediaType(str, i) {
54
- var match = simpleMediaTypeRegExp.exec(str);
55
- if (!match) return null;
56
-
57
- var params = Object.create(null);
58
- var q = 1;
59
- var subtype = match[2];
60
- var type = match[1];
61
-
62
- if (match[3]) {
63
- var kvps = splitParameters(match[3]).map(splitKeyValuePair);
64
-
65
- for (var j = 0; j < kvps.length; j++) {
66
- var pair = kvps[j];
67
- var key = pair[0].toLowerCase();
68
- var val = pair[1];
44
+ function formatMediaType(parsed, i) {
45
+ var slash = parsed.type.indexOf('/');
46
+ if (slash === -1) return null;
69
47
 
70
- // get the value, unwrapping quotes
71
- var value = val && val[0] === '"' && val[val.length - 1] === '"'
72
- ? val.slice(1, -1)
73
- : val;
48
+ var q = parsed.parameters.q ? parseFloat(parsed.parameters.q) : 1;
74
49
 
75
- if (key === 'q') {
76
- q = parseFloat(value);
77
- break;
78
- }
79
-
80
- // store parameter
81
- params[key] = value;
82
- }
83
- }
50
+ delete parsed.parameters.q;
84
51
 
85
52
  return {
86
- type: type,
87
- subtype: subtype,
88
- params: params,
53
+ type: parsed.type.slice(0, slash),
54
+ subtype: parsed.type.slice(slash + 1),
55
+ params: parsed.parameters,
89
56
  q: q,
90
57
  i: i
91
58
  };
@@ -116,7 +83,7 @@ function getMediaTypePriority(type, accepted, index) {
116
83
  */
117
84
 
118
85
  function specify(type, spec, index) {
119
- var p = parseMediaType(type);
86
+ var p = formatMediaType(contentType.parse(type), 0);
120
87
  var s = 0;
121
88
 
122
89
  if (!p) {
@@ -207,88 +174,3 @@ function getFullType(spec) {
207
174
  function isQuality(spec) {
208
175
  return spec.q > 0;
209
176
  }
210
-
211
- /**
212
- * Count the number of quotes in a string.
213
- * @private
214
- */
215
-
216
- function quoteCount(string) {
217
- var count = 0;
218
- var index = 0;
219
-
220
- while ((index = string.indexOf('"', index)) !== -1) {
221
- count++;
222
- index++;
223
- }
224
-
225
- return count;
226
- }
227
-
228
- /**
229
- * Split a key value pair.
230
- * @private
231
- */
232
-
233
- function splitKeyValuePair(str) {
234
- var index = str.indexOf('=');
235
- var key;
236
- var val;
237
-
238
- if (index === -1) {
239
- key = str;
240
- } else {
241
- key = str.slice(0, index);
242
- val = str.slice(index + 1);
243
- }
244
-
245
- return [key, val];
246
- }
247
-
248
- /**
249
- * Split an Accept header into media types.
250
- * @private
251
- */
252
-
253
- function splitMediaTypes(accept) {
254
- var accepts = accept.split(',');
255
-
256
- for (var i = 1, j = 0; i < accepts.length; i++) {
257
- if (quoteCount(accepts[j]) % 2 == 0) {
258
- accepts[++j] = accepts[i];
259
- } else {
260
- accepts[j] += ',' + accepts[i];
261
- }
262
- }
263
-
264
- // trim accepts
265
- accepts.length = j + 1;
266
-
267
- return accepts;
268
- }
269
-
270
- /**
271
- * Split a string of parameters.
272
- * @private
273
- */
274
-
275
- function splitParameters(str) {
276
- var parameters = str.split(';');
277
-
278
- for (var i = 1, j = 0; i < parameters.length; i++) {
279
- if (quoteCount(parameters[j]) % 2 == 0) {
280
- parameters[++j] = parameters[i];
281
- } else {
282
- parameters[j] += ';' + parameters[i];
283
- }
284
- }
285
-
286
- // trim parameters
287
- parameters.length = j + 1;
288
-
289
- for (var i = 0; i < parameters.length; i++) {
290
- parameters[i] = parameters[i].trim();
291
- }
292
-
293
- return parameters;
294
- }
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2015 Douglas Christopher Wilson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,71 @@
1
+ # content-type
2
+
3
+ [![NPM version][npm-image]][npm-url]
4
+ [![NPM downloads][downloads-image]][downloads-url]
5
+ [![Build status][build-image]][build-url]
6
+ [![Build coverage][coverage-image]][coverage-url]
7
+ [![License][license-image]][license-url]
8
+
9
+ Create and parse HTTP `Content-Type` header.
10
+
11
+ ## Installation
12
+
13
+ ```sh
14
+ npm install content-type
15
+ ```
16
+
17
+ ## API
18
+
19
+ ```js
20
+ const contentType = require("content-type");
21
+ ```
22
+
23
+ ### contentType.parse(string, options?)
24
+
25
+ ```js
26
+ const obj = contentType.parse("image/svg+xml; charset=utf-8");
27
+ ```
28
+
29
+ Parse a `Content-Type` header. This will return an object with the following properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`):
30
+
31
+ - `type`: The media type. Example: `'image/svg+xml'`.
32
+ - `parameters`: An object of the parameters in the media type (parameter name is always lower case). Example: `{charset: 'utf-8'}`.
33
+
34
+ The parser is lenient and does not error. You should validate `type` and `parameters` before trusting them.
35
+
36
+ #### Options
37
+
38
+ - `parameters` (default: `true`): Set to `false` to skip parameters.
39
+ - `comma` (default: `false`): Set to `true` to stop on a comma. This can be used to parse the media range in an `Accept` header.
40
+ - `start` (default: `0`): Set index to start parsing from.
41
+
42
+ ### contentType.format(obj)
43
+
44
+ ```js
45
+ const str = contentType.format({
46
+ type: "image/svg+xml",
47
+ parameters: { charset: "utf-8" },
48
+ });
49
+ ```
50
+
51
+ Format an object into a `Content-Type` header. This will return a string of the content type for the given object with the following properties (examples are shown that produce the string `'image/svg+xml; charset=utf-8'`):
52
+
53
+ - `type`: The media type. Example: `'image/svg+xml'`.
54
+ - `parameters`: An optional object of the parameters in the media type. Example: `{charset: 'utf-8'}`.
55
+
56
+ Throws a `TypeError` if the object contains an invalid type or parameter names.
57
+
58
+ ## License
59
+
60
+ [MIT](LICENSE)
61
+
62
+ [npm-image]: https://img.shields.io/npm/v/content-type
63
+ [npm-url]: https://npmjs.org/package/content-type
64
+ [downloads-image]: https://img.shields.io/npm/dm/content-type
65
+ [downloads-url]: https://npmjs.org/package/content-type
66
+ [build-image]: https://img.shields.io/github/actions/workflow/status/jshttp/content-type/ci.yml?branch=master
67
+ [build-url]: https://github.com/jshttp/content-type/actions/workflows/ci.yml?query=branch%3Amaster
68
+ [coverage-image]: https://img.shields.io/codecov/c/gh/jshttp/content-type
69
+ [coverage-url]: https://codecov.io/gh/jshttp/content-type
70
+ [license-image]: http://img.shields.io/npm/l/content-type.svg?style=flat
71
+ [license-url]: LICENSE
@@ -0,0 +1,46 @@
1
+ /*!
2
+ * content-type
3
+ * Copyright(c) 2015 Douglas Christopher Wilson
4
+ * MIT Licensed
5
+ */
6
+ /**
7
+ * The content type object contains a type string and optional parameters.
8
+ */
9
+ export interface ContentType {
10
+ type: string;
11
+ index: number;
12
+ parameters: Record<string, string>;
13
+ }
14
+ /**
15
+ * Format an object into a `Content-Type` header.
16
+ */
17
+ export declare function format(obj: Partial<ContentType>): string;
18
+ /**
19
+ * Options for parsing a `Content-Type` header.
20
+ */
21
+ export interface ParseOptions {
22
+ /**
23
+ * Exit early on the first semicolon, returning only the type.
24
+ * This is useful for parsing the MIME from `Content-Type` headers.
25
+ *
26
+ * @default false
27
+ */
28
+ parameters?: boolean;
29
+ /**
30
+ * Exits early on a comma, returning the first value and parameters.
31
+ * This is useful for parsing `Accept` headers.
32
+ *
33
+ * @default false
34
+ */
35
+ comma?: boolean;
36
+ /**
37
+ * The index to start parsing from.
38
+ *
39
+ * @default 0
40
+ */
41
+ start?: number;
42
+ }
43
+ /**
44
+ * Parse a `Content-Type` header.
45
+ */
46
+ export declare function parse(header: string, options?: ParseOptions): ContentType;
@@ -0,0 +1,176 @@
1
+ "use strict";
2
+ /*!
3
+ * content-type
4
+ * Copyright(c) 2015 Douglas Christopher Wilson
5
+ * MIT Licensed
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.format = format;
9
+ exports.parse = parse;
10
+ const TEXT_REGEXP = /^[\u0009\u0020-\u007e\u0080-\u00ff]*$/;
11
+ const TOKEN_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
12
+ /**
13
+ * RegExp to match chars that must be quoted-pair in RFC 9110 sec 5.6.4
14
+ */
15
+ const QUOTE_REGEXP = /[\\"]/g;
16
+ /**
17
+ * RegExp to match type in RFC 9110 sec 8.3.1
18
+ *
19
+ * media-type = type "/" subtype
20
+ * type = token
21
+ * subtype = token
22
+ */
23
+ const TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
24
+ /**
25
+ * Null object perf optimization. Faster than `Object.create(null)` and `{ __proto__: null }`.
26
+ */
27
+ const NullObject = /* @__PURE__ */ (() => {
28
+ const C = function () { };
29
+ C.prototype = Object.create(null);
30
+ return C;
31
+ })();
32
+ /**
33
+ * Format an object into a `Content-Type` header.
34
+ */
35
+ function format(obj) {
36
+ const { type, parameters } = obj;
37
+ if (!type || !TYPE_REGEXP.test(type)) {
38
+ throw new TypeError(`Invalid type: ${type}`);
39
+ }
40
+ let result = type;
41
+ if (parameters) {
42
+ for (const param of Object.keys(parameters)) {
43
+ if (!TOKEN_REGEXP.test(param)) {
44
+ throw new TypeError(`Invalid parameter name: ${param}`);
45
+ }
46
+ result += `; ${param}=${qstring(parameters[param])}`;
47
+ }
48
+ }
49
+ return result;
50
+ }
51
+ /**
52
+ * Parse a `Content-Type` header.
53
+ */
54
+ function parse(header, options) {
55
+ const stopChar = options?.comma === true ? COMMA : 65536; // Sentinel for "no stop char".
56
+ const len = header.length;
57
+ let index = skipOWS(header, options?.start ?? 0, len);
58
+ const valueStart = index;
59
+ index = skipValue(header, index, len, stopChar);
60
+ const valueEnd = trailingOWS(header, valueStart, index);
61
+ const type = header.slice(valueStart, valueEnd).toLowerCase();
62
+ if (options?.parameters === false) {
63
+ return { type, index, parameters: new NullObject() };
64
+ }
65
+ return parseParameters(header, type, index, len, stopChar);
66
+ }
67
+ const SP = 32; // " "
68
+ const HTAB = 9; // "\t"
69
+ const SEMI = 59; // ";"
70
+ const EQ = 61; // "="
71
+ const DQUOTE = 34; // '"'
72
+ const BSLASH = 92; // "\\"
73
+ const COMMA = 44; // ","
74
+ /**
75
+ * Parses the parameters of a `Content-Type` header starting at the given index.
76
+ */
77
+ function parseParameters(header, type, index, len, stopChar) {
78
+ const parameters = new NullObject();
79
+ parameter: while (index < len) {
80
+ if (header.charCodeAt(index) === stopChar)
81
+ break;
82
+ index = skipOWS(header, index + 1 /* Skip over ; */, len);
83
+ const keyStart = index;
84
+ while (index < len) {
85
+ const code = header.charCodeAt(index);
86
+ if (code === stopChar)
87
+ break parameter;
88
+ if (code === SEMI)
89
+ continue parameter;
90
+ if (code === EQ) {
91
+ const keyEnd = trailingOWS(header, keyStart, index);
92
+ const key = header.slice(keyStart, keyEnd).toLowerCase();
93
+ index = skipOWS(header, index + 1, len);
94
+ if (index < len && header.charCodeAt(index) === DQUOTE) {
95
+ index++;
96
+ let value = "";
97
+ while (index < len) {
98
+ const code = header.charCodeAt(index++);
99
+ if (code === DQUOTE) {
100
+ index = skipValue(header, index, len, stopChar);
101
+ if (parameters[key] === undefined)
102
+ parameters[key] = value;
103
+ break;
104
+ }
105
+ if (code === BSLASH && index < len) {
106
+ value += header[index++];
107
+ continue;
108
+ }
109
+ value += String.fromCharCode(code);
110
+ }
111
+ continue parameter;
112
+ }
113
+ const valueStart = index;
114
+ index = skipValue(header, index, len, stopChar);
115
+ if (parameters[key] === undefined) {
116
+ const valueEnd = trailingOWS(header, valueStart, index);
117
+ parameters[key] = header.slice(valueStart, valueEnd);
118
+ }
119
+ continue parameter;
120
+ }
121
+ index++;
122
+ }
123
+ }
124
+ return { type, index, parameters };
125
+ }
126
+ /**
127
+ * Skip over characters until a semicolon or other exit character.
128
+ */
129
+ function skipValue(str, index, len, stopChar) {
130
+ while (index < len) {
131
+ const code = str.charCodeAt(index);
132
+ if (code === SEMI || code === stopChar)
133
+ break;
134
+ index++;
135
+ }
136
+ return index;
137
+ }
138
+ /**
139
+ * Skip optional whitespace (OWS) in an HTTP header value.
140
+ *
141
+ * OWS is defined in RFC 9110 sec 5.6.3 as SP (" ") or HTAB ("\t").
142
+ */
143
+ function skipOWS(header, index, len) {
144
+ while (index < len) {
145
+ const char = header.charCodeAt(index);
146
+ if (char !== SP && char !== HTAB)
147
+ break;
148
+ index++;
149
+ }
150
+ return index;
151
+ }
152
+ /**
153
+ * Trim optional whitespace (OWS) from the end of a substring.
154
+ *
155
+ * OWS is defined in RFC 9110 sec 5.6.3 as SP (" ") or HTAB ("\t").
156
+ */
157
+ function trailingOWS(header, start, end) {
158
+ while (end > start) {
159
+ const char = header.charCodeAt(end - 1);
160
+ if (char !== SP && char !== HTAB)
161
+ break;
162
+ end--;
163
+ }
164
+ return end;
165
+ }
166
+ /**
167
+ * Serialize a parameter value.
168
+ */
169
+ function qstring(str) {
170
+ if (TOKEN_REGEXP.test(str))
171
+ return str;
172
+ if (TEXT_REGEXP.test(str))
173
+ return `"${str.replace(QUOTE_REGEXP, "\\$&")}"`;
174
+ throw new TypeError(`Invalid parameter value: ${str}`);
175
+ }
176
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["/*!\n * content-type\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */\n\nconst TEXT_REGEXP = /^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]*$/;\nconst TOKEN_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;\n\n/**\n * RegExp to match chars that must be quoted-pair in RFC 9110 sec 5.6.4\n */\nconst QUOTE_REGEXP = /[\\\\\"]/g;\n\n/**\n * RegExp to match type in RFC 9110 sec 8.3.1\n *\n * media-type = type \"/\" subtype\n * type = token\n * subtype = token\n */\nconst TYPE_REGEXP =\n /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;\n\n/**\n * Null object perf optimization. Faster than `Object.create(null)` and `{ __proto__: null }`.\n */\nconst NullObject = /* @__PURE__ */ (() => {\n const C = function () {};\n C.prototype = Object.create(null);\n return C;\n})() as unknown as { new (): any };\n\n/**\n * The content type object contains a type string and optional parameters.\n */\nexport interface ContentType {\n type: string;\n index: number;\n parameters: Record<string, string>;\n}\n\n/**\n * Format an object into a `Content-Type` header.\n */\nexport function format(obj: Partial<ContentType>): string {\n const { type, parameters } = obj;\n\n if (!type || !TYPE_REGEXP.test(type)) {\n throw new TypeError(`Invalid type: ${type}`);\n }\n\n let result = type;\n\n if (parameters) {\n for (const param of Object.keys(parameters)) {\n if (!TOKEN_REGEXP.test(param)) {\n throw new TypeError(`Invalid parameter name: ${param}`);\n }\n\n result += `; ${param}=${qstring(parameters[param])}`;\n }\n }\n\n return result;\n}\n\n/**\n * Options for parsing a `Content-Type` header.\n */\nexport interface ParseOptions {\n /**\n * Exit early on the first semicolon, returning only the type.\n * This is useful for parsing the MIME from `Content-Type` headers.\n *\n * @default false\n */\n parameters?: boolean;\n /**\n * Exits early on a comma, returning the first value and parameters.\n * This is useful for parsing `Accept` headers.\n *\n * @default false\n */\n comma?: boolean;\n /**\n * The index to start parsing from.\n *\n * @default 0\n */\n start?: number;\n}\n\n/**\n * Parse a `Content-Type` header.\n */\nexport function parse(header: string, options?: ParseOptions): ContentType {\n const stopChar = options?.comma === true ? COMMA : 65_536; // Sentinel for \"no stop char\".\n const len = header.length;\n let index = skipOWS(header, options?.start ?? 0, len);\n\n const valueStart = index;\n index = skipValue(header, index, len, stopChar);\n const valueEnd = trailingOWS(header, valueStart, index);\n const type = header.slice(valueStart, valueEnd).toLowerCase();\n\n if (options?.parameters === false) {\n return { type, index, parameters: new NullObject() };\n }\n\n return parseParameters(header, type, index, len, stopChar);\n}\n\nconst SP = 32; // \" \"\nconst HTAB = 9; // \"\\t\"\nconst SEMI = 59; // \";\"\nconst EQ = 61; // \"=\"\nconst DQUOTE = 34; // '\"'\nconst BSLASH = 92; // \"\\\\\"\nconst COMMA = 44; // \",\"\n\n/**\n * Parses the parameters of a `Content-Type` header starting at the given index.\n */\nfunction parseParameters(\n header: string,\n type: string,\n index: number,\n len: number,\n stopChar: number,\n): ContentType {\n const parameters: Record<string, string> = new NullObject();\n\n parameter: while (index < len) {\n if (header.charCodeAt(index) === stopChar) break;\n\n index = skipOWS(header, index + 1 /* Skip over ; */, len);\n\n const keyStart = index;\n\n while (index < len) {\n const code = header.charCodeAt(index);\n if (code === stopChar) break parameter;\n\n if (code === SEMI) continue parameter;\n\n if (code === EQ) {\n const keyEnd = trailingOWS(header, keyStart, index);\n const key = header.slice(keyStart, keyEnd).toLowerCase();\n\n index = skipOWS(header, index + 1, len);\n\n if (index < len && header.charCodeAt(index) === DQUOTE) {\n index++;\n\n let value = \"\";\n while (index < len) {\n const code = header.charCodeAt(index++);\n if (code === DQUOTE) {\n index = skipValue(header, index, len, stopChar);\n if (parameters[key] === undefined) parameters[key] = value;\n break;\n }\n\n if (code === BSLASH && index < len) {\n value += header[index++];\n continue;\n }\n\n value += String.fromCharCode(code);\n }\n\n continue parameter;\n }\n\n const valueStart = index;\n index = skipValue(header, index, len, stopChar);\n\n if (parameters[key] === undefined) {\n const valueEnd = trailingOWS(header, valueStart, index);\n parameters[key] = header.slice(valueStart, valueEnd);\n }\n\n continue parameter;\n }\n\n index++;\n }\n }\n\n return { type, index, parameters };\n}\n\n/**\n * Skip over characters until a semicolon or other exit character.\n */\nfunction skipValue(\n str: string,\n index: number,\n len: number,\n stopChar: number,\n): number {\n while (index < len) {\n const code = str.charCodeAt(index);\n if (code === SEMI || code === stopChar) break;\n index++;\n }\n return index;\n}\n\n/**\n * Skip optional whitespace (OWS) in an HTTP header value.\n *\n * OWS is defined in RFC 9110 sec 5.6.3 as SP (\" \") or HTAB (\"\\t\").\n */\nfunction skipOWS(header: string, index: number, len: number): number {\n while (index < len) {\n const char = header.charCodeAt(index);\n if (char !== SP && char !== HTAB) break;\n index++;\n }\n return index;\n}\n\n/**\n * Trim optional whitespace (OWS) from the end of a substring.\n *\n * OWS is defined in RFC 9110 sec 5.6.3 as SP (\" \") or HTAB (\"\\t\").\n */\nfunction trailingOWS(header: string, start: number, end: number): number {\n while (end > start) {\n const char = header.charCodeAt(end - 1);\n if (char !== SP && char !== HTAB) break;\n end--;\n }\n return end;\n}\n\n/**\n * Serialize a parameter value.\n */\nfunction qstring(str: string): string {\n if (TOKEN_REGEXP.test(str)) return str;\n if (TEXT_REGEXP.test(str)) return `\"${str.replace(QUOTE_REGEXP, \"\\\\$&\")}\"`;\n\n throw new TypeError(`Invalid parameter value: ${str}`);\n}\n"]}
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "content-type",
3
+ "version": "2.1.0",
4
+ "description": "Create and parse HTTP Content-Type header",
5
+ "keywords": [
6
+ "content-type",
7
+ "http",
8
+ "req",
9
+ "res",
10
+ "rfc7231",
11
+ "rfc9110"
12
+ ],
13
+ "repository": "jshttp/content-type",
14
+ "funding": {
15
+ "type": "opencollective",
16
+ "url": "https://opencollective.com/express"
17
+ },
18
+ "license": "MIT",
19
+ "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
20
+ "type": "commonjs",
21
+ "exports": "./dist/index.js",
22
+ "main": "./dist/index.js",
23
+ "typings": "./dist/index.d.ts",
24
+ "files": [
25
+ "dist/"
26
+ ],
27
+ "scripts": {
28
+ "bench": "vitest bench",
29
+ "build": "ts-scripts build",
30
+ "format": "ts-scripts format",
31
+ "prepare": "ts-scripts install && npm run build",
32
+ "specs": "ts-scripts specs",
33
+ "test": "ts-scripts test"
34
+ },
35
+ "devDependencies": {
36
+ "@borderless/ts-scripts": "^0.15.0",
37
+ "@vitest/coverage-v8": "^3.0.5",
38
+ "typescript": "^5.7.3",
39
+ "vitest": "^3.2.4"
40
+ },
41
+ "engines": {
42
+ "node": ">=18"
43
+ },
44
+ "ts-scripts": {
45
+ "dist": [
46
+ "dist"
47
+ ],
48
+ "project": [
49
+ "tsconfig.build.json"
50
+ ]
51
+ }
52
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "negotiator",
3
3
  "description": "HTTP content negotiation",
4
- "version": "1.0.0",
4
+ "version": "1.1.0",
5
5
  "contributors": [
6
6
  "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
7
  "Federico Romero <federico.romero@outboxlabs.com>",
@@ -17,27 +17,33 @@
17
17
  "accept-charset"
18
18
  ],
19
19
  "repository": "jshttp/negotiator",
20
+ "funding": {
21
+ "type": "opencollective",
22
+ "url": "https://opencollective.com/express"
23
+ },
24
+ "dependencies": {
25
+ "content-type": "^2.1.0"
26
+ },
20
27
  "devDependencies": {
21
28
  "eslint": "7.32.0",
22
29
  "eslint-plugin-markdown": "2.2.1",
23
- "mocha": "9.1.3",
24
- "nyc": "15.1.0"
30
+ "mocha": "^11.7.0",
31
+ "nyc": "^17.1.0",
32
+ "vitest": "3.2.4"
25
33
  },
26
34
  "files": [
27
35
  "lib/",
28
- "HISTORY.md",
29
- "LICENSE",
30
- "index.js",
31
- "README.md"
36
+ "index.js"
32
37
  ],
33
38
  "engines": {
34
- "node": ">= 0.6"
39
+ "node": ">=18"
35
40
  },
36
41
  "scripts": {
42
+ "bench": "vitest bench",
37
43
  "lint": "eslint .",
38
- "test": "mocha --reporter spec --check-leaks --bail test/",
44
+ "test": "mocha --reporter spec --check-leaks test/",
39
45
  "test:debug": "mocha --reporter spec --check-leaks --inspect --inspect-brk test/",
40
- "test-ci": "nyc --reporter=lcov --reporter=text npm test",
46
+ "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
41
47
  "test-cov": "nyc --reporter=html --reporter=text npm test"
42
48
  }
43
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repocairn",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Persistent, token-efficient repository memory for AI tools: symbols, import graph and LLM summaries per file — CLI, library and MCP server",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,114 +0,0 @@
1
- 1.0.0 / 2024-08-31
2
- ==================
3
-
4
- * Drop support for node <18
5
- * Added an option preferred encodings array #59
6
-
7
- 0.6.3 / 2022-01-22
8
- ==================
9
-
10
- * Revert "Lazy-load modules from main entry point"
11
-
12
- 0.6.2 / 2019-04-29
13
- ==================
14
-
15
- * Fix sorting charset, encoding, and language with extra parameters
16
-
17
- 0.6.1 / 2016-05-02
18
- ==================
19
-
20
- * perf: improve `Accept` parsing speed
21
- * perf: improve `Accept-Charset` parsing speed
22
- * perf: improve `Accept-Encoding` parsing speed
23
- * perf: improve `Accept-Language` parsing speed
24
-
25
- 0.6.0 / 2015-09-29
26
- ==================
27
-
28
- * Fix including type extensions in parameters in `Accept` parsing
29
- * Fix parsing `Accept` parameters with quoted equals
30
- * Fix parsing `Accept` parameters with quoted semicolons
31
- * Lazy-load modules from main entry point
32
- * perf: delay type concatenation until needed
33
- * perf: enable strict mode
34
- * perf: hoist regular expressions
35
- * perf: remove closures getting spec properties
36
- * perf: remove a closure from media type parsing
37
- * perf: remove property delete from media type parsing
38
-
39
- 0.5.3 / 2015-05-10
40
- ==================
41
-
42
- * Fix media type parameter matching to be case-insensitive
43
-
44
- 0.5.2 / 2015-05-06
45
- ==================
46
-
47
- * Fix comparing media types with quoted values
48
- * Fix splitting media types with quoted commas
49
-
50
- 0.5.1 / 2015-02-14
51
- ==================
52
-
53
- * Fix preference sorting to be stable for long acceptable lists
54
-
55
- 0.5.0 / 2014-12-18
56
- ==================
57
-
58
- * Fix list return order when large accepted list
59
- * Fix missing identity encoding when q=0 exists
60
- * Remove dynamic building of Negotiator class
61
-
62
- 0.4.9 / 2014-10-14
63
- ==================
64
-
65
- * Fix error when media type has invalid parameter
66
-
67
- 0.4.8 / 2014-09-28
68
- ==================
69
-
70
- * Fix all negotiations to be case-insensitive
71
- * Stable sort preferences of same quality according to client order
72
- * Support Node.js 0.6
73
-
74
- 0.4.7 / 2014-06-24
75
- ==================
76
-
77
- * Handle invalid provided languages
78
- * Handle invalid provided media types
79
-
80
- 0.4.6 / 2014-06-11
81
- ==================
82
-
83
- * Order by specificity when quality is the same
84
-
85
- 0.4.5 / 2014-05-29
86
- ==================
87
-
88
- * Fix regression in empty header handling
89
-
90
- 0.4.4 / 2014-05-29
91
- ==================
92
-
93
- * Fix behaviors when headers are not present
94
-
95
- 0.4.3 / 2014-04-16
96
- ==================
97
-
98
- * Handle slashes on media params correctly
99
-
100
- 0.4.2 / 2014-02-28
101
- ==================
102
-
103
- * Fix media type sorting
104
- * Handle media types params strictly
105
-
106
- 0.4.1 / 2014-01-16
107
- ==================
108
-
109
- * Use most specific matches
110
-
111
- 0.4.0 / 2014-01-09
112
- ==================
113
-
114
- * Remove preferred prefix from methods