@obsfx/trekker 0.1.5 → 0.1.7

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.
Files changed (147) hide show
  1. package/README.md +175 -0
  2. package/package.json +1 -1
  3. package/webapp-dist/.next/BUILD_ID +1 -1
  4. package/webapp-dist/.next/build-manifest.json +2 -2
  5. package/webapp-dist/.next/prerender-manifest.json +3 -3
  6. package/webapp-dist/.next/server/app/_global-error.html +2 -2
  7. package/webapp-dist/.next/server/app/_global-error.rsc +1 -1
  8. package/webapp-dist/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  9. package/webapp-dist/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  10. package/webapp-dist/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  11. package/webapp-dist/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  12. package/webapp-dist/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  13. package/webapp-dist/.next/server/app/_not-found.html +2 -2
  14. package/webapp-dist/.next/server/app/_not-found.rsc +1 -1
  15. package/webapp-dist/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
  16. package/webapp-dist/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  17. package/webapp-dist/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
  18. package/webapp-dist/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  19. package/webapp-dist/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  20. package/webapp-dist/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
  21. package/webapp-dist/.next/server/app/index.html +2 -2
  22. package/webapp-dist/.next/server/app/index.rsc +1 -1
  23. package/webapp-dist/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
  24. package/webapp-dist/.next/server/app/index.segments/_full.segment.rsc +1 -1
  25. package/webapp-dist/.next/server/app/index.segments/_head.segment.rsc +1 -1
  26. package/webapp-dist/.next/server/app/index.segments/_index.segment.rsc +1 -1
  27. package/webapp-dist/.next/server/app/index.segments/_tree.segment.rsc +1 -1
  28. package/webapp-dist/.next/server/pages/404.html +2 -2
  29. package/webapp-dist/.next/server/pages/500.html +2 -2
  30. package/webapp-dist/.next/server/server-reference-manifest.js +1 -1
  31. package/webapp-dist/.next/server/server-reference-manifest.json +1 -1
  32. package/webapp-dist/node_modules/@next/env/dist/index.js +1 -0
  33. package/webapp-dist/node_modules/@next/env/package.json +36 -0
  34. package/webapp-dist/node_modules/buffer-from/index.js +72 -0
  35. package/webapp-dist/node_modules/buffer-from/package.json +19 -0
  36. package/webapp-dist/node_modules/client-only/index.js +0 -0
  37. package/webapp-dist/node_modules/client-only/package.json +19 -0
  38. package/webapp-dist/node_modules/detect-libc/lib/detect-libc.js +313 -0
  39. package/webapp-dist/node_modules/detect-libc/lib/elf.js +39 -0
  40. package/webapp-dist/node_modules/detect-libc/lib/filesystem.js +51 -0
  41. package/webapp-dist/node_modules/detect-libc/lib/process.js +24 -0
  42. package/webapp-dist/node_modules/detect-libc/package.json +44 -0
  43. package/webapp-dist/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
  44. package/webapp-dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
  45. package/webapp-dist/node_modules/react/cjs/react.production.min.js +26 -0
  46. package/webapp-dist/node_modules/react/index.js +7 -0
  47. package/webapp-dist/node_modules/react/jsx-dev-runtime.js +7 -0
  48. package/webapp-dist/node_modules/react/jsx-runtime.js +7 -0
  49. package/webapp-dist/node_modules/react/package.json +47 -0
  50. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
  51. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
  52. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
  53. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
  54. package/webapp-dist/node_modules/react-dom/cjs/react-dom.production.min.js +322 -0
  55. package/webapp-dist/node_modules/react-dom/index.js +38 -0
  56. package/webapp-dist/node_modules/react-dom/package.json +62 -0
  57. package/webapp-dist/node_modules/react-dom/server.browser.js +17 -0
  58. package/webapp-dist/node_modules/react-dom/server.node.js +17 -0
  59. package/webapp-dist/node_modules/scheduler/cjs/scheduler.development.js +634 -0
  60. package/webapp-dist/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
  61. package/webapp-dist/node_modules/scheduler/index.js +7 -0
  62. package/webapp-dist/node_modules/scheduler/package.json +36 -0
  63. package/webapp-dist/node_modules/semver/classes/comparator.js +143 -0
  64. package/webapp-dist/node_modules/semver/classes/range.js +557 -0
  65. package/webapp-dist/node_modules/semver/classes/semver.js +333 -0
  66. package/webapp-dist/node_modules/semver/functions/cmp.js +54 -0
  67. package/webapp-dist/node_modules/semver/functions/coerce.js +62 -0
  68. package/webapp-dist/node_modules/semver/functions/compare.js +7 -0
  69. package/webapp-dist/node_modules/semver/functions/eq.js +5 -0
  70. package/webapp-dist/node_modules/semver/functions/gt.js +5 -0
  71. package/webapp-dist/node_modules/semver/functions/gte.js +5 -0
  72. package/webapp-dist/node_modules/semver/functions/lt.js +5 -0
  73. package/webapp-dist/node_modules/semver/functions/lte.js +5 -0
  74. package/webapp-dist/node_modules/semver/functions/neq.js +5 -0
  75. package/webapp-dist/node_modules/semver/functions/parse.js +18 -0
  76. package/webapp-dist/node_modules/semver/functions/satisfies.js +12 -0
  77. package/webapp-dist/node_modules/semver/internal/constants.js +37 -0
  78. package/webapp-dist/node_modules/semver/internal/debug.js +11 -0
  79. package/webapp-dist/node_modules/semver/internal/identifiers.js +29 -0
  80. package/webapp-dist/node_modules/semver/internal/lrucache.js +42 -0
  81. package/webapp-dist/node_modules/semver/internal/parse-options.js +17 -0
  82. package/webapp-dist/node_modules/semver/internal/re.js +223 -0
  83. package/webapp-dist/node_modules/semver/package.json +78 -0
  84. package/webapp-dist/node_modules/sharp/lib/channel.js +177 -0
  85. package/webapp-dist/node_modules/sharp/lib/colour.js +195 -0
  86. package/webapp-dist/node_modules/sharp/lib/composite.js +212 -0
  87. package/webapp-dist/node_modules/sharp/lib/constructor.js +499 -0
  88. package/webapp-dist/node_modules/sharp/lib/index.js +16 -0
  89. package/webapp-dist/node_modules/sharp/lib/input.js +809 -0
  90. package/webapp-dist/node_modules/sharp/lib/is.js +143 -0
  91. package/webapp-dist/node_modules/sharp/lib/libvips.js +207 -0
  92. package/webapp-dist/node_modules/sharp/lib/operation.js +1016 -0
  93. package/webapp-dist/node_modules/sharp/lib/output.js +1666 -0
  94. package/webapp-dist/node_modules/sharp/lib/resize.js +595 -0
  95. package/webapp-dist/node_modules/sharp/lib/sharp.js +121 -0
  96. package/webapp-dist/node_modules/sharp/lib/utility.js +291 -0
  97. package/webapp-dist/node_modules/sharp/package.json +202 -0
  98. package/webapp-dist/node_modules/source-map/lib/array-set.js +121 -0
  99. package/webapp-dist/node_modules/source-map/lib/base64-vlq.js +140 -0
  100. package/webapp-dist/node_modules/source-map/lib/base64.js +67 -0
  101. package/webapp-dist/node_modules/source-map/lib/binary-search.js +111 -0
  102. package/webapp-dist/node_modules/source-map/lib/mapping-list.js +79 -0
  103. package/webapp-dist/node_modules/source-map/lib/quick-sort.js +114 -0
  104. package/webapp-dist/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  105. package/webapp-dist/node_modules/source-map/lib/source-map-generator.js +425 -0
  106. package/webapp-dist/node_modules/source-map/lib/source-node.js +413 -0
  107. package/webapp-dist/node_modules/source-map/lib/util.js +488 -0
  108. package/webapp-dist/node_modules/source-map/package.json +73 -0
  109. package/webapp-dist/node_modules/source-map/source-map.js +8 -0
  110. package/webapp-dist/node_modules/source-map-support/LICENSE.md +21 -0
  111. package/webapp-dist/node_modules/source-map-support/README.md +284 -0
  112. package/webapp-dist/node_modules/source-map-support/browser-source-map-support.js +114 -0
  113. package/webapp-dist/node_modules/source-map-support/package.json +31 -0
  114. package/webapp-dist/node_modules/source-map-support/register-hook-require.js +1 -0
  115. package/webapp-dist/node_modules/source-map-support/register.js +1 -0
  116. package/webapp-dist/node_modules/source-map-support/source-map-support.js +625 -0
  117. package/webapp-dist/node_modules/styled-jsx/dist/index/index.js +499 -0
  118. package/webapp-dist/node_modules/styled-jsx/index.js +1 -0
  119. package/webapp-dist/node_modules/styled-jsx/package.json +132 -0
  120. package/webapp-dist/node_modules/styled-jsx/style.js +1 -0
  121. package/webapp-dist/node_modules/typescript/lib/_tsc.js +133818 -0
  122. package/webapp-dist/node_modules/typescript/lib/_tsserver.js +659 -0
  123. package/webapp-dist/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  124. package/webapp-dist/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  125. package/webapp-dist/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  126. package/webapp-dist/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  127. package/webapp-dist/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  128. package/webapp-dist/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  129. package/webapp-dist/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  130. package/webapp-dist/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  131. package/webapp-dist/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  132. package/webapp-dist/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  133. package/webapp-dist/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  134. package/webapp-dist/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  135. package/webapp-dist/node_modules/typescript/lib/tsc.js +8 -0
  136. package/webapp-dist/node_modules/typescript/lib/tsserver.js +8 -0
  137. package/webapp-dist/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  138. package/webapp-dist/node_modules/typescript/lib/typesMap.json +497 -0
  139. package/webapp-dist/node_modules/typescript/lib/typescript.js +200276 -0
  140. package/webapp-dist/node_modules/typescript/lib/typingsInstaller.js +8 -0
  141. package/webapp-dist/node_modules/typescript/lib/watchGuard.js +53 -0
  142. package/webapp-dist/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  143. package/webapp-dist/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  144. package/webapp-dist/node_modules/typescript/package.json +120 -0
  145. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_buildManifest.js +0 -0
  146. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_clientMiddlewareManifest.json +0 -0
  147. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_ssgManifest.js +0 -0
@@ -0,0 +1,488 @@
1
+ /* -*- Mode: js; js-indent-level: 2; -*- */
2
+ /*
3
+ * Copyright 2011 Mozilla Foundation and contributors
4
+ * Licensed under the New BSD license. See LICENSE or:
5
+ * http://opensource.org/licenses/BSD-3-Clause
6
+ */
7
+
8
+ /**
9
+ * This is a helper function for getting values from parameter/options
10
+ * objects.
11
+ *
12
+ * @param args The object we are extracting values from
13
+ * @param name The name of the property we are getting.
14
+ * @param defaultValue An optional value to return if the property is missing
15
+ * from the object. If this is not specified and the property is missing, an
16
+ * error will be thrown.
17
+ */
18
+ function getArg(aArgs, aName, aDefaultValue) {
19
+ if (aName in aArgs) {
20
+ return aArgs[aName];
21
+ } else if (arguments.length === 3) {
22
+ return aDefaultValue;
23
+ } else {
24
+ throw new Error('"' + aName + '" is a required argument.');
25
+ }
26
+ }
27
+ exports.getArg = getArg;
28
+
29
+ var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
30
+ var dataUrlRegexp = /^data:.+\,.+$/;
31
+
32
+ function urlParse(aUrl) {
33
+ var match = aUrl.match(urlRegexp);
34
+ if (!match) {
35
+ return null;
36
+ }
37
+ return {
38
+ scheme: match[1],
39
+ auth: match[2],
40
+ host: match[3],
41
+ port: match[4],
42
+ path: match[5]
43
+ };
44
+ }
45
+ exports.urlParse = urlParse;
46
+
47
+ function urlGenerate(aParsedUrl) {
48
+ var url = '';
49
+ if (aParsedUrl.scheme) {
50
+ url += aParsedUrl.scheme + ':';
51
+ }
52
+ url += '//';
53
+ if (aParsedUrl.auth) {
54
+ url += aParsedUrl.auth + '@';
55
+ }
56
+ if (aParsedUrl.host) {
57
+ url += aParsedUrl.host;
58
+ }
59
+ if (aParsedUrl.port) {
60
+ url += ":" + aParsedUrl.port
61
+ }
62
+ if (aParsedUrl.path) {
63
+ url += aParsedUrl.path;
64
+ }
65
+ return url;
66
+ }
67
+ exports.urlGenerate = urlGenerate;
68
+
69
+ /**
70
+ * Normalizes a path, or the path portion of a URL:
71
+ *
72
+ * - Replaces consecutive slashes with one slash.
73
+ * - Removes unnecessary '.' parts.
74
+ * - Removes unnecessary '<dir>/..' parts.
75
+ *
76
+ * Based on code in the Node.js 'path' core module.
77
+ *
78
+ * @param aPath The path or url to normalize.
79
+ */
80
+ function normalize(aPath) {
81
+ var path = aPath;
82
+ var url = urlParse(aPath);
83
+ if (url) {
84
+ if (!url.path) {
85
+ return aPath;
86
+ }
87
+ path = url.path;
88
+ }
89
+ var isAbsolute = exports.isAbsolute(path);
90
+
91
+ var parts = path.split(/\/+/);
92
+ for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
93
+ part = parts[i];
94
+ if (part === '.') {
95
+ parts.splice(i, 1);
96
+ } else if (part === '..') {
97
+ up++;
98
+ } else if (up > 0) {
99
+ if (part === '') {
100
+ // The first part is blank if the path is absolute. Trying to go
101
+ // above the root is a no-op. Therefore we can remove all '..' parts
102
+ // directly after the root.
103
+ parts.splice(i + 1, up);
104
+ up = 0;
105
+ } else {
106
+ parts.splice(i, 2);
107
+ up--;
108
+ }
109
+ }
110
+ }
111
+ path = parts.join('/');
112
+
113
+ if (path === '') {
114
+ path = isAbsolute ? '/' : '.';
115
+ }
116
+
117
+ if (url) {
118
+ url.path = path;
119
+ return urlGenerate(url);
120
+ }
121
+ return path;
122
+ }
123
+ exports.normalize = normalize;
124
+
125
+ /**
126
+ * Joins two paths/URLs.
127
+ *
128
+ * @param aRoot The root path or URL.
129
+ * @param aPath The path or URL to be joined with the root.
130
+ *
131
+ * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a
132
+ * scheme-relative URL: Then the scheme of aRoot, if any, is prepended
133
+ * first.
134
+ * - Otherwise aPath is a path. If aRoot is a URL, then its path portion
135
+ * is updated with the result and aRoot is returned. Otherwise the result
136
+ * is returned.
137
+ * - If aPath is absolute, the result is aPath.
138
+ * - Otherwise the two paths are joined with a slash.
139
+ * - Joining for example 'http://' and 'www.example.com' is also supported.
140
+ */
141
+ function join(aRoot, aPath) {
142
+ if (aRoot === "") {
143
+ aRoot = ".";
144
+ }
145
+ if (aPath === "") {
146
+ aPath = ".";
147
+ }
148
+ var aPathUrl = urlParse(aPath);
149
+ var aRootUrl = urlParse(aRoot);
150
+ if (aRootUrl) {
151
+ aRoot = aRootUrl.path || '/';
152
+ }
153
+
154
+ // `join(foo, '//www.example.org')`
155
+ if (aPathUrl && !aPathUrl.scheme) {
156
+ if (aRootUrl) {
157
+ aPathUrl.scheme = aRootUrl.scheme;
158
+ }
159
+ return urlGenerate(aPathUrl);
160
+ }
161
+
162
+ if (aPathUrl || aPath.match(dataUrlRegexp)) {
163
+ return aPath;
164
+ }
165
+
166
+ // `join('http://', 'www.example.com')`
167
+ if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {
168
+ aRootUrl.host = aPath;
169
+ return urlGenerate(aRootUrl);
170
+ }
171
+
172
+ var joined = aPath.charAt(0) === '/'
173
+ ? aPath
174
+ : normalize(aRoot.replace(/\/+$/, '') + '/' + aPath);
175
+
176
+ if (aRootUrl) {
177
+ aRootUrl.path = joined;
178
+ return urlGenerate(aRootUrl);
179
+ }
180
+ return joined;
181
+ }
182
+ exports.join = join;
183
+
184
+ exports.isAbsolute = function (aPath) {
185
+ return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
186
+ };
187
+
188
+ /**
189
+ * Make a path relative to a URL or another path.
190
+ *
191
+ * @param aRoot The root path or URL.
192
+ * @param aPath The path or URL to be made relative to aRoot.
193
+ */
194
+ function relative(aRoot, aPath) {
195
+ if (aRoot === "") {
196
+ aRoot = ".";
197
+ }
198
+
199
+ aRoot = aRoot.replace(/\/$/, '');
200
+
201
+ // It is possible for the path to be above the root. In this case, simply
202
+ // checking whether the root is a prefix of the path won't work. Instead, we
203
+ // need to remove components from the root one by one, until either we find
204
+ // a prefix that fits, or we run out of components to remove.
205
+ var level = 0;
206
+ while (aPath.indexOf(aRoot + '/') !== 0) {
207
+ var index = aRoot.lastIndexOf("/");
208
+ if (index < 0) {
209
+ return aPath;
210
+ }
211
+
212
+ // If the only part of the root that is left is the scheme (i.e. http://,
213
+ // file:///, etc.), one or more slashes (/), or simply nothing at all, we
214
+ // have exhausted all components, so the path is not relative to the root.
215
+ aRoot = aRoot.slice(0, index);
216
+ if (aRoot.match(/^([^\/]+:\/)?\/*$/)) {
217
+ return aPath;
218
+ }
219
+
220
+ ++level;
221
+ }
222
+
223
+ // Make sure we add a "../" for each component we removed from the root.
224
+ return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
225
+ }
226
+ exports.relative = relative;
227
+
228
+ var supportsNullProto = (function () {
229
+ var obj = Object.create(null);
230
+ return !('__proto__' in obj);
231
+ }());
232
+
233
+ function identity (s) {
234
+ return s;
235
+ }
236
+
237
+ /**
238
+ * Because behavior goes wacky when you set `__proto__` on objects, we
239
+ * have to prefix all the strings in our set with an arbitrary character.
240
+ *
241
+ * See https://github.com/mozilla/source-map/pull/31 and
242
+ * https://github.com/mozilla/source-map/issues/30
243
+ *
244
+ * @param String aStr
245
+ */
246
+ function toSetString(aStr) {
247
+ if (isProtoString(aStr)) {
248
+ return '$' + aStr;
249
+ }
250
+
251
+ return aStr;
252
+ }
253
+ exports.toSetString = supportsNullProto ? identity : toSetString;
254
+
255
+ function fromSetString(aStr) {
256
+ if (isProtoString(aStr)) {
257
+ return aStr.slice(1);
258
+ }
259
+
260
+ return aStr;
261
+ }
262
+ exports.fromSetString = supportsNullProto ? identity : fromSetString;
263
+
264
+ function isProtoString(s) {
265
+ if (!s) {
266
+ return false;
267
+ }
268
+
269
+ var length = s.length;
270
+
271
+ if (length < 9 /* "__proto__".length */) {
272
+ return false;
273
+ }
274
+
275
+ if (s.charCodeAt(length - 1) !== 95 /* '_' */ ||
276
+ s.charCodeAt(length - 2) !== 95 /* '_' */ ||
277
+ s.charCodeAt(length - 3) !== 111 /* 'o' */ ||
278
+ s.charCodeAt(length - 4) !== 116 /* 't' */ ||
279
+ s.charCodeAt(length - 5) !== 111 /* 'o' */ ||
280
+ s.charCodeAt(length - 6) !== 114 /* 'r' */ ||
281
+ s.charCodeAt(length - 7) !== 112 /* 'p' */ ||
282
+ s.charCodeAt(length - 8) !== 95 /* '_' */ ||
283
+ s.charCodeAt(length - 9) !== 95 /* '_' */) {
284
+ return false;
285
+ }
286
+
287
+ for (var i = length - 10; i >= 0; i--) {
288
+ if (s.charCodeAt(i) !== 36 /* '$' */) {
289
+ return false;
290
+ }
291
+ }
292
+
293
+ return true;
294
+ }
295
+
296
+ /**
297
+ * Comparator between two mappings where the original positions are compared.
298
+ *
299
+ * Optionally pass in `true` as `onlyCompareGenerated` to consider two
300
+ * mappings with the same original source/line/column, but different generated
301
+ * line and column the same. Useful when searching for a mapping with a
302
+ * stubbed out mapping.
303
+ */
304
+ function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {
305
+ var cmp = strcmp(mappingA.source, mappingB.source);
306
+ if (cmp !== 0) {
307
+ return cmp;
308
+ }
309
+
310
+ cmp = mappingA.originalLine - mappingB.originalLine;
311
+ if (cmp !== 0) {
312
+ return cmp;
313
+ }
314
+
315
+ cmp = mappingA.originalColumn - mappingB.originalColumn;
316
+ if (cmp !== 0 || onlyCompareOriginal) {
317
+ return cmp;
318
+ }
319
+
320
+ cmp = mappingA.generatedColumn - mappingB.generatedColumn;
321
+ if (cmp !== 0) {
322
+ return cmp;
323
+ }
324
+
325
+ cmp = mappingA.generatedLine - mappingB.generatedLine;
326
+ if (cmp !== 0) {
327
+ return cmp;
328
+ }
329
+
330
+ return strcmp(mappingA.name, mappingB.name);
331
+ }
332
+ exports.compareByOriginalPositions = compareByOriginalPositions;
333
+
334
+ /**
335
+ * Comparator between two mappings with deflated source and name indices where
336
+ * the generated positions are compared.
337
+ *
338
+ * Optionally pass in `true` as `onlyCompareGenerated` to consider two
339
+ * mappings with the same generated line and column, but different
340
+ * source/name/original line and column the same. Useful when searching for a
341
+ * mapping with a stubbed out mapping.
342
+ */
343
+ function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
344
+ var cmp = mappingA.generatedLine - mappingB.generatedLine;
345
+ if (cmp !== 0) {
346
+ return cmp;
347
+ }
348
+
349
+ cmp = mappingA.generatedColumn - mappingB.generatedColumn;
350
+ if (cmp !== 0 || onlyCompareGenerated) {
351
+ return cmp;
352
+ }
353
+
354
+ cmp = strcmp(mappingA.source, mappingB.source);
355
+ if (cmp !== 0) {
356
+ return cmp;
357
+ }
358
+
359
+ cmp = mappingA.originalLine - mappingB.originalLine;
360
+ if (cmp !== 0) {
361
+ return cmp;
362
+ }
363
+
364
+ cmp = mappingA.originalColumn - mappingB.originalColumn;
365
+ if (cmp !== 0) {
366
+ return cmp;
367
+ }
368
+
369
+ return strcmp(mappingA.name, mappingB.name);
370
+ }
371
+ exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
372
+
373
+ function strcmp(aStr1, aStr2) {
374
+ if (aStr1 === aStr2) {
375
+ return 0;
376
+ }
377
+
378
+ if (aStr1 === null) {
379
+ return 1; // aStr2 !== null
380
+ }
381
+
382
+ if (aStr2 === null) {
383
+ return -1; // aStr1 !== null
384
+ }
385
+
386
+ if (aStr1 > aStr2) {
387
+ return 1;
388
+ }
389
+
390
+ return -1;
391
+ }
392
+
393
+ /**
394
+ * Comparator between two mappings with inflated source and name strings where
395
+ * the generated positions are compared.
396
+ */
397
+ function compareByGeneratedPositionsInflated(mappingA, mappingB) {
398
+ var cmp = mappingA.generatedLine - mappingB.generatedLine;
399
+ if (cmp !== 0) {
400
+ return cmp;
401
+ }
402
+
403
+ cmp = mappingA.generatedColumn - mappingB.generatedColumn;
404
+ if (cmp !== 0) {
405
+ return cmp;
406
+ }
407
+
408
+ cmp = strcmp(mappingA.source, mappingB.source);
409
+ if (cmp !== 0) {
410
+ return cmp;
411
+ }
412
+
413
+ cmp = mappingA.originalLine - mappingB.originalLine;
414
+ if (cmp !== 0) {
415
+ return cmp;
416
+ }
417
+
418
+ cmp = mappingA.originalColumn - mappingB.originalColumn;
419
+ if (cmp !== 0) {
420
+ return cmp;
421
+ }
422
+
423
+ return strcmp(mappingA.name, mappingB.name);
424
+ }
425
+ exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
426
+
427
+ /**
428
+ * Strip any JSON XSSI avoidance prefix from the string (as documented
429
+ * in the source maps specification), and then parse the string as
430
+ * JSON.
431
+ */
432
+ function parseSourceMapInput(str) {
433
+ return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
434
+ }
435
+ exports.parseSourceMapInput = parseSourceMapInput;
436
+
437
+ /**
438
+ * Compute the URL of a source given the the source root, the source's
439
+ * URL, and the source map's URL.
440
+ */
441
+ function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
442
+ sourceURL = sourceURL || '';
443
+
444
+ if (sourceRoot) {
445
+ // This follows what Chrome does.
446
+ if (sourceRoot[sourceRoot.length - 1] !== '/' && sourceURL[0] !== '/') {
447
+ sourceRoot += '/';
448
+ }
449
+ // The spec says:
450
+ // Line 4: An optional source root, useful for relocating source
451
+ // files on a server or removing repeated values in the
452
+ // “sources” entry. This value is prepended to the individual
453
+ // entries in the “source” field.
454
+ sourceURL = sourceRoot + sourceURL;
455
+ }
456
+
457
+ // Historically, SourceMapConsumer did not take the sourceMapURL as
458
+ // a parameter. This mode is still somewhat supported, which is why
459
+ // this code block is conditional. However, it's preferable to pass
460
+ // the source map URL to SourceMapConsumer, so that this function
461
+ // can implement the source URL resolution algorithm as outlined in
462
+ // the spec. This block is basically the equivalent of:
463
+ // new URL(sourceURL, sourceMapURL).toString()
464
+ // ... except it avoids using URL, which wasn't available in the
465
+ // older releases of node still supported by this library.
466
+ //
467
+ // The spec says:
468
+ // If the sources are not absolute URLs after prepending of the
469
+ // “sourceRoot”, the sources are resolved relative to the
470
+ // SourceMap (like resolving script src in a html document).
471
+ if (sourceMapURL) {
472
+ var parsed = urlParse(sourceMapURL);
473
+ if (!parsed) {
474
+ throw new Error("sourceMapURL could not be parsed");
475
+ }
476
+ if (parsed.path) {
477
+ // Strip the last path component, but keep the "/".
478
+ var index = parsed.path.lastIndexOf('/');
479
+ if (index >= 0) {
480
+ parsed.path = parsed.path.substring(0, index + 1);
481
+ }
482
+ }
483
+ sourceURL = join(urlGenerate(parsed), sourceURL);
484
+ }
485
+
486
+ return normalize(sourceURL);
487
+ }
488
+ exports.computeSourceURL = computeSourceURL;
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "source-map",
3
+ "description": "Generates and consumes source maps",
4
+ "version": "0.6.1",
5
+ "homepage": "https://github.com/mozilla/source-map",
6
+ "author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
7
+ "contributors": [
8
+ "Tobias Koppers <tobias.koppers@googlemail.com>",
9
+ "Duncan Beevers <duncan@dweebd.com>",
10
+ "Stephen Crane <scrane@mozilla.com>",
11
+ "Ryan Seddon <seddon.ryan@gmail.com>",
12
+ "Miles Elam <miles.elam@deem.com>",
13
+ "Mihai Bazon <mihai.bazon@gmail.com>",
14
+ "Michael Ficarra <github.public.email@michael.ficarra.me>",
15
+ "Todd Wolfson <todd@twolfson.com>",
16
+ "Alexander Solovyov <alexander@solovyov.net>",
17
+ "Felix Gnass <fgnass@gmail.com>",
18
+ "Conrad Irwin <conrad.irwin@gmail.com>",
19
+ "usrbincc <usrbincc@yahoo.com>",
20
+ "David Glasser <glasser@davidglasser.net>",
21
+ "Chase Douglas <chase@newrelic.com>",
22
+ "Evan Wallace <evan.exe@gmail.com>",
23
+ "Heather Arthur <fayearthur@gmail.com>",
24
+ "Hugh Kennedy <hughskennedy@gmail.com>",
25
+ "David Glasser <glasser@davidglasser.net>",
26
+ "Simon Lydell <simon.lydell@gmail.com>",
27
+ "Jmeas Smith <jellyes2@gmail.com>",
28
+ "Michael Z Goddard <mzgoddard@gmail.com>",
29
+ "azu <azu@users.noreply.github.com>",
30
+ "John Gozde <john@gozde.ca>",
31
+ "Adam Kirkton <akirkton@truefitinnovation.com>",
32
+ "Chris Montgomery <christopher.montgomery@dowjones.com>",
33
+ "J. Ryan Stinnett <jryans@gmail.com>",
34
+ "Jack Herrington <jherrington@walmartlabs.com>",
35
+ "Chris Truter <jeffpalentine@gmail.com>",
36
+ "Daniel Espeset <daniel@danielespeset.com>",
37
+ "Jamie Wong <jamie.lf.wong@gmail.com>",
38
+ "Eddy Bruël <ejpbruel@mozilla.com>",
39
+ "Hawken Rives <hawkrives@gmail.com>",
40
+ "Gilad Peleg <giladp007@gmail.com>",
41
+ "djchie <djchie.dev@gmail.com>",
42
+ "Gary Ye <garysye@gmail.com>",
43
+ "Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
44
+ ],
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "http://github.com/mozilla/source-map.git"
48
+ },
49
+ "main": "./source-map.js",
50
+ "files": [
51
+ "source-map.js",
52
+ "source-map.d.ts",
53
+ "lib/",
54
+ "dist/source-map.debug.js",
55
+ "dist/source-map.js",
56
+ "dist/source-map.min.js",
57
+ "dist/source-map.min.js.map"
58
+ ],
59
+ "engines": {
60
+ "node": ">=0.10.0"
61
+ },
62
+ "license": "BSD-3-Clause",
63
+ "scripts": {
64
+ "test": "npm run build && node test/run-tests.js",
65
+ "build": "webpack --color",
66
+ "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
67
+ },
68
+ "devDependencies": {
69
+ "doctoc": "^0.15.0",
70
+ "webpack": "^1.12.0"
71
+ },
72
+ "typings": "source-map"
73
+ }
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Copyright 2009-2011 Mozilla Foundation and contributors
3
+ * Licensed under the New BSD license. See LICENSE.txt or:
4
+ * http://opensource.org/licenses/BSD-3-Clause
5
+ */
6
+ exports.SourceMapGenerator = require('./lib/source-map-generator').SourceMapGenerator;
7
+ exports.SourceMapConsumer = require('./lib/source-map-consumer').SourceMapConsumer;
8
+ exports.SourceNode = require('./lib/source-node').SourceNode;
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Evan Wallace
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.