koa-classic-server 1.0.0

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 (1121) hide show
  1. package/.vscode/settings.json +0 -0
  2. package/Readme.md +102 -0
  3. package/index.js +272 -0
  4. package/package.json +20 -0
  5. package/test/node_modules/.package-lock.json +1254 -0
  6. package/test/node_modules/abbrev/LICENSE +46 -0
  7. package/test/node_modules/abbrev/README.md +23 -0
  8. package/test/node_modules/abbrev/abbrev.js +61 -0
  9. package/test/node_modules/abbrev/package.json +21 -0
  10. package/test/node_modules/accepts/HISTORY.md +243 -0
  11. package/test/node_modules/accepts/LICENSE +23 -0
  12. package/test/node_modules/accepts/README.md +140 -0
  13. package/test/node_modules/accepts/index.js +238 -0
  14. package/test/node_modules/accepts/package.json +47 -0
  15. package/test/node_modules/ansi-styles/index.d.ts +345 -0
  16. package/test/node_modules/ansi-styles/index.js +163 -0
  17. package/test/node_modules/ansi-styles/license +9 -0
  18. package/test/node_modules/ansi-styles/package.json +56 -0
  19. package/test/node_modules/ansi-styles/readme.md +152 -0
  20. package/test/node_modules/any-promise/.jshintrc +4 -0
  21. package/test/node_modules/any-promise/LICENSE +19 -0
  22. package/test/node_modules/any-promise/README.md +161 -0
  23. package/test/node_modules/any-promise/implementation.d.ts +3 -0
  24. package/test/node_modules/any-promise/implementation.js +1 -0
  25. package/test/node_modules/any-promise/index.d.ts +73 -0
  26. package/test/node_modules/any-promise/index.js +1 -0
  27. package/test/node_modules/any-promise/loader.js +78 -0
  28. package/test/node_modules/any-promise/optional.js +6 -0
  29. package/test/node_modules/any-promise/package.json +45 -0
  30. package/test/node_modules/any-promise/register/bluebird.d.ts +1 -0
  31. package/test/node_modules/any-promise/register/bluebird.js +2 -0
  32. package/test/node_modules/any-promise/register/es6-promise.d.ts +1 -0
  33. package/test/node_modules/any-promise/register/es6-promise.js +2 -0
  34. package/test/node_modules/any-promise/register/lie.d.ts +1 -0
  35. package/test/node_modules/any-promise/register/lie.js +2 -0
  36. package/test/node_modules/any-promise/register/native-promise-only.d.ts +1 -0
  37. package/test/node_modules/any-promise/register/native-promise-only.js +2 -0
  38. package/test/node_modules/any-promise/register/pinkie.d.ts +1 -0
  39. package/test/node_modules/any-promise/register/pinkie.js +2 -0
  40. package/test/node_modules/any-promise/register/promise.d.ts +1 -0
  41. package/test/node_modules/any-promise/register/promise.js +2 -0
  42. package/test/node_modules/any-promise/register/q.d.ts +1 -0
  43. package/test/node_modules/any-promise/register/q.js +2 -0
  44. package/test/node_modules/any-promise/register/rsvp.d.ts +1 -0
  45. package/test/node_modules/any-promise/register/rsvp.js +2 -0
  46. package/test/node_modules/any-promise/register/vow.d.ts +1 -0
  47. package/test/node_modules/any-promise/register/vow.js +2 -0
  48. package/test/node_modules/any-promise/register/when.d.ts +1 -0
  49. package/test/node_modules/any-promise/register/when.js +2 -0
  50. package/test/node_modules/any-promise/register-shim.js +18 -0
  51. package/test/node_modules/any-promise/register.d.ts +17 -0
  52. package/test/node_modules/any-promise/register.js +94 -0
  53. package/test/node_modules/anymatch/LICENSE +15 -0
  54. package/test/node_modules/anymatch/README.md +87 -0
  55. package/test/node_modules/anymatch/index.d.ts +20 -0
  56. package/test/node_modules/anymatch/index.js +104 -0
  57. package/test/node_modules/anymatch/package.json +48 -0
  58. package/test/node_modules/async/CHANGELOG.md +348 -0
  59. package/test/node_modules/async/LICENSE +19 -0
  60. package/test/node_modules/async/README.md +59 -0
  61. package/test/node_modules/async/all.js +119 -0
  62. package/test/node_modules/async/allLimit.js +46 -0
  63. package/test/node_modules/async/allSeries.js +45 -0
  64. package/test/node_modules/async/any.js +122 -0
  65. package/test/node_modules/async/anyLimit.js +47 -0
  66. package/test/node_modules/async/anySeries.js +46 -0
  67. package/test/node_modules/async/apply.js +55 -0
  68. package/test/node_modules/async/applyEach.js +57 -0
  69. package/test/node_modules/async/applyEachSeries.js +37 -0
  70. package/test/node_modules/async/asyncify.js +118 -0
  71. package/test/node_modules/async/auto.js +333 -0
  72. package/test/node_modules/async/autoInject.js +182 -0
  73. package/test/node_modules/async/bower.json +17 -0
  74. package/test/node_modules/async/cargo.js +63 -0
  75. package/test/node_modules/async/cargoQueue.js +71 -0
  76. package/test/node_modules/async/compose.js +55 -0
  77. package/test/node_modules/async/concat.js +115 -0
  78. package/test/node_modules/async/concatLimit.js +60 -0
  79. package/test/node_modules/async/concatSeries.js +41 -0
  80. package/test/node_modules/async/constant.js +55 -0
  81. package/test/node_modules/async/detect.js +96 -0
  82. package/test/node_modules/async/detectLimit.js +48 -0
  83. package/test/node_modules/async/detectSeries.js +47 -0
  84. package/test/node_modules/async/dir.js +43 -0
  85. package/test/node_modules/async/dist/async.js +6059 -0
  86. package/test/node_modules/async/dist/async.min.js +1 -0
  87. package/test/node_modules/async/dist/async.mjs +5947 -0
  88. package/test/node_modules/async/doDuring.js +68 -0
  89. package/test/node_modules/async/doUntil.js +46 -0
  90. package/test/node_modules/async/doWhilst.js +68 -0
  91. package/test/node_modules/async/during.js +78 -0
  92. package/test/node_modules/async/each.js +129 -0
  93. package/test/node_modules/async/eachLimit.js +50 -0
  94. package/test/node_modules/async/eachOf.js +185 -0
  95. package/test/node_modules/async/eachOfLimit.js +47 -0
  96. package/test/node_modules/async/eachOfSeries.js +39 -0
  97. package/test/node_modules/async/eachSeries.js +44 -0
  98. package/test/node_modules/async/ensureAsync.js +67 -0
  99. package/test/node_modules/async/every.js +119 -0
  100. package/test/node_modules/async/everyLimit.js +46 -0
  101. package/test/node_modules/async/everySeries.js +45 -0
  102. package/test/node_modules/async/filter.js +93 -0
  103. package/test/node_modules/async/filterLimit.js +45 -0
  104. package/test/node_modules/async/filterSeries.js +43 -0
  105. package/test/node_modules/async/find.js +96 -0
  106. package/test/node_modules/async/findLimit.js +48 -0
  107. package/test/node_modules/async/findSeries.js +47 -0
  108. package/test/node_modules/async/flatMap.js +115 -0
  109. package/test/node_modules/async/flatMapLimit.js +60 -0
  110. package/test/node_modules/async/flatMapSeries.js +41 -0
  111. package/test/node_modules/async/foldl.js +153 -0
  112. package/test/node_modules/async/foldr.js +41 -0
  113. package/test/node_modules/async/forEach.js +129 -0
  114. package/test/node_modules/async/forEachLimit.js +50 -0
  115. package/test/node_modules/async/forEachOf.js +185 -0
  116. package/test/node_modules/async/forEachOfLimit.js +47 -0
  117. package/test/node_modules/async/forEachOfSeries.js +39 -0
  118. package/test/node_modules/async/forEachSeries.js +44 -0
  119. package/test/node_modules/async/forever.js +68 -0
  120. package/test/node_modules/async/groupBy.js +108 -0
  121. package/test/node_modules/async/groupByLimit.js +71 -0
  122. package/test/node_modules/async/groupBySeries.js +36 -0
  123. package/test/node_modules/async/index.js +588 -0
  124. package/test/node_modules/async/inject.js +153 -0
  125. package/test/node_modules/async/internal/DoublyLinkedList.js +92 -0
  126. package/test/node_modules/async/internal/Heap.js +120 -0
  127. package/test/node_modules/async/internal/applyEach.js +29 -0
  128. package/test/node_modules/async/internal/asyncEachOfLimit.js +75 -0
  129. package/test/node_modules/async/internal/awaitify.js +27 -0
  130. package/test/node_modules/async/internal/breakLoop.js +10 -0
  131. package/test/node_modules/async/internal/consoleFunc.js +31 -0
  132. package/test/node_modules/async/internal/createTester.js +40 -0
  133. package/test/node_modules/async/internal/eachOfLimit.js +90 -0
  134. package/test/node_modules/async/internal/filter.js +55 -0
  135. package/test/node_modules/async/internal/getIterator.js +11 -0
  136. package/test/node_modules/async/internal/initialParams.js +14 -0
  137. package/test/node_modules/async/internal/isArrayLike.js +10 -0
  138. package/test/node_modules/async/internal/iterator.js +57 -0
  139. package/test/node_modules/async/internal/map.js +30 -0
  140. package/test/node_modules/async/internal/once.js +17 -0
  141. package/test/node_modules/async/internal/onlyOnce.js +15 -0
  142. package/test/node_modules/async/internal/parallel.js +34 -0
  143. package/test/node_modules/async/internal/promiseCallback.js +23 -0
  144. package/test/node_modules/async/internal/queue.js +294 -0
  145. package/test/node_modules/async/internal/range.js +14 -0
  146. package/test/node_modules/async/internal/reject.js +26 -0
  147. package/test/node_modules/async/internal/setImmediate.js +34 -0
  148. package/test/node_modules/async/internal/withoutIndex.js +10 -0
  149. package/test/node_modules/async/internal/wrapAsync.js +34 -0
  150. package/test/node_modules/async/log.js +41 -0
  151. package/test/node_modules/async/map.js +142 -0
  152. package/test/node_modules/async/mapLimit.js +45 -0
  153. package/test/node_modules/async/mapSeries.js +44 -0
  154. package/test/node_modules/async/mapValues.js +152 -0
  155. package/test/node_modules/async/mapValuesLimit.js +61 -0
  156. package/test/node_modules/async/mapValuesSeries.js +37 -0
  157. package/test/node_modules/async/memoize.js +91 -0
  158. package/test/node_modules/async/nextTick.js +52 -0
  159. package/test/node_modules/async/package.json +75 -0
  160. package/test/node_modules/async/parallel.js +180 -0
  161. package/test/node_modules/async/parallelLimit.js +41 -0
  162. package/test/node_modules/async/priorityQueue.js +86 -0
  163. package/test/node_modules/async/queue.js +167 -0
  164. package/test/node_modules/async/race.js +67 -0
  165. package/test/node_modules/async/reduce.js +153 -0
  166. package/test/node_modules/async/reduceRight.js +41 -0
  167. package/test/node_modules/async/reflect.js +78 -0
  168. package/test/node_modules/async/reflectAll.js +93 -0
  169. package/test/node_modules/async/reject.js +87 -0
  170. package/test/node_modules/async/rejectLimit.js +45 -0
  171. package/test/node_modules/async/rejectSeries.js +43 -0
  172. package/test/node_modules/async/retry.js +159 -0
  173. package/test/node_modules/async/retryable.js +77 -0
  174. package/test/node_modules/async/select.js +93 -0
  175. package/test/node_modules/async/selectLimit.js +45 -0
  176. package/test/node_modules/async/selectSeries.js +43 -0
  177. package/test/node_modules/async/seq.js +79 -0
  178. package/test/node_modules/async/series.js +186 -0
  179. package/test/node_modules/async/setImmediate.js +45 -0
  180. package/test/node_modules/async/some.js +122 -0
  181. package/test/node_modules/async/someLimit.js +47 -0
  182. package/test/node_modules/async/someSeries.js +46 -0
  183. package/test/node_modules/async/sortBy.js +190 -0
  184. package/test/node_modules/async/timeout.js +89 -0
  185. package/test/node_modules/async/times.js +50 -0
  186. package/test/node_modules/async/timesLimit.js +43 -0
  187. package/test/node_modules/async/timesSeries.js +32 -0
  188. package/test/node_modules/async/transform.js +173 -0
  189. package/test/node_modules/async/tryEach.js +78 -0
  190. package/test/node_modules/async/unmemoize.js +25 -0
  191. package/test/node_modules/async/until.js +61 -0
  192. package/test/node_modules/async/waterfall.js +105 -0
  193. package/test/node_modules/async/whilst.js +78 -0
  194. package/test/node_modules/async/wrapSync.js +118 -0
  195. package/test/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  196. package/test/node_modules/balanced-match/LICENSE.md +21 -0
  197. package/test/node_modules/balanced-match/README.md +97 -0
  198. package/test/node_modules/balanced-match/index.js +62 -0
  199. package/test/node_modules/balanced-match/package.json +48 -0
  200. package/test/node_modules/binary-extensions/binary-extensions.json +260 -0
  201. package/test/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  202. package/test/node_modules/binary-extensions/index.d.ts +14 -0
  203. package/test/node_modules/binary-extensions/index.js +1 -0
  204. package/test/node_modules/binary-extensions/license +9 -0
  205. package/test/node_modules/binary-extensions/package.json +38 -0
  206. package/test/node_modules/binary-extensions/readme.md +41 -0
  207. package/test/node_modules/bluebird/LICENSE +21 -0
  208. package/test/node_modules/bluebird/README.md +57 -0
  209. package/test/node_modules/bluebird/changelog.md +1 -0
  210. package/test/node_modules/bluebird/js/browser/bluebird.core.js +3914 -0
  211. package/test/node_modules/bluebird/js/browser/bluebird.core.min.js +31 -0
  212. package/test/node_modules/bluebird/js/browser/bluebird.js +5778 -0
  213. package/test/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
  214. package/test/node_modules/bluebird/js/release/any.js +21 -0
  215. package/test/node_modules/bluebird/js/release/assert.js +55 -0
  216. package/test/node_modules/bluebird/js/release/async.js +120 -0
  217. package/test/node_modules/bluebird/js/release/bind.js +67 -0
  218. package/test/node_modules/bluebird/js/release/bluebird.js +11 -0
  219. package/test/node_modules/bluebird/js/release/call_get.js +123 -0
  220. package/test/node_modules/bluebird/js/release/cancel.js +129 -0
  221. package/test/node_modules/bluebird/js/release/catch_filter.js +42 -0
  222. package/test/node_modules/bluebird/js/release/context.js +69 -0
  223. package/test/node_modules/bluebird/js/release/debuggability.js +1009 -0
  224. package/test/node_modules/bluebird/js/release/direct_resolve.js +46 -0
  225. package/test/node_modules/bluebird/js/release/each.js +30 -0
  226. package/test/node_modules/bluebird/js/release/errors.js +116 -0
  227. package/test/node_modules/bluebird/js/release/es5.js +80 -0
  228. package/test/node_modules/bluebird/js/release/filter.js +12 -0
  229. package/test/node_modules/bluebird/js/release/finally.js +146 -0
  230. package/test/node_modules/bluebird/js/release/generators.js +223 -0
  231. package/test/node_modules/bluebird/js/release/join.js +165 -0
  232. package/test/node_modules/bluebird/js/release/map.js +175 -0
  233. package/test/node_modules/bluebird/js/release/method.js +55 -0
  234. package/test/node_modules/bluebird/js/release/nodeback.js +51 -0
  235. package/test/node_modules/bluebird/js/release/nodeify.js +58 -0
  236. package/test/node_modules/bluebird/js/release/promise.js +819 -0
  237. package/test/node_modules/bluebird/js/release/promise_array.js +186 -0
  238. package/test/node_modules/bluebird/js/release/promisify.js +314 -0
  239. package/test/node_modules/bluebird/js/release/props.js +118 -0
  240. package/test/node_modules/bluebird/js/release/queue.js +73 -0
  241. package/test/node_modules/bluebird/js/release/race.js +49 -0
  242. package/test/node_modules/bluebird/js/release/reduce.js +183 -0
  243. package/test/node_modules/bluebird/js/release/schedule.js +62 -0
  244. package/test/node_modules/bluebird/js/release/settle.js +47 -0
  245. package/test/node_modules/bluebird/js/release/some.js +148 -0
  246. package/test/node_modules/bluebird/js/release/synchronous_inspection.js +103 -0
  247. package/test/node_modules/bluebird/js/release/thenables.js +86 -0
  248. package/test/node_modules/bluebird/js/release/timers.js +93 -0
  249. package/test/node_modules/bluebird/js/release/using.js +226 -0
  250. package/test/node_modules/bluebird/js/release/util.js +421 -0
  251. package/test/node_modules/bluebird/package.json +78 -0
  252. package/test/node_modules/brace-expansion/LICENSE +21 -0
  253. package/test/node_modules/brace-expansion/README.md +129 -0
  254. package/test/node_modules/brace-expansion/index.js +201 -0
  255. package/test/node_modules/brace-expansion/package.json +47 -0
  256. package/test/node_modules/braces/CHANGELOG.md +184 -0
  257. package/test/node_modules/braces/LICENSE +21 -0
  258. package/test/node_modules/braces/README.md +593 -0
  259. package/test/node_modules/braces/index.js +170 -0
  260. package/test/node_modules/braces/lib/compile.js +57 -0
  261. package/test/node_modules/braces/lib/constants.js +57 -0
  262. package/test/node_modules/braces/lib/expand.js +113 -0
  263. package/test/node_modules/braces/lib/parse.js +333 -0
  264. package/test/node_modules/braces/lib/stringify.js +32 -0
  265. package/test/node_modules/braces/lib/utils.js +112 -0
  266. package/test/node_modules/braces/package.json +77 -0
  267. package/test/node_modules/cache-content-type/History.md +15 -0
  268. package/test/node_modules/cache-content-type/README.md +17 -0
  269. package/test/node_modules/cache-content-type/index.js +15 -0
  270. package/test/node_modules/cache-content-type/package.json +42 -0
  271. package/test/node_modules/chalk/index.d.ts +415 -0
  272. package/test/node_modules/chalk/license +9 -0
  273. package/test/node_modules/chalk/package.json +68 -0
  274. package/test/node_modules/chalk/readme.md +341 -0
  275. package/test/node_modules/chalk/source/index.js +229 -0
  276. package/test/node_modules/chalk/source/templates.js +134 -0
  277. package/test/node_modules/chalk/source/util.js +39 -0
  278. package/test/node_modules/chokidar/LICENSE +21 -0
  279. package/test/node_modules/chokidar/README.md +308 -0
  280. package/test/node_modules/chokidar/index.js +973 -0
  281. package/test/node_modules/chokidar/lib/constants.js +65 -0
  282. package/test/node_modules/chokidar/lib/fsevents-handler.js +524 -0
  283. package/test/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  284. package/test/node_modules/chokidar/package.json +85 -0
  285. package/test/node_modules/chokidar/types/index.d.ts +188 -0
  286. package/test/node_modules/co/History.md +172 -0
  287. package/test/node_modules/co/LICENSE +22 -0
  288. package/test/node_modules/co/Readme.md +212 -0
  289. package/test/node_modules/co/index.js +237 -0
  290. package/test/node_modules/co/package.json +34 -0
  291. package/test/node_modules/color-convert/CHANGELOG.md +54 -0
  292. package/test/node_modules/color-convert/LICENSE +21 -0
  293. package/test/node_modules/color-convert/README.md +68 -0
  294. package/test/node_modules/color-convert/conversions.js +839 -0
  295. package/test/node_modules/color-convert/index.js +81 -0
  296. package/test/node_modules/color-convert/package.json +48 -0
  297. package/test/node_modules/color-convert/route.js +97 -0
  298. package/test/node_modules/color-name/LICENSE +8 -0
  299. package/test/node_modules/color-name/README.md +11 -0
  300. package/test/node_modules/color-name/index.js +152 -0
  301. package/test/node_modules/color-name/package.json +28 -0
  302. package/test/node_modules/commander/CHANGELOG.md +419 -0
  303. package/test/node_modules/commander/LICENSE +22 -0
  304. package/test/node_modules/commander/Readme.md +428 -0
  305. package/test/node_modules/commander/index.js +1224 -0
  306. package/test/node_modules/commander/package.json +38 -0
  307. package/test/node_modules/commander/typings/index.d.ts +310 -0
  308. package/test/node_modules/concat-map/.travis.yml +4 -0
  309. package/test/node_modules/concat-map/LICENSE +18 -0
  310. package/test/node_modules/concat-map/README.markdown +62 -0
  311. package/test/node_modules/concat-map/example/map.js +6 -0
  312. package/test/node_modules/concat-map/index.js +13 -0
  313. package/test/node_modules/concat-map/package.json +43 -0
  314. package/test/node_modules/concat-map/test/map.js +39 -0
  315. package/test/node_modules/condense-newlines/LICENSE +21 -0
  316. package/test/node_modules/condense-newlines/README.md +105 -0
  317. package/test/node_modules/condense-newlines/index.js +60 -0
  318. package/test/node_modules/condense-newlines/package.json +64 -0
  319. package/test/node_modules/config-chain/LICENCE +22 -0
  320. package/test/node_modules/config-chain/index.js +282 -0
  321. package/test/node_modules/config-chain/package.json +28 -0
  322. package/test/node_modules/config-chain/readme.markdown +257 -0
  323. package/test/node_modules/consolidate/History.md +132 -0
  324. package/test/node_modules/consolidate/Readme.md +223 -0
  325. package/test/node_modules/consolidate/index.js +1 -0
  326. package/test/node_modules/consolidate/lib/consolidate.js +1792 -0
  327. package/test/node_modules/consolidate/package.json +94 -0
  328. package/test/node_modules/content-disposition/HISTORY.md +60 -0
  329. package/test/node_modules/content-disposition/LICENSE +22 -0
  330. package/test/node_modules/content-disposition/README.md +142 -0
  331. package/test/node_modules/content-disposition/index.js +458 -0
  332. package/test/node_modules/content-disposition/package.json +44 -0
  333. package/test/node_modules/content-type/HISTORY.md +24 -0
  334. package/test/node_modules/content-type/LICENSE +22 -0
  335. package/test/node_modules/content-type/README.md +92 -0
  336. package/test/node_modules/content-type/index.js +222 -0
  337. package/test/node_modules/content-type/package.json +40 -0
  338. package/test/node_modules/cookies/HISTORY.md +121 -0
  339. package/test/node_modules/cookies/LICENSE +23 -0
  340. package/test/node_modules/cookies/README.md +145 -0
  341. package/test/node_modules/cookies/index.js +224 -0
  342. package/test/node_modules/cookies/package.json +38 -0
  343. package/test/node_modules/debug/LICENSE +20 -0
  344. package/test/node_modules/debug/README.md +481 -0
  345. package/test/node_modules/debug/package.json +59 -0
  346. package/test/node_modules/debug/src/browser.js +269 -0
  347. package/test/node_modules/debug/src/common.js +274 -0
  348. package/test/node_modules/debug/src/index.js +10 -0
  349. package/test/node_modules/debug/src/node.js +263 -0
  350. package/test/node_modules/deep-equal/.travis.yml +8 -0
  351. package/test/node_modules/deep-equal/LICENSE +18 -0
  352. package/test/node_modules/deep-equal/example/cmp.js +11 -0
  353. package/test/node_modules/deep-equal/index.js +94 -0
  354. package/test/node_modules/deep-equal/lib/is_arguments.js +20 -0
  355. package/test/node_modules/deep-equal/lib/keys.js +9 -0
  356. package/test/node_modules/deep-equal/package.json +58 -0
  357. package/test/node_modules/deep-equal/readme.markdown +61 -0
  358. package/test/node_modules/deep-equal/test/cmp.js +95 -0
  359. package/test/node_modules/delegates/History.md +22 -0
  360. package/test/node_modules/delegates/License +20 -0
  361. package/test/node_modules/delegates/Makefile +8 -0
  362. package/test/node_modules/delegates/Readme.md +94 -0
  363. package/test/node_modules/delegates/index.js +121 -0
  364. package/test/node_modules/delegates/package.json +13 -0
  365. package/test/node_modules/delegates/test/index.js +94 -0
  366. package/test/node_modules/depd/History.md +103 -0
  367. package/test/node_modules/depd/LICENSE +22 -0
  368. package/test/node_modules/depd/Readme.md +280 -0
  369. package/test/node_modules/depd/index.js +538 -0
  370. package/test/node_modules/depd/lib/browser/index.js +77 -0
  371. package/test/node_modules/depd/package.json +45 -0
  372. package/test/node_modules/destroy/LICENSE +23 -0
  373. package/test/node_modules/destroy/README.md +63 -0
  374. package/test/node_modules/destroy/index.js +209 -0
  375. package/test/node_modules/destroy/package.json +48 -0
  376. package/test/node_modules/editorconfig/CHANGELOG.md +14 -0
  377. package/test/node_modules/editorconfig/LICENSE +19 -0
  378. package/test/node_modules/editorconfig/README.md +206 -0
  379. package/test/node_modules/editorconfig/bin/editorconfig +3 -0
  380. package/test/node_modules/editorconfig/package.json +59 -0
  381. package/test/node_modules/editorconfig/src/cli.d.ts +1 -0
  382. package/test/node_modules/editorconfig/src/cli.js +53 -0
  383. package/test/node_modules/editorconfig/src/index.d.ts +29 -0
  384. package/test/node_modules/editorconfig/src/index.js +261 -0
  385. package/test/node_modules/editorconfig/src/lib/fnmatch.d.ts +214 -0
  386. package/test/node_modules/editorconfig/src/lib/fnmatch.js +1047 -0
  387. package/test/node_modules/editorconfig/src/lib/ini.d.ts +14 -0
  388. package/test/node_modules/editorconfig/src/lib/ini.js +106 -0
  389. package/test/node_modules/ee-first/LICENSE +22 -0
  390. package/test/node_modules/ee-first/README.md +80 -0
  391. package/test/node_modules/ee-first/index.js +95 -0
  392. package/test/node_modules/ee-first/package.json +29 -0
  393. package/test/node_modules/ejs/LICENSE +202 -0
  394. package/test/node_modules/ejs/README.md +344 -0
  395. package/test/node_modules/ejs/bin/cli.js +212 -0
  396. package/test/node_modules/ejs/ejs.js +1720 -0
  397. package/test/node_modules/ejs/ejs.min.js +1 -0
  398. package/test/node_modules/ejs/jakefile.js +88 -0
  399. package/test/node_modules/ejs/lib/ejs.js +951 -0
  400. package/test/node_modules/ejs/lib/utils.js +225 -0
  401. package/test/node_modules/ejs/package.json +42 -0
  402. package/test/node_modules/ejs/usage.txt +24 -0
  403. package/test/node_modules/encodeurl/HISTORY.md +14 -0
  404. package/test/node_modules/encodeurl/LICENSE +22 -0
  405. package/test/node_modules/encodeurl/README.md +128 -0
  406. package/test/node_modules/encodeurl/index.js +60 -0
  407. package/test/node_modules/encodeurl/package.json +40 -0
  408. package/test/node_modules/escape-html/LICENSE +24 -0
  409. package/test/node_modules/escape-html/Readme.md +43 -0
  410. package/test/node_modules/escape-html/index.js +78 -0
  411. package/test/node_modules/escape-html/package.json +24 -0
  412. package/test/node_modules/extend-shallow/LICENSE +21 -0
  413. package/test/node_modules/extend-shallow/README.md +61 -0
  414. package/test/node_modules/extend-shallow/index.js +33 -0
  415. package/test/node_modules/extend-shallow/package.json +56 -0
  416. package/test/node_modules/filelist/README.md +84 -0
  417. package/test/node_modules/filelist/index.d.ts +110 -0
  418. package/test/node_modules/filelist/index.js +495 -0
  419. package/test/node_modules/filelist/jakefile.js +15 -0
  420. package/test/node_modules/filelist/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  421. package/test/node_modules/filelist/node_modules/brace-expansion/LICENSE +21 -0
  422. package/test/node_modules/filelist/node_modules/brace-expansion/README.md +135 -0
  423. package/test/node_modules/filelist/node_modules/brace-expansion/index.js +203 -0
  424. package/test/node_modules/filelist/node_modules/brace-expansion/package.json +46 -0
  425. package/test/node_modules/filelist/node_modules/minimatch/LICENSE +15 -0
  426. package/test/node_modules/filelist/node_modules/minimatch/README.md +259 -0
  427. package/test/node_modules/filelist/node_modules/minimatch/lib/path.js +4 -0
  428. package/test/node_modules/filelist/node_modules/minimatch/minimatch.js +906 -0
  429. package/test/node_modules/filelist/node_modules/minimatch/package.json +32 -0
  430. package/test/node_modules/filelist/package.json +28 -0
  431. package/test/node_modules/fill-range/LICENSE +21 -0
  432. package/test/node_modules/fill-range/README.md +237 -0
  433. package/test/node_modules/fill-range/index.js +249 -0
  434. package/test/node_modules/fill-range/package.json +69 -0
  435. package/test/node_modules/fresh/HISTORY.md +70 -0
  436. package/test/node_modules/fresh/LICENSE +23 -0
  437. package/test/node_modules/fresh/README.md +119 -0
  438. package/test/node_modules/fresh/index.js +137 -0
  439. package/test/node_modules/fresh/package.json +46 -0
  440. package/test/node_modules/fs.realpath/LICENSE +43 -0
  441. package/test/node_modules/fs.realpath/README.md +33 -0
  442. package/test/node_modules/fs.realpath/index.js +66 -0
  443. package/test/node_modules/fs.realpath/old.js +303 -0
  444. package/test/node_modules/fs.realpath/package.json +26 -0
  445. package/test/node_modules/get-paths/.editorconfig +9 -0
  446. package/test/node_modules/get-paths/.gitattributes +1 -0
  447. package/test/node_modules/get-paths/.lib.eslintrc +3 -0
  448. package/test/node_modules/get-paths/.remarkignore +1 -0
  449. package/test/node_modules/get-paths/.travis.yml +6 -0
  450. package/test/node_modules/get-paths/LICENSE +21 -0
  451. package/test/node_modules/get-paths/README.md +61 -0
  452. package/test/node_modules/get-paths/index.js +31 -0
  453. package/test/node_modules/get-paths/package.json +100 -0
  454. package/test/node_modules/get-paths/test/test.js +7 -0
  455. package/test/node_modules/glob/LICENSE +15 -0
  456. package/test/node_modules/glob/README.md +378 -0
  457. package/test/node_modules/glob/common.js +240 -0
  458. package/test/node_modules/glob/glob.js +790 -0
  459. package/test/node_modules/glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  460. package/test/node_modules/glob/node_modules/brace-expansion/LICENSE +21 -0
  461. package/test/node_modules/glob/node_modules/brace-expansion/README.md +135 -0
  462. package/test/node_modules/glob/node_modules/brace-expansion/index.js +203 -0
  463. package/test/node_modules/glob/node_modules/brace-expansion/package.json +46 -0
  464. package/test/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
  465. package/test/node_modules/glob/node_modules/minimatch/README.md +259 -0
  466. package/test/node_modules/glob/node_modules/minimatch/lib/path.js +4 -0
  467. package/test/node_modules/glob/node_modules/minimatch/minimatch.js +906 -0
  468. package/test/node_modules/glob/node_modules/minimatch/package.json +32 -0
  469. package/test/node_modules/glob/package.json +55 -0
  470. package/test/node_modules/glob/sync.js +486 -0
  471. package/test/node_modules/glob-parent/CHANGELOG.md +110 -0
  472. package/test/node_modules/glob-parent/LICENSE +15 -0
  473. package/test/node_modules/glob-parent/README.md +137 -0
  474. package/test/node_modules/glob-parent/index.js +42 -0
  475. package/test/node_modules/glob-parent/package.json +48 -0
  476. package/test/node_modules/has-flag/index.d.ts +39 -0
  477. package/test/node_modules/has-flag/index.js +8 -0
  478. package/test/node_modules/has-flag/license +9 -0
  479. package/test/node_modules/has-flag/package.json +46 -0
  480. package/test/node_modules/has-flag/readme.md +89 -0
  481. package/test/node_modules/has-symbols/.eslintrc +11 -0
  482. package/test/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  483. package/test/node_modules/has-symbols/.nycrc +9 -0
  484. package/test/node_modules/has-symbols/CHANGELOG.md +75 -0
  485. package/test/node_modules/has-symbols/LICENSE +21 -0
  486. package/test/node_modules/has-symbols/README.md +46 -0
  487. package/test/node_modules/has-symbols/index.js +13 -0
  488. package/test/node_modules/has-symbols/package.json +101 -0
  489. package/test/node_modules/has-symbols/shams.js +42 -0
  490. package/test/node_modules/has-symbols/test/index.js +22 -0
  491. package/test/node_modules/has-symbols/test/shams/core-js.js +28 -0
  492. package/test/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
  493. package/test/node_modules/has-symbols/test/tests.js +56 -0
  494. package/test/node_modules/has-tostringtag/.eslintrc +11 -0
  495. package/test/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  496. package/test/node_modules/has-tostringtag/CHANGELOG.md +20 -0
  497. package/test/node_modules/has-tostringtag/LICENSE +21 -0
  498. package/test/node_modules/has-tostringtag/README.md +46 -0
  499. package/test/node_modules/has-tostringtag/index.js +7 -0
  500. package/test/node_modules/has-tostringtag/package.json +84 -0
  501. package/test/node_modules/has-tostringtag/shams.js +7 -0
  502. package/test/node_modules/has-tostringtag/test/index.js +21 -0
  503. package/test/node_modules/has-tostringtag/test/shams/core-js.js +28 -0
  504. package/test/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +28 -0
  505. package/test/node_modules/has-tostringtag/test/tests.js +14 -0
  506. package/test/node_modules/http-assert/HISTORY.md +79 -0
  507. package/test/node_modules/http-assert/LICENSE +22 -0
  508. package/test/node_modules/http-assert/README.md +116 -0
  509. package/test/node_modules/http-assert/index.js +41 -0
  510. package/test/node_modules/http-assert/package.json +41 -0
  511. package/test/node_modules/http-errors/HISTORY.md +165 -0
  512. package/test/node_modules/http-errors/LICENSE +23 -0
  513. package/test/node_modules/http-errors/README.md +169 -0
  514. package/test/node_modules/http-errors/index.js +299 -0
  515. package/test/node_modules/http-errors/node_modules/depd/History.md +96 -0
  516. package/test/node_modules/http-errors/node_modules/depd/LICENSE +22 -0
  517. package/test/node_modules/http-errors/node_modules/depd/Readme.md +280 -0
  518. package/test/node_modules/http-errors/node_modules/depd/index.js +522 -0
  519. package/test/node_modules/http-errors/node_modules/depd/lib/browser/index.js +77 -0
  520. package/test/node_modules/http-errors/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
  521. package/test/node_modules/http-errors/node_modules/depd/lib/compat/event-listener-count.js +22 -0
  522. package/test/node_modules/http-errors/node_modules/depd/lib/compat/index.js +79 -0
  523. package/test/node_modules/http-errors/node_modules/depd/package.json +41 -0
  524. package/test/node_modules/http-errors/package.json +49 -0
  525. package/test/node_modules/ignore-by-default/LICENSE +14 -0
  526. package/test/node_modules/ignore-by-default/README.md +26 -0
  527. package/test/node_modules/ignore-by-default/index.js +12 -0
  528. package/test/node_modules/ignore-by-default/package.json +34 -0
  529. package/test/node_modules/inflight/LICENSE +15 -0
  530. package/test/node_modules/inflight/README.md +37 -0
  531. package/test/node_modules/inflight/inflight.js +54 -0
  532. package/test/node_modules/inflight/package.json +29 -0
  533. package/test/node_modules/inherits/LICENSE +16 -0
  534. package/test/node_modules/inherits/README.md +42 -0
  535. package/test/node_modules/inherits/inherits.js +9 -0
  536. package/test/node_modules/inherits/inherits_browser.js +27 -0
  537. package/test/node_modules/inherits/package.json +29 -0
  538. package/test/node_modules/ini/LICENSE +15 -0
  539. package/test/node_modules/ini/README.md +102 -0
  540. package/test/node_modules/ini/ini.js +206 -0
  541. package/test/node_modules/ini/package.json +33 -0
  542. package/test/node_modules/is-binary-path/index.d.ts +17 -0
  543. package/test/node_modules/is-binary-path/index.js +7 -0
  544. package/test/node_modules/is-binary-path/license +9 -0
  545. package/test/node_modules/is-binary-path/package.json +40 -0
  546. package/test/node_modules/is-binary-path/readme.md +34 -0
  547. package/test/node_modules/is-buffer/LICENSE +21 -0
  548. package/test/node_modules/is-buffer/README.md +53 -0
  549. package/test/node_modules/is-buffer/index.js +21 -0
  550. package/test/node_modules/is-buffer/package.json +51 -0
  551. package/test/node_modules/is-buffer/test/basic.js +24 -0
  552. package/test/node_modules/is-extendable/LICENSE +21 -0
  553. package/test/node_modules/is-extendable/README.md +72 -0
  554. package/test/node_modules/is-extendable/index.js +13 -0
  555. package/test/node_modules/is-extendable/package.json +51 -0
  556. package/test/node_modules/is-extglob/LICENSE +21 -0
  557. package/test/node_modules/is-extglob/README.md +107 -0
  558. package/test/node_modules/is-extglob/index.js +20 -0
  559. package/test/node_modules/is-extglob/package.json +69 -0
  560. package/test/node_modules/is-generator-function/.eslintignore +1 -0
  561. package/test/node_modules/is-generator-function/.eslintrc +9 -0
  562. package/test/node_modules/is-generator-function/.nvmrc +1 -0
  563. package/test/node_modules/is-generator-function/.nycrc +9 -0
  564. package/test/node_modules/is-generator-function/CHANGELOG.md +216 -0
  565. package/test/node_modules/is-generator-function/LICENSE +20 -0
  566. package/test/node_modules/is-generator-function/README.md +40 -0
  567. package/test/node_modules/is-generator-function/index.js +38 -0
  568. package/test/node_modules/is-generator-function/package.json +87 -0
  569. package/test/node_modules/is-generator-function/test/corejs.js +5 -0
  570. package/test/node_modules/is-generator-function/test/index.js +83 -0
  571. package/test/node_modules/is-generator-function/test/uglified.js +8 -0
  572. package/test/node_modules/is-glob/LICENSE +21 -0
  573. package/test/node_modules/is-glob/README.md +206 -0
  574. package/test/node_modules/is-glob/index.js +150 -0
  575. package/test/node_modules/is-glob/package.json +81 -0
  576. package/test/node_modules/is-number/LICENSE +21 -0
  577. package/test/node_modules/is-number/README.md +187 -0
  578. package/test/node_modules/is-number/index.js +18 -0
  579. package/test/node_modules/is-number/package.json +82 -0
  580. package/test/node_modules/is-whitespace/LICENSE +21 -0
  581. package/test/node_modules/is-whitespace/README.md +47 -0
  582. package/test/node_modules/is-whitespace/index.js +19 -0
  583. package/test/node_modules/is-whitespace/package.json +47 -0
  584. package/test/node_modules/jake/Makefile +44 -0
  585. package/test/node_modules/jake/README.md +17 -0
  586. package/test/node_modules/jake/bin/bash_completion.sh +41 -0
  587. package/test/node_modules/jake/bin/cli.js +31 -0
  588. package/test/node_modules/jake/jakefile.js +94 -0
  589. package/test/node_modules/jake/lib/api.js +409 -0
  590. package/test/node_modules/jake/lib/jake.js +330 -0
  591. package/test/node_modules/jake/lib/loader.js +173 -0
  592. package/test/node_modules/jake/lib/namespace.js +115 -0
  593. package/test/node_modules/jake/lib/package_task.js +406 -0
  594. package/test/node_modules/jake/lib/parseargs.js +134 -0
  595. package/test/node_modules/jake/lib/program.js +282 -0
  596. package/test/node_modules/jake/lib/publish_task.js +290 -0
  597. package/test/node_modules/jake/lib/rule.js +311 -0
  598. package/test/node_modules/jake/lib/task/directory_task.js +30 -0
  599. package/test/node_modules/jake/lib/task/file_task.js +124 -0
  600. package/test/node_modules/jake/lib/task/index.js +9 -0
  601. package/test/node_modules/jake/lib/task/task.js +449 -0
  602. package/test/node_modules/jake/lib/test_task.js +270 -0
  603. package/test/node_modules/jake/lib/utils/file.js +286 -0
  604. package/test/node_modules/jake/lib/utils/index.js +297 -0
  605. package/test/node_modules/jake/lib/utils/logger.js +24 -0
  606. package/test/node_modules/jake/package.json +42 -0
  607. package/test/node_modules/jake/test/integration/concurrent.js +45 -0
  608. package/test/node_modules/jake/test/integration/file.js +228 -0
  609. package/test/node_modules/jake/test/integration/file_task.js +126 -0
  610. package/test/node_modules/jake/test/integration/helpers.js +80 -0
  611. package/test/node_modules/jake/test/integration/jakefile.js +337 -0
  612. package/test/node_modules/jake/test/integration/jakelib/concurrent.jake.js +113 -0
  613. package/test/node_modules/jake/test/integration/jakelib/publish.jake.js +49 -0
  614. package/test/node_modules/jake/test/integration/jakelib/required_module.jake.js +10 -0
  615. package/test/node_modules/jake/test/integration/jakelib/rule.jake.js +222 -0
  616. package/test/node_modules/jake/test/integration/publish_task.js +27 -0
  617. package/test/node_modules/jake/test/integration/rule.js +217 -0
  618. package/test/node_modules/jake/test/integration/selfdep.js +42 -0
  619. package/test/node_modules/jake/test/integration/task_base.js +167 -0
  620. package/test/node_modules/jake/test/unit/jakefile.js +36 -0
  621. package/test/node_modules/jake/test/unit/namespace.js +77 -0
  622. package/test/node_modules/jake/test/unit/parseargs.js +169 -0
  623. package/test/node_modules/jake/usage.txt +16 -0
  624. package/test/node_modules/js-beautify/LICENSE +9 -0
  625. package/test/node_modules/js-beautify/README.md +435 -0
  626. package/test/node_modules/js-beautify/js/bin/css-beautify.js +4 -0
  627. package/test/node_modules/js-beautify/js/bin/html-beautify.js +4 -0
  628. package/test/node_modules/js-beautify/js/bin/js-beautify.js +4 -0
  629. package/test/node_modules/js-beautify/js/index.js +86 -0
  630. package/test/node_modules/js-beautify/js/lib/beautifier.js +5982 -0
  631. package/test/node_modules/js-beautify/js/lib/beautifier.min.js +2 -0
  632. package/test/node_modules/js-beautify/js/lib/beautify-css.js +1675 -0
  633. package/test/node_modules/js-beautify/js/lib/beautify-html.js +3136 -0
  634. package/test/node_modules/js-beautify/js/lib/beautify.js +4020 -0
  635. package/test/node_modules/js-beautify/js/lib/cli.js +705 -0
  636. package/test/node_modules/js-beautify/js/lib/unpackers/javascriptobfuscator_unpacker.js +132 -0
  637. package/test/node_modules/js-beautify/js/lib/unpackers/myobfuscate_unpacker.js +119 -0
  638. package/test/node_modules/js-beautify/js/lib/unpackers/p_a_c_k_e_r_unpacker.js +119 -0
  639. package/test/node_modules/js-beautify/js/lib/unpackers/urlencode_unpacker.js +104 -0
  640. package/test/node_modules/js-beautify/js/src/cli.js +705 -0
  641. package/test/node_modules/js-beautify/js/src/core/directives.js +62 -0
  642. package/test/node_modules/js-beautify/js/src/core/inputscanner.js +192 -0
  643. package/test/node_modules/js-beautify/js/src/core/options.js +193 -0
  644. package/test/node_modules/js-beautify/js/src/core/output.js +419 -0
  645. package/test/node_modules/js-beautify/js/src/core/pattern.js +94 -0
  646. package/test/node_modules/js-beautify/js/src/core/templatablepattern.js +211 -0
  647. package/test/node_modules/js-beautify/js/src/core/token.js +54 -0
  648. package/test/node_modules/js-beautify/js/src/core/tokenizer.js +140 -0
  649. package/test/node_modules/js-beautify/js/src/core/tokenstream.js +78 -0
  650. package/test/node_modules/js-beautify/js/src/core/whitespacepattern.js +105 -0
  651. package/test/node_modules/js-beautify/js/src/css/beautifier.js +529 -0
  652. package/test/node_modules/js-beautify/js/src/css/index.js +42 -0
  653. package/test/node_modules/js-beautify/js/src/css/options.js +56 -0
  654. package/test/node_modules/js-beautify/js/src/css/tokenizer.js +29 -0
  655. package/test/node_modules/js-beautify/js/src/html/beautifier.js +878 -0
  656. package/test/node_modules/js-beautify/js/src/html/index.js +42 -0
  657. package/test/node_modules/js-beautify/js/src/html/options.js +91 -0
  658. package/test/node_modules/js-beautify/js/src/html/tokenizer.js +332 -0
  659. package/test/node_modules/js-beautify/js/src/index.js +44 -0
  660. package/test/node_modules/js-beautify/js/src/javascript/acorn.js +57 -0
  661. package/test/node_modules/js-beautify/js/src/javascript/beautifier.js +1472 -0
  662. package/test/node_modules/js-beautify/js/src/javascript/index.js +42 -0
  663. package/test/node_modules/js-beautify/js/src/javascript/options.js +93 -0
  664. package/test/node_modules/js-beautify/js/src/javascript/tokenizer.js +567 -0
  665. package/test/node_modules/js-beautify/js/src/unpackers/javascriptobfuscator_unpacker.js +132 -0
  666. package/test/node_modules/js-beautify/js/src/unpackers/myobfuscate_unpacker.js +119 -0
  667. package/test/node_modules/js-beautify/js/src/unpackers/p_a_c_k_e_r_unpacker.js +119 -0
  668. package/test/node_modules/js-beautify/js/src/unpackers/urlencode_unpacker.js +104 -0
  669. package/test/node_modules/js-beautify/package.json +72 -0
  670. package/test/node_modules/keygrip/HISTORY.md +25 -0
  671. package/test/node_modules/keygrip/LICENSE +21 -0
  672. package/test/node_modules/keygrip/README.md +103 -0
  673. package/test/node_modules/keygrip/index.js +51 -0
  674. package/test/node_modules/keygrip/package.json +28 -0
  675. package/test/node_modules/kind-of/LICENSE +21 -0
  676. package/test/node_modules/kind-of/README.md +261 -0
  677. package/test/node_modules/kind-of/index.js +116 -0
  678. package/test/node_modules/kind-of/package.json +90 -0
  679. package/test/node_modules/koa/History.md +696 -0
  680. package/test/node_modules/koa/LICENSE +22 -0
  681. package/test/node_modules/koa/Readme.md +289 -0
  682. package/test/node_modules/koa/dist/koa.mjs +4 -0
  683. package/test/node_modules/koa/lib/application.js +314 -0
  684. package/test/node_modules/koa/lib/context.js +251 -0
  685. package/test/node_modules/koa/lib/request.js +726 -0
  686. package/test/node_modules/koa/lib/response.js +588 -0
  687. package/test/node_modules/koa/package.json +89 -0
  688. package/test/node_modules/koa-compose/History.md +60 -0
  689. package/test/node_modules/koa-compose/Readme.md +40 -0
  690. package/test/node_modules/koa-compose/index.js +48 -0
  691. package/test/node_modules/koa-compose/package.json +30 -0
  692. package/test/node_modules/koa-convert/LICENSE +22 -0
  693. package/test/node_modules/koa-convert/README.md +166 -0
  694. package/test/node_modules/koa-convert/index.js +105 -0
  695. package/test/node_modules/koa-convert/package.json +64 -0
  696. package/test/node_modules/koa-send/History.md +133 -0
  697. package/test/node_modules/koa-send/LICENSE +22 -0
  698. package/test/node_modules/koa-send/README.md +109 -0
  699. package/test/node_modules/koa-send/index.js +188 -0
  700. package/test/node_modules/koa-send/package.json +58 -0
  701. package/test/node_modules/koa-views/.eslintrc +14 -0
  702. package/test/node_modules/koa-views/.gitattributes +1 -0
  703. package/test/node_modules/koa-views/.github/workflows/test.yml +20 -0
  704. package/test/node_modules/koa-views/README.md +201 -0
  705. package/test/node_modules/koa-views/history.md +110 -0
  706. package/test/node_modules/koa-views/index.d.ts +62 -0
  707. package/test/node_modules/koa-views/license +22 -0
  708. package/test/node_modules/koa-views/package.json +68 -0
  709. package/test/node_modules/koa-views/src/index.js +98 -0
  710. package/test/node_modules/koa-views/test/.eslintrc +5 -0
  711. package/test/node_modules/koa-views/test/fixtures/basic.ejs +10 -0
  712. package/test/node_modules/koa-views/test/fixtures/basic.foo +1 -0
  713. package/test/node_modules/koa-views/test/fixtures/basic.html +11 -0
  714. package/test/node_modules/koa-views/test/fixtures/basic.pug +9 -0
  715. package/test/node_modules/koa-views/test/fixtures/basic.test.html +11 -0
  716. package/test/node_modules/koa-views/test/fixtures/global-state.pug +9 -0
  717. package/test/node_modules/koa-views/test/fixtures/index.html +10 -0
  718. package/test/node_modules/koa-views/test/fixtures/nunjucks-filter.html +11 -0
  719. package/test/node_modules/koa-views/test/fixtures/state.pug +9 -0
  720. package/test/node_modules/koa-views/test/fixtures/underscore.html +11 -0
  721. package/test/node_modules/koa-views/test/fixtures/view-options-partial.hbs +1 -0
  722. package/test/node_modules/koa-views/test/fixtures/view-options.hbs +4 -0
  723. package/test/node_modules/koa-views/test/index.js +431 -0
  724. package/test/node_modules/koa-views/test-outside/fixtures/basic.ejs +10 -0
  725. package/test/node_modules/lru-cache/LICENSE +15 -0
  726. package/test/node_modules/lru-cache/README.md +158 -0
  727. package/test/node_modules/lru-cache/index.js +468 -0
  728. package/test/node_modules/lru-cache/package.json +36 -0
  729. package/test/node_modules/media-typer/HISTORY.md +22 -0
  730. package/test/node_modules/media-typer/LICENSE +22 -0
  731. package/test/node_modules/media-typer/README.md +81 -0
  732. package/test/node_modules/media-typer/index.js +270 -0
  733. package/test/node_modules/media-typer/package.json +26 -0
  734. package/test/node_modules/mime-db/HISTORY.md +507 -0
  735. package/test/node_modules/mime-db/LICENSE +23 -0
  736. package/test/node_modules/mime-db/README.md +100 -0
  737. package/test/node_modules/mime-db/db.json +8519 -0
  738. package/test/node_modules/mime-db/index.js +12 -0
  739. package/test/node_modules/mime-db/package.json +60 -0
  740. package/test/node_modules/mime-types/HISTORY.md +397 -0
  741. package/test/node_modules/mime-types/LICENSE +23 -0
  742. package/test/node_modules/mime-types/README.md +113 -0
  743. package/test/node_modules/mime-types/index.js +188 -0
  744. package/test/node_modules/mime-types/package.json +44 -0
  745. package/test/node_modules/minimatch/LICENSE +15 -0
  746. package/test/node_modules/minimatch/README.md +230 -0
  747. package/test/node_modules/minimatch/minimatch.js +947 -0
  748. package/test/node_modules/minimatch/package.json +33 -0
  749. package/test/node_modules/ms/index.js +162 -0
  750. package/test/node_modules/ms/license.md +21 -0
  751. package/test/node_modules/ms/package.json +37 -0
  752. package/test/node_modules/ms/readme.md +60 -0
  753. package/test/node_modules/mz/HISTORY.md +66 -0
  754. package/test/node_modules/mz/LICENSE +22 -0
  755. package/test/node_modules/mz/README.md +106 -0
  756. package/test/node_modules/mz/child_process.js +8 -0
  757. package/test/node_modules/mz/crypto.js +9 -0
  758. package/test/node_modules/mz/dns.js +16 -0
  759. package/test/node_modules/mz/fs.js +62 -0
  760. package/test/node_modules/mz/index.js +8 -0
  761. package/test/node_modules/mz/package.json +44 -0
  762. package/test/node_modules/mz/readline.js +64 -0
  763. package/test/node_modules/mz/zlib.js +13 -0
  764. package/test/node_modules/negotiator/HISTORY.md +108 -0
  765. package/test/node_modules/negotiator/LICENSE +24 -0
  766. package/test/node_modules/negotiator/README.md +203 -0
  767. package/test/node_modules/negotiator/index.js +82 -0
  768. package/test/node_modules/negotiator/lib/charset.js +169 -0
  769. package/test/node_modules/negotiator/lib/encoding.js +184 -0
  770. package/test/node_modules/negotiator/lib/language.js +179 -0
  771. package/test/node_modules/negotiator/lib/mediaType.js +294 -0
  772. package/test/node_modules/negotiator/package.json +42 -0
  773. package/test/node_modules/nodemon/LICENSE +21 -0
  774. package/test/node_modules/nodemon/README.md +423 -0
  775. package/test/node_modules/nodemon/bin/nodemon.js +16 -0
  776. package/test/node_modules/nodemon/bin/windows-kill.exe +0 -0
  777. package/test/node_modules/nodemon/doc/cli/authors.txt +8 -0
  778. package/test/node_modules/nodemon/doc/cli/config.txt +44 -0
  779. package/test/node_modules/nodemon/doc/cli/help.txt +29 -0
  780. package/test/node_modules/nodemon/doc/cli/logo.txt +20 -0
  781. package/test/node_modules/nodemon/doc/cli/options.txt +36 -0
  782. package/test/node_modules/nodemon/doc/cli/topics.txt +8 -0
  783. package/test/node_modules/nodemon/doc/cli/usage.txt +3 -0
  784. package/test/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  785. package/test/node_modules/nodemon/lib/cli/index.js +49 -0
  786. package/test/node_modules/nodemon/lib/cli/parse.js +230 -0
  787. package/test/node_modules/nodemon/lib/config/command.js +43 -0
  788. package/test/node_modules/nodemon/lib/config/defaults.js +28 -0
  789. package/test/node_modules/nodemon/lib/config/exec.js +225 -0
  790. package/test/node_modules/nodemon/lib/config/index.js +93 -0
  791. package/test/node_modules/nodemon/lib/config/load.js +256 -0
  792. package/test/node_modules/nodemon/lib/help/index.js +27 -0
  793. package/test/node_modules/nodemon/lib/index.js +1 -0
  794. package/test/node_modules/nodemon/lib/monitor/index.js +4 -0
  795. package/test/node_modules/nodemon/lib/monitor/match.js +276 -0
  796. package/test/node_modules/nodemon/lib/monitor/run.js +541 -0
  797. package/test/node_modules/nodemon/lib/monitor/signals.js +34 -0
  798. package/test/node_modules/nodemon/lib/monitor/watch.js +239 -0
  799. package/test/node_modules/nodemon/lib/nodemon.js +311 -0
  800. package/test/node_modules/nodemon/lib/rules/add.js +89 -0
  801. package/test/node_modules/nodemon/lib/rules/index.js +53 -0
  802. package/test/node_modules/nodemon/lib/rules/parse.js +43 -0
  803. package/test/node_modules/nodemon/lib/spawn.js +73 -0
  804. package/test/node_modules/nodemon/lib/utils/bus.js +44 -0
  805. package/test/node_modules/nodemon/lib/utils/clone.js +40 -0
  806. package/test/node_modules/nodemon/lib/utils/colour.js +26 -0
  807. package/test/node_modules/nodemon/lib/utils/index.js +102 -0
  808. package/test/node_modules/nodemon/lib/utils/log.js +82 -0
  809. package/test/node_modules/nodemon/lib/utils/merge.js +47 -0
  810. package/test/node_modules/nodemon/lib/version.js +100 -0
  811. package/test/node_modules/nodemon/node_modules/debug/CHANGELOG.md +395 -0
  812. package/test/node_modules/nodemon/node_modules/debug/LICENSE +19 -0
  813. package/test/node_modules/nodemon/node_modules/debug/README.md +437 -0
  814. package/test/node_modules/nodemon/node_modules/debug/node.js +1 -0
  815. package/test/node_modules/nodemon/node_modules/debug/package.json +51 -0
  816. package/test/node_modules/nodemon/node_modules/debug/src/browser.js +180 -0
  817. package/test/node_modules/nodemon/node_modules/debug/src/common.js +249 -0
  818. package/test/node_modules/nodemon/node_modules/debug/src/index.js +12 -0
  819. package/test/node_modules/nodemon/node_modules/debug/src/node.js +177 -0
  820. package/test/node_modules/nodemon/node_modules/has-flag/index.js +8 -0
  821. package/test/node_modules/nodemon/node_modules/has-flag/license +9 -0
  822. package/test/node_modules/nodemon/node_modules/has-flag/package.json +44 -0
  823. package/test/node_modules/nodemon/node_modules/has-flag/readme.md +70 -0
  824. package/test/node_modules/nodemon/node_modules/supports-color/browser.js +5 -0
  825. package/test/node_modules/nodemon/node_modules/supports-color/index.js +131 -0
  826. package/test/node_modules/nodemon/node_modules/supports-color/license +9 -0
  827. package/test/node_modules/nodemon/node_modules/supports-color/package.json +53 -0
  828. package/test/node_modules/nodemon/node_modules/supports-color/readme.md +66 -0
  829. package/test/node_modules/nodemon/package.json +74 -0
  830. package/test/node_modules/nopt/LICENSE +15 -0
  831. package/test/node_modules/nopt/README.md +213 -0
  832. package/test/node_modules/nopt/bin/nopt.js +56 -0
  833. package/test/node_modules/nopt/lib/nopt.js +515 -0
  834. package/test/node_modules/nopt/package.json +53 -0
  835. package/test/node_modules/normalize-path/LICENSE +21 -0
  836. package/test/node_modules/normalize-path/README.md +127 -0
  837. package/test/node_modules/normalize-path/index.js +35 -0
  838. package/test/node_modules/normalize-path/package.json +77 -0
  839. package/test/node_modules/object-assign/index.js +90 -0
  840. package/test/node_modules/object-assign/license +21 -0
  841. package/test/node_modules/object-assign/package.json +42 -0
  842. package/test/node_modules/object-assign/readme.md +61 -0
  843. package/test/node_modules/on-finished/HISTORY.md +98 -0
  844. package/test/node_modules/on-finished/LICENSE +23 -0
  845. package/test/node_modules/on-finished/README.md +162 -0
  846. package/test/node_modules/on-finished/index.js +234 -0
  847. package/test/node_modules/on-finished/package.json +39 -0
  848. package/test/node_modules/once/LICENSE +15 -0
  849. package/test/node_modules/once/README.md +79 -0
  850. package/test/node_modules/once/once.js +42 -0
  851. package/test/node_modules/once/package.json +33 -0
  852. package/test/node_modules/only/History.md +5 -0
  853. package/test/node_modules/only/Makefile +7 -0
  854. package/test/node_modules/only/Readme.md +58 -0
  855. package/test/node_modules/only/index.js +10 -0
  856. package/test/node_modules/only/package.json +14 -0
  857. package/test/node_modules/parseurl/HISTORY.md +58 -0
  858. package/test/node_modules/parseurl/LICENSE +24 -0
  859. package/test/node_modules/parseurl/README.md +133 -0
  860. package/test/node_modules/parseurl/index.js +158 -0
  861. package/test/node_modules/parseurl/package.json +40 -0
  862. package/test/node_modules/path-is-absolute/index.js +20 -0
  863. package/test/node_modules/path-is-absolute/license +21 -0
  864. package/test/node_modules/path-is-absolute/package.json +43 -0
  865. package/test/node_modules/path-is-absolute/readme.md +59 -0
  866. package/test/node_modules/picomatch/CHANGELOG.md +136 -0
  867. package/test/node_modules/picomatch/LICENSE +21 -0
  868. package/test/node_modules/picomatch/README.md +708 -0
  869. package/test/node_modules/picomatch/index.js +3 -0
  870. package/test/node_modules/picomatch/lib/constants.js +179 -0
  871. package/test/node_modules/picomatch/lib/parse.js +1091 -0
  872. package/test/node_modules/picomatch/lib/picomatch.js +342 -0
  873. package/test/node_modules/picomatch/lib/scan.js +391 -0
  874. package/test/node_modules/picomatch/lib/utils.js +64 -0
  875. package/test/node_modules/picomatch/package.json +81 -0
  876. package/test/node_modules/pify/index.js +68 -0
  877. package/test/node_modules/pify/license +9 -0
  878. package/test/node_modules/pify/package.json +51 -0
  879. package/test/node_modules/pify/readme.md +145 -0
  880. package/test/node_modules/pretty/LICENSE +21 -0
  881. package/test/node_modules/pretty/README.md +105 -0
  882. package/test/node_modules/pretty/index.js +45 -0
  883. package/test/node_modules/pretty/package.json +54 -0
  884. package/test/node_modules/proto-list/LICENSE +15 -0
  885. package/test/node_modules/proto-list/README.md +3 -0
  886. package/test/node_modules/proto-list/package.json +18 -0
  887. package/test/node_modules/proto-list/proto-list.js +88 -0
  888. package/test/node_modules/proto-list/test/basic.js +61 -0
  889. package/test/node_modules/pseudomap/LICENSE +15 -0
  890. package/test/node_modules/pseudomap/README.md +60 -0
  891. package/test/node_modules/pseudomap/map.js +9 -0
  892. package/test/node_modules/pseudomap/package.json +25 -0
  893. package/test/node_modules/pseudomap/pseudomap.js +113 -0
  894. package/test/node_modules/pseudomap/test/basic.js +86 -0
  895. package/test/node_modules/pstree.remy/.travis.yml +8 -0
  896. package/test/node_modules/pstree.remy/LICENSE +7 -0
  897. package/test/node_modules/pstree.remy/README.md +26 -0
  898. package/test/node_modules/pstree.remy/lib/index.js +37 -0
  899. package/test/node_modules/pstree.remy/lib/tree.js +37 -0
  900. package/test/node_modules/pstree.remy/lib/utils.js +53 -0
  901. package/test/node_modules/pstree.remy/package.json +33 -0
  902. package/test/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  903. package/test/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  904. package/test/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  905. package/test/node_modules/pstree.remy/tests/index.test.js +51 -0
  906. package/test/node_modules/readdirp/LICENSE +21 -0
  907. package/test/node_modules/readdirp/README.md +122 -0
  908. package/test/node_modules/readdirp/index.d.ts +43 -0
  909. package/test/node_modules/readdirp/index.js +287 -0
  910. package/test/node_modules/readdirp/package.json +122 -0
  911. package/test/node_modules/resolve-path/HISTORY.md +66 -0
  912. package/test/node_modules/resolve-path/LICENSE +23 -0
  913. package/test/node_modules/resolve-path/README.md +111 -0
  914. package/test/node_modules/resolve-path/index.js +88 -0
  915. package/test/node_modules/resolve-path/node_modules/depd/History.md +96 -0
  916. package/test/node_modules/resolve-path/node_modules/depd/LICENSE +22 -0
  917. package/test/node_modules/resolve-path/node_modules/depd/Readme.md +280 -0
  918. package/test/node_modules/resolve-path/node_modules/depd/index.js +522 -0
  919. package/test/node_modules/resolve-path/node_modules/depd/lib/browser/index.js +77 -0
  920. package/test/node_modules/resolve-path/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
  921. package/test/node_modules/resolve-path/node_modules/depd/lib/compat/event-listener-count.js +22 -0
  922. package/test/node_modules/resolve-path/node_modules/depd/lib/compat/index.js +79 -0
  923. package/test/node_modules/resolve-path/node_modules/depd/package.json +41 -0
  924. package/test/node_modules/resolve-path/node_modules/http-errors/HISTORY.md +132 -0
  925. package/test/node_modules/resolve-path/node_modules/http-errors/LICENSE +23 -0
  926. package/test/node_modules/resolve-path/node_modules/http-errors/README.md +135 -0
  927. package/test/node_modules/resolve-path/node_modules/http-errors/index.js +260 -0
  928. package/test/node_modules/resolve-path/node_modules/http-errors/package.json +48 -0
  929. package/test/node_modules/resolve-path/node_modules/inherits/LICENSE +16 -0
  930. package/test/node_modules/resolve-path/node_modules/inherits/README.md +42 -0
  931. package/test/node_modules/resolve-path/node_modules/inherits/inherits.js +7 -0
  932. package/test/node_modules/resolve-path/node_modules/inherits/inherits_browser.js +23 -0
  933. package/test/node_modules/resolve-path/node_modules/inherits/package.json +29 -0
  934. package/test/node_modules/resolve-path/node_modules/setprototypeof/LICENSE +13 -0
  935. package/test/node_modules/resolve-path/node_modules/setprototypeof/README.md +26 -0
  936. package/test/node_modules/resolve-path/node_modules/setprototypeof/index.d.ts +2 -0
  937. package/test/node_modules/resolve-path/node_modules/setprototypeof/index.js +15 -0
  938. package/test/node_modules/resolve-path/node_modules/setprototypeof/package.json +25 -0
  939. package/test/node_modules/resolve-path/package.json +46 -0
  940. package/test/node_modules/safe-buffer/LICENSE +21 -0
  941. package/test/node_modules/safe-buffer/README.md +584 -0
  942. package/test/node_modules/safe-buffer/index.d.ts +187 -0
  943. package/test/node_modules/safe-buffer/index.js +65 -0
  944. package/test/node_modules/safe-buffer/package.json +51 -0
  945. package/test/node_modules/semver/CHANGELOG.md +39 -0
  946. package/test/node_modules/semver/LICENSE +15 -0
  947. package/test/node_modules/semver/README.md +412 -0
  948. package/test/node_modules/semver/bin/semver +160 -0
  949. package/test/node_modules/semver/package.json +28 -0
  950. package/test/node_modules/semver/range.bnf +16 -0
  951. package/test/node_modules/semver/semver.js +1483 -0
  952. package/test/node_modules/setprototypeof/LICENSE +13 -0
  953. package/test/node_modules/setprototypeof/README.md +31 -0
  954. package/test/node_modules/setprototypeof/index.d.ts +2 -0
  955. package/test/node_modules/setprototypeof/index.js +17 -0
  956. package/test/node_modules/setprototypeof/package.json +38 -0
  957. package/test/node_modules/setprototypeof/test/index.js +24 -0
  958. package/test/node_modules/sigmund/LICENSE +15 -0
  959. package/test/node_modules/sigmund/README.md +53 -0
  960. package/test/node_modules/sigmund/bench.js +283 -0
  961. package/test/node_modules/sigmund/package.json +30 -0
  962. package/test/node_modules/sigmund/sigmund.js +39 -0
  963. package/test/node_modules/sigmund/test/basic.js +24 -0
  964. package/test/node_modules/simple-update-notifier/LICENSE +21 -0
  965. package/test/node_modules/simple-update-notifier/README.md +82 -0
  966. package/test/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  967. package/test/node_modules/simple-update-notifier/build/index.js +217 -0
  968. package/test/node_modules/simple-update-notifier/node_modules/semver/CHANGELOG.md +74 -0
  969. package/test/node_modules/simple-update-notifier/node_modules/semver/LICENSE +15 -0
  970. package/test/node_modules/simple-update-notifier/node_modules/semver/README.md +499 -0
  971. package/test/node_modules/simple-update-notifier/node_modules/semver/bin/semver.js +173 -0
  972. package/test/node_modules/simple-update-notifier/node_modules/semver/classes/comparator.js +139 -0
  973. package/test/node_modules/simple-update-notifier/node_modules/semver/classes/index.js +5 -0
  974. package/test/node_modules/simple-update-notifier/node_modules/semver/classes/range.js +448 -0
  975. package/test/node_modules/simple-update-notifier/node_modules/semver/classes/semver.js +290 -0
  976. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/clean.js +6 -0
  977. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/cmp.js +48 -0
  978. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/coerce.js +51 -0
  979. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/compare-build.js +7 -0
  980. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/compare-loose.js +3 -0
  981. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/compare.js +5 -0
  982. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/diff.js +25 -0
  983. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/eq.js +3 -0
  984. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/gt.js +3 -0
  985. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/gte.js +3 -0
  986. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/inc.js +15 -0
  987. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/lt.js +3 -0
  988. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/lte.js +3 -0
  989. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/major.js +3 -0
  990. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/minor.js +3 -0
  991. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/neq.js +3 -0
  992. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/parse.js +37 -0
  993. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/patch.js +3 -0
  994. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/prerelease.js +6 -0
  995. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/rcompare.js +3 -0
  996. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/rsort.js +3 -0
  997. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/satisfies.js +10 -0
  998. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/sort.js +3 -0
  999. package/test/node_modules/simple-update-notifier/node_modules/semver/functions/valid.js +6 -0
  1000. package/test/node_modules/simple-update-notifier/node_modules/semver/index.js +64 -0
  1001. package/test/node_modules/simple-update-notifier/node_modules/semver/internal/constants.js +17 -0
  1002. package/test/node_modules/simple-update-notifier/node_modules/semver/internal/debug.js +9 -0
  1003. package/test/node_modules/simple-update-notifier/node_modules/semver/internal/identifiers.js +23 -0
  1004. package/test/node_modules/simple-update-notifier/node_modules/semver/internal/re.js +179 -0
  1005. package/test/node_modules/simple-update-notifier/node_modules/semver/package.json +34 -0
  1006. package/test/node_modules/simple-update-notifier/node_modules/semver/range.bnf +16 -0
  1007. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/gtr.js +4 -0
  1008. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/intersects.js +7 -0
  1009. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/ltr.js +4 -0
  1010. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/max-satisfying.js +25 -0
  1011. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/min-satisfying.js +24 -0
  1012. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/min-version.js +57 -0
  1013. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/outside.js +80 -0
  1014. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/to-comparators.js +8 -0
  1015. package/test/node_modules/simple-update-notifier/node_modules/semver/ranges/valid.js +11 -0
  1016. package/test/node_modules/simple-update-notifier/package.json +97 -0
  1017. package/test/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  1018. package/test/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  1019. package/test/node_modules/simple-update-notifier/src/cache.ts +44 -0
  1020. package/test/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  1021. package/test/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  1022. package/test/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  1023. package/test/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  1024. package/test/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  1025. package/test/node_modules/simple-update-notifier/src/index.ts +34 -0
  1026. package/test/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  1027. package/test/node_modules/simple-update-notifier/src/types.ts +8 -0
  1028. package/test/node_modules/statuses/HISTORY.md +65 -0
  1029. package/test/node_modules/statuses/LICENSE +23 -0
  1030. package/test/node_modules/statuses/README.md +127 -0
  1031. package/test/node_modules/statuses/codes.json +66 -0
  1032. package/test/node_modules/statuses/index.js +113 -0
  1033. package/test/node_modules/statuses/package.json +48 -0
  1034. package/test/node_modules/supports-color/browser.js +5 -0
  1035. package/test/node_modules/supports-color/index.js +135 -0
  1036. package/test/node_modules/supports-color/license +9 -0
  1037. package/test/node_modules/supports-color/package.json +53 -0
  1038. package/test/node_modules/supports-color/readme.md +76 -0
  1039. package/test/node_modules/thenify/History.md +11 -0
  1040. package/test/node_modules/thenify/LICENSE +22 -0
  1041. package/test/node_modules/thenify/README.md +120 -0
  1042. package/test/node_modules/thenify/index.js +77 -0
  1043. package/test/node_modules/thenify/package.json +31 -0
  1044. package/test/node_modules/thenify-all/History.md +11 -0
  1045. package/test/node_modules/thenify-all/LICENSE +22 -0
  1046. package/test/node_modules/thenify-all/README.md +66 -0
  1047. package/test/node_modules/thenify-all/index.js +73 -0
  1048. package/test/node_modules/thenify-all/package.json +34 -0
  1049. package/test/node_modules/to-regex-range/LICENSE +21 -0
  1050. package/test/node_modules/to-regex-range/README.md +305 -0
  1051. package/test/node_modules/to-regex-range/index.js +288 -0
  1052. package/test/node_modules/to-regex-range/package.json +88 -0
  1053. package/test/node_modules/toidentifier/HISTORY.md +9 -0
  1054. package/test/node_modules/toidentifier/LICENSE +21 -0
  1055. package/test/node_modules/toidentifier/README.md +61 -0
  1056. package/test/node_modules/toidentifier/index.js +32 -0
  1057. package/test/node_modules/toidentifier/package.json +38 -0
  1058. package/test/node_modules/touch/LICENSE +15 -0
  1059. package/test/node_modules/touch/README.md +52 -0
  1060. package/test/node_modules/touch/bin/nodetouch.js +112 -0
  1061. package/test/node_modules/touch/index.js +224 -0
  1062. package/test/node_modules/touch/node_modules/nopt/LICENSE +23 -0
  1063. package/test/node_modules/touch/node_modules/nopt/README.md +208 -0
  1064. package/test/node_modules/touch/node_modules/nopt/bin/nopt.js +44 -0
  1065. package/test/node_modules/touch/node_modules/nopt/examples/my-program.js +30 -0
  1066. package/test/node_modules/touch/node_modules/nopt/lib/nopt.js +552 -0
  1067. package/test/node_modules/touch/node_modules/nopt/package.json +12 -0
  1068. package/test/node_modules/touch/package.json +28 -0
  1069. package/test/node_modules/tsscmp/.travis.yml +18 -0
  1070. package/test/node_modules/tsscmp/LICENSE +21 -0
  1071. package/test/node_modules/tsscmp/README.md +48 -0
  1072. package/test/node_modules/tsscmp/appveyor.yml +29 -0
  1073. package/test/node_modules/tsscmp/lib/index.js +38 -0
  1074. package/test/node_modules/tsscmp/package.json +29 -0
  1075. package/test/node_modules/tsscmp/test/benchmark/index.js +30 -0
  1076. package/test/node_modules/tsscmp/test/unit/index.js +69 -0
  1077. package/test/node_modules/type-is/HISTORY.md +259 -0
  1078. package/test/node_modules/type-is/LICENSE +23 -0
  1079. package/test/node_modules/type-is/README.md +170 -0
  1080. package/test/node_modules/type-is/index.js +266 -0
  1081. package/test/node_modules/type-is/package.json +45 -0
  1082. package/test/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  1083. package/test/node_modules/undefsafe/.jscsrc +13 -0
  1084. package/test/node_modules/undefsafe/.jshintrc +16 -0
  1085. package/test/node_modules/undefsafe/.travis.yml +18 -0
  1086. package/test/node_modules/undefsafe/LICENSE +22 -0
  1087. package/test/node_modules/undefsafe/README.md +63 -0
  1088. package/test/node_modules/undefsafe/example.js +14 -0
  1089. package/test/node_modules/undefsafe/lib/undefsafe.js +125 -0
  1090. package/test/node_modules/undefsafe/package.json +34 -0
  1091. package/test/node_modules/vary/HISTORY.md +39 -0
  1092. package/test/node_modules/vary/LICENSE +22 -0
  1093. package/test/node_modules/vary/README.md +101 -0
  1094. package/test/node_modules/vary/index.js +149 -0
  1095. package/test/node_modules/vary/package.json +43 -0
  1096. package/test/node_modules/wrappy/LICENSE +15 -0
  1097. package/test/node_modules/wrappy/README.md +36 -0
  1098. package/test/node_modules/wrappy/package.json +29 -0
  1099. package/test/node_modules/wrappy/wrappy.js +33 -0
  1100. package/test/node_modules/yallist/LICENSE +15 -0
  1101. package/test/node_modules/yallist/README.md +204 -0
  1102. package/test/node_modules/yallist/iterator.js +7 -0
  1103. package/test/node_modules/yallist/package.json +29 -0
  1104. package/test/node_modules/yallist/yallist.js +370 -0
  1105. package/test/node_modules/ylru/History.md +42 -0
  1106. package/test/node_modules/ylru/LICENSE +23 -0
  1107. package/test/node_modules/ylru/README.md +99 -0
  1108. package/test/node_modules/ylru/index.d.ts +18 -0
  1109. package/test/node_modules/ylru/index.js +106 -0
  1110. package/test/node_modules/ylru/package.json +52 -0
  1111. package/test/package-lock.json +2212 -0
  1112. package/test/package.json +17 -0
  1113. package/test/public/api +1 -0
  1114. package/test/public/cartella nuova/ewewew.html +12 -0
  1115. package/test/public/cartella nuova/prova.ejs +12 -0
  1116. package/test/public/index.ejs +12 -0
  1117. package/test/public/index.html +12 -0
  1118. package/test/public/proma_template.ejs +16 -0
  1119. package/test/public/un altro file.html +12 -0
  1120. package/test/public/un_file.html +12 -0
  1121. package/test/test.js +63 -0
@@ -0,0 +1,31 @@
1
+ /* @preserve
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2013-2018 Petka Antonov
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in
14
+ * all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ * THE SOFTWARE.
23
+ *
24
+ */
25
+ /**
26
+ * bluebird build version 3.7.2
27
+ * Features enabled: core
28
+ * Features disabled: race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each
29
+ */
30
+ !function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;"undefined"!=typeof window?e=window:"undefined"!=typeof global?e=global:"undefined"!=typeof self&&(e=self),e.Promise=t()}}(function(){var t,e,n;return function r(t,e,n){function o(a,s){if(!e[a]){if(!t[a]){var c="function"==typeof _dereq_&&_dereq_;if(!s&&c)return c(a,!0);if(i)return i(a,!0);var l=new Error("Cannot find module '"+a+"'");throw l.code="MODULE_NOT_FOUND",l}var u=e[a]={exports:{}};t[a][0].call(u.exports,function(e){var n=t[a][1][e];return o(n?n:e)},u,u.exports,r,t,e,n)}return e[a].exports}for(var i="function"==typeof _dereq_&&_dereq_,a=0;a<n.length;a++)o(n[a]);return o}({1:[function(t,e,n){"use strict";function r(){this._customScheduler=!1,this._isTickUsed=!1,this._lateQueue=new f(16),this._normalQueue=new f(16),this._haveDrainedQueues=!1;var t=this;this.drainQueues=function(){t._drainQueues()},this._schedule=p}function o(t,e,n){this._lateQueue.push(t,e,n),this._queueTick()}function i(t,e,n){this._normalQueue.push(t,e,n),this._queueTick()}function a(t){this._normalQueue._pushOne(t),this._queueTick()}function s(t){for(;t.length()>0;)c(t)}function c(t){var e=t.shift();if("function"!=typeof e)e._settlePromises();else{var n=t.shift(),r=t.shift();e.call(n,r)}}var l;try{throw new Error}catch(u){l=u}var p=t("./schedule"),f=t("./queue");r.prototype.setScheduler=function(t){var e=this._schedule;return this._schedule=t,this._customScheduler=!0,e},r.prototype.hasCustomScheduler=function(){return this._customScheduler},r.prototype.haveItemsQueued=function(){return this._isTickUsed||this._haveDrainedQueues},r.prototype.fatalError=function(t,e){e?(process.stderr.write("Fatal "+(t instanceof Error?t.stack:t)+"\n"),process.exit(2)):this.throwLater(t)},r.prototype.throwLater=function(t,e){if(1===arguments.length&&(e=t,t=function(){throw e}),"undefined"!=typeof setTimeout)setTimeout(function(){t(e)},0);else try{this._schedule(function(){t(e)})}catch(n){throw new Error("No async scheduler available\n\n See http://goo.gl/MqrFmX\n")}},r.prototype.invokeLater=o,r.prototype.invoke=i,r.prototype.settlePromises=a,r.prototype._drainQueues=function(){s(this._normalQueue),this._reset(),this._haveDrainedQueues=!0,s(this._lateQueue)},r.prototype._queueTick=function(){this._isTickUsed||(this._isTickUsed=!0,this._schedule(this.drainQueues))},r.prototype._reset=function(){this._isTickUsed=!1},e.exports=r,e.exports.firstLineError=l},{"./queue":17,"./schedule":18}],2:[function(t,e,n){"use strict";e.exports=function(t,e,n,r){var o=!1,i=function(t,e){this._reject(e)},a=function(t,e){e.promiseRejectionQueued=!0,e.bindingPromise._then(i,i,null,this,t)},s=function(t,e){0===(50397184&this._bitField)&&this._resolveCallback(e.target)},c=function(t,e){e.promiseRejectionQueued||this._reject(t)};t.prototype.bind=function(i){o||(o=!0,t.prototype._propagateFrom=r.propagateFromFunction(),t.prototype._boundValue=r.boundValueFunction());var l=n(i),u=new t(e);u._propagateFrom(this,1);var p=this._target();if(u._setBoundTo(l),l instanceof t){var f={promiseRejectionQueued:!1,promise:u,target:p,bindingPromise:l};p._then(e,a,void 0,u,f),l._then(s,c,void 0,u,f),u._setOnCancel(l)}else u._resolveCallback(p);return u},t.prototype._setBoundTo=function(t){void 0!==t?(this._bitField=2097152|this._bitField,this._boundTo=t):this._bitField=-2097153&this._bitField},t.prototype._isBound=function(){return 2097152===(2097152&this._bitField)},t.bind=function(e,n){return t.resolve(n).bind(e)}}},{}],3:[function(t,e,n){"use strict";function r(){try{Promise===i&&(Promise=o)}catch(t){}return i}var o;"undefined"!=typeof Promise&&(o=Promise);var i=t("./promise")();i.noConflict=r,e.exports=i},{"./promise":15}],4:[function(t,e,n){"use strict";e.exports=function(e,n,r,o){var i=t("./util"),a=i.tryCatch,s=i.errorObj,c=e._async;e.prototype["break"]=e.prototype.cancel=function(){if(!o.cancellation())return this._warn("cancellation is disabled");for(var t=this,e=t;t._isCancellable();){if(!t._cancelBy(e)){e._isFollowing()?e._followee().cancel():e._cancelBranched();break}var n=t._cancellationParent;if(null==n||!n._isCancellable()){t._isFollowing()?t._followee().cancel():t._cancelBranched();break}t._isFollowing()&&t._followee().cancel(),t._setWillBeCancelled(),e=t,t=n}},e.prototype._branchHasCancelled=function(){this._branchesRemainingToCancel--},e.prototype._enoughBranchesHaveCancelled=function(){return void 0===this._branchesRemainingToCancel||this._branchesRemainingToCancel<=0},e.prototype._cancelBy=function(t){return t===this?(this._branchesRemainingToCancel=0,this._invokeOnCancel(),!0):(this._branchHasCancelled(),this._enoughBranchesHaveCancelled()?(this._invokeOnCancel(),!0):!1)},e.prototype._cancelBranched=function(){this._enoughBranchesHaveCancelled()&&this._cancel()},e.prototype._cancel=function(){this._isCancellable()&&(this._setCancelled(),c.invoke(this._cancelPromises,this,void 0))},e.prototype._cancelPromises=function(){this._length()>0&&this._settlePromises()},e.prototype._unsetOnCancel=function(){this._onCancelField=void 0},e.prototype._isCancellable=function(){return this.isPending()&&!this._isCancelled()},e.prototype.isCancellable=function(){return this.isPending()&&!this.isCancelled()},e.prototype._doInvokeOnCancel=function(t,e){if(i.isArray(t))for(var n=0;n<t.length;++n)this._doInvokeOnCancel(t[n],e);else if(void 0!==t)if("function"==typeof t){if(!e){var r=a(t).call(this._boundValue());r===s&&(this._attachExtraTrace(r.e),c.throwLater(r.e))}}else t._resultCancelled(this)},e.prototype._invokeOnCancel=function(){var t=this._onCancel();this._unsetOnCancel(),c.invoke(this._doInvokeOnCancel,this,t)},e.prototype._invokeInternalOnCancel=function(){this._isCancellable()&&(this._doInvokeOnCancel(this._onCancel(),!0),this._unsetOnCancel())},e.prototype._resultCancelled=function(){this.cancel()}}},{"./util":21}],5:[function(t,e,n){"use strict";e.exports=function(e){function n(t,n,s){return function(c){var l=s._boundValue();t:for(var u=0;u<t.length;++u){var p=t[u];if(p===Error||null!=p&&p.prototype instanceof Error){if(c instanceof p)return i(n).call(l,c)}else if("function"==typeof p){var f=i(p).call(l,c);if(f===a)return f;if(f)return i(n).call(l,c)}else if(r.isObject(c)){for(var h=o(p),d=0;d<h.length;++d){var _=h[d];if(p[_]!=c[_])continue t}return i(n).call(l,c)}}return e}}var r=t("./util"),o=t("./es5").keys,i=r.tryCatch,a=r.errorObj;return n}},{"./es5":10,"./util":21}],6:[function(t,e,n){"use strict";e.exports=function(t){function e(){this._trace=new e.CapturedTrace(r())}function n(){return o?new e:void 0}function r(){var t=i.length-1;return t>=0?i[t]:void 0}var o=!1,i=[];return t.prototype._promiseCreated=function(){},t.prototype._pushContext=function(){},t.prototype._popContext=function(){return null},t._peekContext=t.prototype._peekContext=function(){},e.prototype._pushContext=function(){void 0!==this._trace&&(this._trace._promiseCreated=null,i.push(this._trace))},e.prototype._popContext=function(){if(void 0!==this._trace){var t=i.pop(),e=t._promiseCreated;return t._promiseCreated=null,e}return null},e.CapturedTrace=null,e.create=n,e.deactivateLongStackTraces=function(){},e.activateLongStackTraces=function(){var n=t.prototype._pushContext,i=t.prototype._popContext,a=t._peekContext,s=t.prototype._peekContext,c=t.prototype._promiseCreated;e.deactivateLongStackTraces=function(){t.prototype._pushContext=n,t.prototype._popContext=i,t._peekContext=a,t.prototype._peekContext=s,t.prototype._promiseCreated=c,o=!1},o=!0,t.prototype._pushContext=e.prototype._pushContext,t.prototype._popContext=e.prototype._popContext,t._peekContext=t.prototype._peekContext=r,t.prototype._promiseCreated=function(){var t=this._peekContext();t&&null==t._promiseCreated&&(t._promiseCreated=this)}},e}},{}],7:[function(t,e,n){"use strict";e.exports=function(e,n,r,o){function i(t,e){return{promise:e}}function a(){return!1}function s(t,e,n){var r=this;try{t(e,n,function(t){if("function"!=typeof t)throw new TypeError("onCancel must be a function, got: "+V.toString(t));r._attachCancellationCallback(t)})}catch(o){return o}}function c(t){if(!this._isCancellable())return this;var e=this._onCancel();void 0!==e?V.isArray(e)?e.push(t):this._setOnCancel([e,t]):this._setOnCancel(t)}function l(){return this._onCancelField}function u(t){this._onCancelField=t}function p(){this._cancellationParent=void 0,this._onCancelField=void 0}function f(t,e){if(0!==(1&e)){this._cancellationParent=t;var n=t._branchesRemainingToCancel;void 0===n&&(n=0),t._branchesRemainingToCancel=n+1}0!==(2&e)&&t._isBound()&&this._setBoundTo(t._boundTo)}function h(t,e){0!==(2&e)&&t._isBound()&&this._setBoundTo(t._boundTo)}function d(){var t=this._boundTo;return void 0!==t&&t instanceof e?t.isFulfilled()?t.value():void 0:t}function _(){this._trace=new H(this._peekContext())}function v(t,e){if(q(t)){var n=this._trace;if(void 0!==n&&e&&(n=n._parent),void 0!==n)n.attachExtraTrace(t);else if(!t.__stackCleaned__){var r=F(t);V.notEnumerableProp(t,"stack",r.message+"\n"+r.stack.join("\n")),V.notEnumerableProp(t,"__stackCleaned__",!0)}}}function y(){this._trace=void 0}function g(t,e,n,r,o){if(void 0===t&&null!==e&&Z){if(void 0!==o&&o._returnedNonUndefined())return;if(0===(65535&r._bitField))return;n&&(n+=" ");var i="",a="";if(e._trace){for(var s=e._trace.stack.split("\n"),c=E(s),l=c.length-1;l>=0;--l){var u=c[l];if(!M.test(u)){var p=u.match(W);p&&(i="at "+p[1]+":"+p[2]+":"+p[3]+" ");break}}if(c.length>0)for(var f=c[0],l=0;l<s.length;++l)if(s[l]===f){l>0&&(a="\n"+s[l-1]);break}}var h="a promise was created in a "+n+"handler "+i+"but was not returned from it, see http://goo.gl/rRqMUw"+a;r._warn(h,!0,e)}}function m(t,e){var n=t+" is deprecated and will be removed in a future version.";return e&&(n+=" Use "+e+" instead."),b(n)}function b(t,n,r){if(ut.warnings){var o,i=new D(t);if(n)r._attachExtraTrace(i);else if(ut.longStackTraces&&(o=e._peekContext()))o.attachExtraTrace(i);else{var a=F(i);i.stack=a.message+"\n"+a.stack.join("\n")}it("warning",i)||T(i,"",!0)}}function C(t,e){for(var n=0;n<e.length-1;++n)e[n].push("From previous event:"),e[n]=e[n].join("\n");return n<e.length&&(e[n]=e[n].join("\n")),t+"\n"+e.join("\n")}function w(t){for(var e=0;e<t.length;++e)(0===t[e].length||e+1<t.length&&t[e][0]===t[e+1][0])&&(t.splice(e,1),e--)}function k(t){for(var e=t[0],n=1;n<t.length;++n){for(var r=t[n],o=e.length-1,i=e[o],a=-1,s=r.length-1;s>=0;--s)if(r[s]===i){a=s;break}for(var s=a;s>=0;--s){var c=r[s];if(e[o]!==c)break;e.pop(),o--}e=r}}function E(t){for(var e=[],n=0;n<t.length;++n){var r=t[n],o=" (No stack trace)"===r||$.test(r),i=o&&st(r);o&&!i&&(X&&" "!==r.charAt(0)&&(r=" "+r),e.push(r))}return e}function j(t){for(var e=t.stack.replace(/\s+$/g,"").split("\n"),n=0;n<e.length;++n){var r=e[n];if(" (No stack trace)"===r||$.test(r))break}return n>0&&"SyntaxError"!=t.name&&(e=e.slice(n)),e}function F(t){var e=t.stack,n=t.toString();return e="string"==typeof e&&e.length>0?j(t):[" (No stack trace)"],{message:n,stack:"SyntaxError"==t.name?e:E(e)}}function T(t,e,n){if("undefined"!=typeof console){var r;if(V.isObject(t)){var o=t.stack;r=e+z(o,t)}else r=e+String(t);"function"==typeof B?B(r,n):("function"==typeof console.log||"object"==typeof console.log)&&console.log(r)}}function x(t,e,n,r){var o=!1;try{"function"==typeof e&&(o=!0,"rejectionHandled"===t?e(r):e(n,r))}catch(i){I.throwLater(i)}"unhandledRejection"===t?it(t,n,r)||o||T(n,"Unhandled rejection "):it(t,r)}function R(t){var e;if("function"==typeof t)e="[function "+(t.name||"anonymous")+"]";else{e=t&&"function"==typeof t.toString?t.toString():V.toString(t);var n=/\[object [a-zA-Z0-9$_]+\]/;if(n.test(e))try{var r=JSON.stringify(t);e=r}catch(o){}0===e.length&&(e="(empty array)")}return"(<"+S(e)+">, no stack trace)"}function S(t){var e=41;return t.length<e?t:t.substr(0,e-3)+"..."}function P(){return"function"==typeof lt}function O(t){var e=t.match(ct);return e?{fileName:e[1],line:parseInt(e[2],10)}:void 0}function A(t,e){if(P()){for(var n,r,o=(t.stack||"").split("\n"),i=(e.stack||"").split("\n"),a=-1,s=-1,c=0;c<o.length;++c){var l=O(o[c]);if(l){n=l.fileName,a=l.line;break}}for(var c=0;c<i.length;++c){var l=O(i[c]);if(l){r=l.fileName,s=l.line;break}}0>a||0>s||!n||!r||n!==r||a>=s||(st=function(t){if(G.test(t))return!0;var e=O(t);return e&&e.fileName===n&&a<=e.line&&e.line<=s?!0:!1})}}function H(t){this._parent=t,this._promisesCreated=0;var e=this._length=1+(void 0===t?0:t._length);lt(this,H),e>32&&this.uncycle()}var N,L,B,U,I=e._async,D=t("./errors").Warning,V=t("./util"),Q=t("./es5"),q=V.canAttachTrace,G=/[\\\/]bluebird[\\\/]js[\\\/](release|debug|instrumented)/,M=/\((?:timers\.js):\d+:\d+\)/,W=/[\/<\(](.+?):(\d+):(\d+)\)?\s*$/,$=null,z=null,X=!1,K=!(0==V.env("BLUEBIRD_DEBUG")||!V.env("BLUEBIRD_DEBUG")&&"development"!==V.env("NODE_ENV")),J=!(0==V.env("BLUEBIRD_WARNINGS")||!K&&!V.env("BLUEBIRD_WARNINGS")),Y=!(0==V.env("BLUEBIRD_LONG_STACK_TRACES")||!K&&!V.env("BLUEBIRD_LONG_STACK_TRACES")),Z=0!=V.env("BLUEBIRD_W_FORGOTTEN_RETURN")&&(J||!!V.env("BLUEBIRD_W_FORGOTTEN_RETURN"));!function(){function t(){for(var t=0;t<r.length;++t)r[t]._notifyUnhandledRejection();n()}function n(){r.length=0}var r=[];U=function(e){r.push(e),setTimeout(t,1)},Q.defineProperty(e,"_unhandledRejectionCheck",{value:t}),Q.defineProperty(e,"_unhandledRejectionClear",{value:n})}(),e.prototype.suppressUnhandledRejections=function(){var t=this._target();t._bitField=-1048577&t._bitField|524288},e.prototype._ensurePossibleRejectionHandled=function(){0===(524288&this._bitField)&&(this._setRejectionIsUnhandled(),U(this))},e.prototype._notifyUnhandledRejectionIsHandled=function(){x("rejectionHandled",N,void 0,this)},e.prototype._setReturnedNonUndefined=function(){this._bitField=268435456|this._bitField},e.prototype._returnedNonUndefined=function(){return 0!==(268435456&this._bitField)},e.prototype._notifyUnhandledRejection=function(){if(this._isRejectionUnhandled()){var t=this._settledValue();this._setUnhandledRejectionIsNotified(),x("unhandledRejection",L,t,this)}},e.prototype._setUnhandledRejectionIsNotified=function(){this._bitField=262144|this._bitField},e.prototype._unsetUnhandledRejectionIsNotified=function(){this._bitField=-262145&this._bitField},e.prototype._isUnhandledRejectionNotified=function(){return(262144&this._bitField)>0},e.prototype._setRejectionIsUnhandled=function(){this._bitField=1048576|this._bitField},e.prototype._unsetRejectionIsUnhandled=function(){this._bitField=-1048577&this._bitField,this._isUnhandledRejectionNotified()&&(this._unsetUnhandledRejectionIsNotified(),this._notifyUnhandledRejectionIsHandled())},e.prototype._isRejectionUnhandled=function(){return(1048576&this._bitField)>0},e.prototype._warn=function(t,e,n){return b(t,e,n||this)},e.onPossiblyUnhandledRejection=function(t){var n=e._getContext();L=V.contextBind(n,t)},e.onUnhandledRejectionHandled=function(t){var n=e._getContext();N=V.contextBind(n,t)};var tt=function(){};e.longStackTraces=function(){if(I.haveItemsQueued()&&!ut.longStackTraces)throw new Error("cannot enable long stack traces after promises have been created\n\n See http://goo.gl/MqrFmX\n");if(!ut.longStackTraces&&P()){var t=e.prototype._captureStackTrace,r=e.prototype._attachExtraTrace,o=e.prototype._dereferenceTrace;ut.longStackTraces=!0,tt=function(){if(I.haveItemsQueued()&&!ut.longStackTraces)throw new Error("cannot enable long stack traces after promises have been created\n\n See http://goo.gl/MqrFmX\n");e.prototype._captureStackTrace=t,e.prototype._attachExtraTrace=r,e.prototype._dereferenceTrace=o,n.deactivateLongStackTraces(),ut.longStackTraces=!1},e.prototype._captureStackTrace=_,e.prototype._attachExtraTrace=v,e.prototype._dereferenceTrace=y,n.activateLongStackTraces()}},e.hasLongStackTraces=function(){return ut.longStackTraces&&P()};var et={unhandledrejection:{before:function(){var t=V.global.onunhandledrejection;return V.global.onunhandledrejection=null,t},after:function(t){V.global.onunhandledrejection=t}},rejectionhandled:{before:function(){var t=V.global.onrejectionhandled;return V.global.onrejectionhandled=null,t},after:function(t){V.global.onrejectionhandled=t}}},nt=function(){var t=function(t,e){if(!t)return!V.global.dispatchEvent(e);var n;try{return n=t.before(),!V.global.dispatchEvent(e)}finally{t.after(n)}};try{if("function"==typeof CustomEvent){var e=new CustomEvent("CustomEvent");return V.global.dispatchEvent(e),function(e,n){e=e.toLowerCase();var r={detail:n,cancelable:!0},o=new CustomEvent(e,r);return Q.defineProperty(o,"promise",{value:n.promise}),Q.defineProperty(o,"reason",{value:n.reason}),t(et[e],o)}}if("function"==typeof Event){var e=new Event("CustomEvent");return V.global.dispatchEvent(e),function(e,n){e=e.toLowerCase();var r=new Event(e,{cancelable:!0});return r.detail=n,Q.defineProperty(r,"promise",{value:n.promise}),Q.defineProperty(r,"reason",{value:n.reason}),t(et[e],r)}}var e=document.createEvent("CustomEvent");return e.initCustomEvent("testingtheevent",!1,!0,{}),V.global.dispatchEvent(e),function(e,n){e=e.toLowerCase();var r=document.createEvent("CustomEvent");return r.initCustomEvent(e,!1,!0,n),t(et[e],r)}}catch(n){}return function(){return!1}}(),rt=function(){return V.isNode?function(){return process.emit.apply(process,arguments)}:V.global?function(t){var e="on"+t.toLowerCase(),n=V.global[e];return n?(n.apply(V.global,[].slice.call(arguments,1)),!0):!1}:function(){return!1}}(),ot={promiseCreated:i,promiseFulfilled:i,promiseRejected:i,promiseResolved:i,promiseCancelled:i,promiseChained:function(t,e,n){return{promise:e,child:n}},warning:function(t,e){return{warning:e}},unhandledRejection:function(t,e,n){return{reason:e,promise:n}},rejectionHandled:i},it=function(t){var e=!1;try{e=rt.apply(null,arguments)}catch(n){I.throwLater(n),e=!0}var r=!1;try{r=nt(t,ot[t].apply(null,arguments))}catch(n){I.throwLater(n),r=!0}return r||e};e.config=function(t){if(t=Object(t),"longStackTraces"in t&&(t.longStackTraces?e.longStackTraces():!t.longStackTraces&&e.hasLongStackTraces()&&tt()),"warnings"in t){var n=t.warnings;ut.warnings=!!n,Z=ut.warnings,V.isObject(n)&&"wForgottenReturn"in n&&(Z=!!n.wForgottenReturn)}if("cancellation"in t&&t.cancellation&&!ut.cancellation){if(I.haveItemsQueued())throw new Error("cannot enable cancellation after promises are in use");e.prototype._clearCancellationData=p,e.prototype._propagateFrom=f,e.prototype._onCancel=l,e.prototype._setOnCancel=u,e.prototype._attachCancellationCallback=c,e.prototype._execute=s,at=f,ut.cancellation=!0}if("monitoring"in t&&(t.monitoring&&!ut.monitoring?(ut.monitoring=!0,e.prototype._fireEvent=it):!t.monitoring&&ut.monitoring&&(ut.monitoring=!1,e.prototype._fireEvent=a)),"asyncHooks"in t&&V.nodeSupportsAsyncResource){var i=ut.asyncHooks,h=!!t.asyncHooks;i!==h&&(ut.asyncHooks=h,h?r():o())}return e},e.prototype._fireEvent=a,e.prototype._execute=function(t,e,n){try{t(e,n)}catch(r){return r}},e.prototype._onCancel=function(){},e.prototype._setOnCancel=function(t){},e.prototype._attachCancellationCallback=function(t){},e.prototype._captureStackTrace=function(){},e.prototype._attachExtraTrace=function(){},e.prototype._dereferenceTrace=function(){},e.prototype._clearCancellationData=function(){},e.prototype._propagateFrom=function(t,e){};var at=h,st=function(){return!1},ct=/[\/<\(]([^:\/]+):(\d+):(?:\d+)\)?\s*$/;V.inherits(H,Error),n.CapturedTrace=H,H.prototype.uncycle=function(){var t=this._length;if(!(2>t)){for(var e=[],n={},r=0,o=this;void 0!==o;++r)e.push(o),o=o._parent;t=this._length=r;for(var r=t-1;r>=0;--r){var i=e[r].stack;void 0===n[i]&&(n[i]=r)}for(var r=0;t>r;++r){var a=e[r].stack,s=n[a];if(void 0!==s&&s!==r){s>0&&(e[s-1]._parent=void 0,e[s-1]._length=1),e[r]._parent=void 0,e[r]._length=1;var c=r>0?e[r-1]:this;t-1>s?(c._parent=e[s+1],c._parent.uncycle(),c._length=c._parent._length+1):(c._parent=void 0,c._length=1);for(var l=c._length+1,u=r-2;u>=0;--u)e[u]._length=l,l++;return}}}},H.prototype.attachExtraTrace=function(t){if(!t.__stackCleaned__){this.uncycle();for(var e=F(t),n=e.message,r=[e.stack],o=this;void 0!==o;)r.push(E(o.stack.split("\n"))),o=o._parent;k(r),w(r),V.notEnumerableProp(t,"stack",C(n,r)),V.notEnumerableProp(t,"__stackCleaned__",!0)}};var lt=function(){var t=/^\s*at\s*/,e=function(t,e){return"string"==typeof t?t:void 0!==e.name&&void 0!==e.message?e.toString():R(e)};if("number"==typeof Error.stackTraceLimit&&"function"==typeof Error.captureStackTrace){Error.stackTraceLimit+=6,$=t,z=e;var n=Error.captureStackTrace;return st=function(t){return G.test(t)},function(t,e){Error.stackTraceLimit+=6,n(t,e),Error.stackTraceLimit-=6}}var r=new Error;if("string"==typeof r.stack&&r.stack.split("\n")[0].indexOf("stackDetection@")>=0)return $=/@/,z=e,X=!0,function(t){t.stack=(new Error).stack};var o;try{throw new Error}catch(i){o="stack"in i}return"stack"in r||!o||"number"!=typeof Error.stackTraceLimit?(z=function(t,e){return"string"==typeof t?t:"object"!=typeof e&&"function"!=typeof e||void 0===e.name||void 0===e.message?R(e):e.toString()},null):($=t,z=e,function(t){Error.stackTraceLimit+=6;try{throw new Error}catch(e){t.stack=e.stack}Error.stackTraceLimit-=6})}([]);"undefined"!=typeof console&&"undefined"!=typeof console.warn&&(B=function(t){console.warn(t)},V.isNode&&process.stderr.isTTY?B=function(t,e){var n=e?"":"";console.warn(n+t+"\n")}:V.isNode||"string"!=typeof(new Error).stack||(B=function(t,e){console.warn("%c"+t,e?"color: darkorange":"color: red")}));var ut={warnings:J,longStackTraces:!1,cancellation:!1,monitoring:!1,asyncHooks:!1};return Y&&e.longStackTraces(),{asyncHooks:function(){return ut.asyncHooks},longStackTraces:function(){return ut.longStackTraces},warnings:function(){return ut.warnings},cancellation:function(){return ut.cancellation},monitoring:function(){return ut.monitoring},propagateFromFunction:function(){return at},boundValueFunction:function(){return d},checkForgottenReturns:g,setBounds:A,warn:b,deprecated:m,CapturedTrace:H,fireDomEvent:nt,fireGlobalEvent:rt}}},{"./errors":9,"./es5":10,"./util":21}],8:[function(t,e,n){"use strict";e.exports=function(t){function e(){return this.value}function n(){throw this.reason}t.prototype["return"]=t.prototype.thenReturn=function(n){return n instanceof t&&n.suppressUnhandledRejections(),this._then(e,void 0,void 0,{value:n},void 0)},t.prototype["throw"]=t.prototype.thenThrow=function(t){return this._then(n,void 0,void 0,{reason:t},void 0)},t.prototype.catchThrow=function(t){if(arguments.length<=1)return this._then(void 0,n,void 0,{reason:t},void 0);var e=arguments[1],r=function(){throw e};return this.caught(t,r)},t.prototype.catchReturn=function(n){if(arguments.length<=1)return n instanceof t&&n.suppressUnhandledRejections(),this._then(void 0,e,void 0,{value:n},void 0);var r=arguments[1];r instanceof t&&r.suppressUnhandledRejections();var o=function(){return r};return this.caught(n,o)}}},{}],9:[function(t,e,n){"use strict";function r(t,e){function n(r){return this instanceof n?(p(this,"message","string"==typeof r?r:e),p(this,"name",t),void(Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):Error.call(this))):new n(r)}return u(n,Error),n}function o(t){return this instanceof o?(p(this,"name","OperationalError"),p(this,"message",t),this.cause=t,this.isOperational=!0,void(t instanceof Error?(p(this,"message",t.message),p(this,"stack",t.stack)):Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor))):new o(t)}var i,a,s=t("./es5"),c=s.freeze,l=t("./util"),u=l.inherits,p=l.notEnumerableProp,f=r("Warning","warning"),h=r("CancellationError","cancellation error"),d=r("TimeoutError","timeout error"),_=r("AggregateError","aggregate error");try{i=TypeError,a=RangeError}catch(v){i=r("TypeError","type error"),a=r("RangeError","range error")}for(var y="join pop push shift unshift slice filter forEach some every map indexOf lastIndexOf reduce reduceRight sort reverse".split(" "),g=0;g<y.length;++g)"function"==typeof Array.prototype[y[g]]&&(_.prototype[y[g]]=Array.prototype[y[g]]);s.defineProperty(_.prototype,"length",{value:0,configurable:!1,writable:!0,enumerable:!0}),_.prototype.isOperational=!0;var m=0;_.prototype.toString=function(){var t=Array(4*m+1).join(" "),e="\n"+t+"AggregateError of:\n";m++,t=Array(4*m+1).join(" ");for(var n=0;n<this.length;++n){for(var r=this[n]===this?"[Circular AggregateError]":this[n]+"",o=r.split("\n"),i=0;i<o.length;++i)o[i]=t+o[i];r=o.join("\n"),e+=r+"\n"}return m--,e},u(o,Error);var b=Error.__BluebirdErrorTypes__;b||(b=c({CancellationError:h,TimeoutError:d,OperationalError:o,RejectionError:o,AggregateError:_}),s.defineProperty(Error,"__BluebirdErrorTypes__",{value:b,writable:!1,enumerable:!1,configurable:!1})),e.exports={Error:Error,TypeError:i,RangeError:a,CancellationError:b.CancellationError,OperationalError:b.OperationalError,TimeoutError:b.TimeoutError,AggregateError:b.AggregateError,Warning:f}},{"./es5":10,"./util":21}],10:[function(t,e,n){var r=function(){"use strict";return void 0===this}();if(r)e.exports={freeze:Object.freeze,defineProperty:Object.defineProperty,getDescriptor:Object.getOwnPropertyDescriptor,keys:Object.keys,names:Object.getOwnPropertyNames,getPrototypeOf:Object.getPrototypeOf,isArray:Array.isArray,isES5:r,propertyIsWritable:function(t,e){var n=Object.getOwnPropertyDescriptor(t,e);return!(n&&!n.writable&&!n.set)}};else{var o={}.hasOwnProperty,i={}.toString,a={}.constructor.prototype,s=function(t){var e=[];for(var n in t)o.call(t,n)&&e.push(n);return e},c=function(t,e){return{value:t[e]}},l=function(t,e,n){return t[e]=n.value,t},u=function(t){return t},p=function(t){try{return Object(t).constructor.prototype}catch(e){return a}},f=function(t){try{return"[object Array]"===i.call(t)}catch(e){return!1}};e.exports={isArray:f,keys:s,names:s,defineProperty:l,getDescriptor:c,freeze:u,getPrototypeOf:p,isES5:r,propertyIsWritable:function(){return!0}}}},{}],11:[function(t,e,n){"use strict";e.exports=function(e,n,r){function o(t,e,n){this.promise=t,this.type=e,this.handler=n,this.called=!1,this.cancelPromise=null}function i(t){this.finallyHandler=t}function a(t,e){return null!=t.cancelPromise?(arguments.length>1?t.cancelPromise._reject(e):t.cancelPromise._cancel(),t.cancelPromise=null,!0):!1}function s(){return l.call(this,this.promise._target()._settledValue())}function c(t){return a(this,t)?void 0:(f.e=t,f)}function l(t){var o=this.promise,l=this.handler;if(!this.called){this.called=!0;var u=this.isFinallyHandler()?l.call(o._boundValue()):l.call(o._boundValue(),t);if(u===r)return u;if(void 0!==u){o._setReturnedNonUndefined();var h=n(u,o);if(h instanceof e){if(null!=this.cancelPromise){if(h._isCancelled()){var d=new p("late cancellation observer");return o._attachExtraTrace(d),f.e=d,f}h.isPending()&&h._attachCancellationCallback(new i(this))}return h._then(s,c,void 0,this,void 0)}}}return o.isRejected()?(a(this),f.e=t,f):(a(this),t)}var u=t("./util"),p=e.CancellationError,f=u.errorObj,h=t("./catch_filter")(r);return o.prototype.isFinallyHandler=function(){return 0===this.type},i.prototype._resultCancelled=function(){a(this.finallyHandler)},e.prototype._passThrough=function(t,e,n,r){return"function"!=typeof t?this.then():this._then(n,r,void 0,new o(this,e,t),void 0)},e.prototype.lastly=e.prototype["finally"]=function(t){return this._passThrough(t,0,l,l)},e.prototype.tap=function(t){return this._passThrough(t,1,l)},e.prototype.tapCatch=function(t){var n=arguments.length;if(1===n)return this._passThrough(t,1,void 0,l);var r,o=new Array(n-1),i=0;for(r=0;n-1>r;++r){var a=arguments[r];if(!u.isObject(a))return e.reject(new TypeError("tapCatch statement predicate: expecting an object but got "+u.classString(a)));o[i++]=a}o.length=i;var s=arguments[r];return this._passThrough(h(o,s,this),1,void 0,l)},o}},{"./catch_filter":5,"./util":21}],12:[function(t,e,n){"use strict";e.exports=function(e,n,r,o,i){var a=t("./util");a.canEvaluate,a.tryCatch,a.errorObj;e.join=function(){var t,e=arguments.length-1;if(e>0&&"function"==typeof arguments[e]){t=arguments[e];var r}var o=[].slice.call(arguments);t&&o.pop();var r=new n(o).promise();return void 0!==t?r.spread(t):r}}},{"./util":21}],13:[function(t,e,n){"use strict";e.exports=function(e,n,r,o,i){var a=t("./util"),s=a.tryCatch;e.method=function(t){if("function"!=typeof t)throw new e.TypeError("expecting a function but got "+a.classString(t));return function(){var r=new e(n);r._captureStackTrace(),r._pushContext();var o=s(t).apply(this,arguments),a=r._popContext();return i.checkForgottenReturns(o,a,"Promise.method",r),r._resolveFromSyncValue(o),r}},e.attempt=e["try"]=function(t){if("function"!=typeof t)return o("expecting a function but got "+a.classString(t));var r=new e(n);r._captureStackTrace(),r._pushContext();var c;if(arguments.length>1){i.deprecated("calling Promise.try with more than 1 argument");var l=arguments[1],u=arguments[2];c=a.isArray(l)?s(t).apply(u,l):s(t).call(u,l)}else c=s(t)();var p=r._popContext();return i.checkForgottenReturns(c,p,"Promise.try",r),r._resolveFromSyncValue(c),r},e.prototype._resolveFromSyncValue=function(t){t===a.errorObj?this._rejectCallback(t.e,!1):this._resolveCallback(t,!0)}}},{"./util":21}],14:[function(t,e,n){"use strict";function r(t){return t instanceof Error&&u.getPrototypeOf(t)===Error.prototype}function o(t){var e;if(r(t)){e=new l(t),e.name=t.name,e.message=t.message,e.stack=t.stack;for(var n=u.keys(t),o=0;o<n.length;++o){var i=n[o];p.test(i)||(e[i]=t[i])}return e}return a.markAsOriginatingFromRejection(t),t}function i(t,e){return function(n,r){if(null!==t){if(n){var i=o(s(n));t._attachExtraTrace(i),t._reject(i)}else if(e){var a=[].slice.call(arguments,1);t._fulfill(a)}else t._fulfill(r);t=null}}}var a=t("./util"),s=a.maybeWrapAsError,c=t("./errors"),l=c.OperationalError,u=t("./es5"),p=/^(?:name|message|stack|cause)$/;e.exports=i},{"./errors":9,"./es5":10,"./util":21}],15:[function(t,e,n){"use strict";e.exports=function(){function n(){}function r(t,e){if(null==t||t.constructor!==o)throw new j("the promise constructor cannot be invoked directly\n\n See http://goo.gl/MqrFmX\n");if("function"!=typeof e)throw new j("expecting a function but got "+f.classString(e))}function o(t){t!==T&&r(this,t),this._bitField=0,this._fulfillmentHandler0=void 0,this._rejectionHandler0=void 0,this._promise0=void 0,this._receiver0=void 0,this._resolveFromExecutor(t),this._promiseCreated(),this._fireEvent("promiseCreated",this)}function i(t){this.promise._resolveCallback(t)}function a(t){this.promise._rejectCallback(t,!1)}function s(t){var e=new o(T);e._fulfillmentHandler0=t,e._rejectionHandler0=t,e._promise0=t,e._receiver0=t}var c=function(){return new j("circular promise resolution chain\n\n See http://goo.gl/MqrFmX\n")},l=function(){return new o.PromiseInspection(this._target())},u=function(t){return o.reject(new j(t))},p={},f=t("./util");f.setReflectHandler(l);var h=function(){var t=process.domain;return void 0===t?null:t},d=function(){return null},_=function(){return{domain:h(),async:null}},v=f.isNode&&f.nodeSupportsAsyncResource?t("async_hooks").AsyncResource:null,y=function(){return{domain:h(),async:new v("Bluebird::Promise")}},g=f.isNode?_:d;f.notEnumerableProp(o,"_getContext",g);var m=function(){g=y,f.notEnumerableProp(o,"_getContext",y)},b=function(){g=_,f.notEnumerableProp(o,"_getContext",_)},C=t("./es5"),w=t("./async"),k=new w;C.defineProperty(o,"_async",{value:k});var E=t("./errors"),j=o.TypeError=E.TypeError;o.RangeError=E.RangeError;var F=o.CancellationError=E.CancellationError;o.TimeoutError=E.TimeoutError,o.OperationalError=E.OperationalError,o.RejectionError=E.OperationalError,o.AggregateError=E.AggregateError;var T=function(){},x={},R={},S=t("./thenables")(o,T),P=t("./promise_array")(o,T,S,u,n),O=t("./context")(o),A=(O.create,t("./debuggability")(o,O,m,b)),H=(A.CapturedTrace,t("./finally")(o,S,R)),N=t("./catch_filter")(R),L=t("./nodeback"),B=f.errorObj,U=f.tryCatch;return o.prototype.toString=function(){return"[object Promise]"},o.prototype.caught=o.prototype["catch"]=function(t){var e=arguments.length;if(e>1){var n,r=new Array(e-1),o=0;
31
+ for(n=0;e-1>n;++n){var i=arguments[n];if(!f.isObject(i))return u("Catch statement predicate: expecting an object but got "+f.classString(i));r[o++]=i}if(r.length=o,t=arguments[n],"function"!=typeof t)throw new j("The last argument to .catch() must be a function, got "+f.toString(t));return this.then(void 0,N(r,t,this))}return this.then(void 0,t)},o.prototype.reflect=function(){return this._then(l,l,void 0,this,void 0)},o.prototype.then=function(t,e){if(A.warnings()&&arguments.length>0&&"function"!=typeof t&&"function"!=typeof e){var n=".then() only accepts functions but was passed: "+f.classString(t);arguments.length>1&&(n+=", "+f.classString(e)),this._warn(n)}return this._then(t,e,void 0,void 0,void 0)},o.prototype.done=function(t,e){var n=this._then(t,e,void 0,void 0,void 0);n._setIsFinal()},o.prototype.spread=function(t){return"function"!=typeof t?u("expecting a function but got "+f.classString(t)):this.all()._then(t,void 0,void 0,x,void 0)},o.prototype.toJSON=function(){var t={isFulfilled:!1,isRejected:!1,fulfillmentValue:void 0,rejectionReason:void 0};return this.isFulfilled()?(t.fulfillmentValue=this.value(),t.isFulfilled=!0):this.isRejected()&&(t.rejectionReason=this.reason(),t.isRejected=!0),t},o.prototype.all=function(){return arguments.length>0&&this._warn(".all() was passed arguments but it does not take any"),new P(this).promise()},o.prototype.error=function(t){return this.caught(f.originatesFromRejection,t)},o.getNewLibraryCopy=e.exports,o.is=function(t){return t instanceof o},o.fromNode=o.fromCallback=function(t){var e=new o(T);e._captureStackTrace();var n=arguments.length>1?!!Object(arguments[1]).multiArgs:!1,r=U(t)(L(e,n));return r===B&&e._rejectCallback(r.e,!0),e._isFateSealed()||e._setAsyncGuaranteed(),e},o.all=function(t){return new P(t).promise()},o.cast=function(t){var e=S(t);return e instanceof o||(e=new o(T),e._captureStackTrace(),e._setFulfilled(),e._rejectionHandler0=t),e},o.resolve=o.fulfilled=o.cast,o.reject=o.rejected=function(t){var e=new o(T);return e._captureStackTrace(),e._rejectCallback(t,!0),e},o.setScheduler=function(t){if("function"!=typeof t)throw new j("expecting a function but got "+f.classString(t));return k.setScheduler(t)},o.prototype._then=function(t,e,n,r,i){var a=void 0!==i,s=a?i:new o(T),c=this._target(),l=c._bitField;a||(s._propagateFrom(this,3),s._captureStackTrace(),void 0===r&&0!==(2097152&this._bitField)&&(r=0!==(50397184&l)?this._boundValue():c===this?void 0:this._boundTo),this._fireEvent("promiseChained",this,s));var u=g();if(0!==(50397184&l)){var p,h,d=c._settlePromiseCtx;0!==(33554432&l)?(h=c._rejectionHandler0,p=t):0!==(16777216&l)?(h=c._fulfillmentHandler0,p=e,c._unsetRejectionIsUnhandled()):(d=c._settlePromiseLateCancellationObserver,h=new F("late cancellation observer"),c._attachExtraTrace(h),p=e),k.invoke(d,c,{handler:f.contextBind(u,p),promise:s,receiver:r,value:h})}else c._addCallbacks(t,e,s,r,u);return s},o.prototype._length=function(){return 65535&this._bitField},o.prototype._isFateSealed=function(){return 0!==(117506048&this._bitField)},o.prototype._isFollowing=function(){return 67108864===(67108864&this._bitField)},o.prototype._setLength=function(t){this._bitField=-65536&this._bitField|65535&t},o.prototype._setFulfilled=function(){this._bitField=33554432|this._bitField,this._fireEvent("promiseFulfilled",this)},o.prototype._setRejected=function(){this._bitField=16777216|this._bitField,this._fireEvent("promiseRejected",this)},o.prototype._setFollowing=function(){this._bitField=67108864|this._bitField,this._fireEvent("promiseResolved",this)},o.prototype._setIsFinal=function(){this._bitField=4194304|this._bitField},o.prototype._isFinal=function(){return(4194304&this._bitField)>0},o.prototype._unsetCancelled=function(){this._bitField=-65537&this._bitField},o.prototype._setCancelled=function(){this._bitField=65536|this._bitField,this._fireEvent("promiseCancelled",this)},o.prototype._setWillBeCancelled=function(){this._bitField=8388608|this._bitField},o.prototype._setAsyncGuaranteed=function(){if(!k.hasCustomScheduler()){var t=this._bitField;this._bitField=t|(536870912&t)>>2^134217728}},o.prototype._setNoAsyncGuarantee=function(){this._bitField=-134217729&(536870912|this._bitField)},o.prototype._receiverAt=function(t){var e=0===t?this._receiver0:this[4*t-4+3];return e===p?void 0:void 0===e&&this._isBound()?this._boundValue():e},o.prototype._promiseAt=function(t){return this[4*t-4+2]},o.prototype._fulfillmentHandlerAt=function(t){return this[4*t-4+0]},o.prototype._rejectionHandlerAt=function(t){return this[4*t-4+1]},o.prototype._boundValue=function(){},o.prototype._migrateCallback0=function(t){var e=(t._bitField,t._fulfillmentHandler0),n=t._rejectionHandler0,r=t._promise0,o=t._receiverAt(0);void 0===o&&(o=p),this._addCallbacks(e,n,r,o,null)},o.prototype._migrateCallbackAt=function(t,e){var n=t._fulfillmentHandlerAt(e),r=t._rejectionHandlerAt(e),o=t._promiseAt(e),i=t._receiverAt(e);void 0===i&&(i=p),this._addCallbacks(n,r,o,i,null)},o.prototype._addCallbacks=function(t,e,n,r,o){var i=this._length();if(i>=65531&&(i=0,this._setLength(0)),0===i)this._promise0=n,this._receiver0=r,"function"==typeof t&&(this._fulfillmentHandler0=f.contextBind(o,t)),"function"==typeof e&&(this._rejectionHandler0=f.contextBind(o,e));else{var a=4*i-4;this[a+2]=n,this[a+3]=r,"function"==typeof t&&(this[a+0]=f.contextBind(o,t)),"function"==typeof e&&(this[a+1]=f.contextBind(o,e))}return this._setLength(i+1),i},o.prototype._proxy=function(t,e){this._addCallbacks(void 0,void 0,e,t,null)},o.prototype._resolveCallback=function(t,e){if(0===(117506048&this._bitField)){if(t===this)return this._rejectCallback(c(),!1);var n=S(t,this);if(!(n instanceof o))return this._fulfill(t);e&&this._propagateFrom(n,2);var r=n._target();if(r===this)return void this._reject(c());var i=r._bitField;if(0===(50397184&i)){var a=this._length();a>0&&r._migrateCallback0(this);for(var s=1;a>s;++s)r._migrateCallbackAt(this,s);this._setFollowing(),this._setLength(0),this._setFollowee(n)}else if(0!==(33554432&i))this._fulfill(r._value());else if(0!==(16777216&i))this._reject(r._reason());else{var l=new F("late cancellation observer");r._attachExtraTrace(l),this._reject(l)}}},o.prototype._rejectCallback=function(t,e,n){var r=f.ensureErrorObject(t),o=r===t;if(!o&&!n&&A.warnings()){var i="a promise was rejected with a non-error: "+f.classString(t);this._warn(i,!0)}this._attachExtraTrace(r,e?o:!1),this._reject(t)},o.prototype._resolveFromExecutor=function(t){if(t!==T){var e=this;this._captureStackTrace(),this._pushContext();var n=!0,r=this._execute(t,function(t){e._resolveCallback(t)},function(t){e._rejectCallback(t,n)});n=!1,this._popContext(),void 0!==r&&e._rejectCallback(r,!0)}},o.prototype._settlePromiseFromHandler=function(t,e,n,r){var o=r._bitField;if(0===(65536&o)){r._pushContext();var i;e===x?n&&"number"==typeof n.length?i=U(t).apply(this._boundValue(),n):(i=B,i.e=new j("cannot .spread() a non-array: "+f.classString(n))):i=U(t).call(e,n);var a=r._popContext();o=r._bitField,0===(65536&o)&&(i===R?r._reject(n):i===B?r._rejectCallback(i.e,!1):(A.checkForgottenReturns(i,a,"",r,this),r._resolveCallback(i)))}},o.prototype._target=function(){for(var t=this;t._isFollowing();)t=t._followee();return t},o.prototype._followee=function(){return this._rejectionHandler0},o.prototype._setFollowee=function(t){this._rejectionHandler0=t},o.prototype._settlePromise=function(t,e,r,i){var a=t instanceof o,s=this._bitField,c=0!==(134217728&s);0!==(65536&s)?(a&&t._invokeInternalOnCancel(),r instanceof H&&r.isFinallyHandler()?(r.cancelPromise=t,U(e).call(r,i)===B&&t._reject(B.e)):e===l?t._fulfill(l.call(r)):r instanceof n?r._promiseCancelled(t):a||t instanceof P?t._cancel():r.cancel()):"function"==typeof e?a?(c&&t._setAsyncGuaranteed(),this._settlePromiseFromHandler(e,r,i,t)):e.call(r,i,t):r instanceof n?r._isResolved()||(0!==(33554432&s)?r._promiseFulfilled(i,t):r._promiseRejected(i,t)):a&&(c&&t._setAsyncGuaranteed(),0!==(33554432&s)?t._fulfill(i):t._reject(i))},o.prototype._settlePromiseLateCancellationObserver=function(t){var e=t.handler,n=t.promise,r=t.receiver,i=t.value;"function"==typeof e?n instanceof o?this._settlePromiseFromHandler(e,r,i,n):e.call(r,i,n):n instanceof o&&n._reject(i)},o.prototype._settlePromiseCtx=function(t){this._settlePromise(t.promise,t.handler,t.receiver,t.value)},o.prototype._settlePromise0=function(t,e,n){var r=this._promise0,o=this._receiverAt(0);this._promise0=void 0,this._receiver0=void 0,this._settlePromise(r,t,o,e)},o.prototype._clearCallbackDataAtIndex=function(t){var e=4*t-4;this[e+2]=this[e+3]=this[e+0]=this[e+1]=void 0},o.prototype._fulfill=function(t){var e=this._bitField;if(!((117506048&e)>>>16)){if(t===this){var n=c();return this._attachExtraTrace(n),this._reject(n)}this._setFulfilled(),this._rejectionHandler0=t,(65535&e)>0&&(0!==(134217728&e)?this._settlePromises():k.settlePromises(this),this._dereferenceTrace())}},o.prototype._reject=function(t){var e=this._bitField;if(!((117506048&e)>>>16))return this._setRejected(),this._fulfillmentHandler0=t,this._isFinal()?k.fatalError(t,f.isNode):void((65535&e)>0?k.settlePromises(this):this._ensurePossibleRejectionHandled())},o.prototype._fulfillPromises=function(t,e){for(var n=1;t>n;n++){var r=this._fulfillmentHandlerAt(n),o=this._promiseAt(n),i=this._receiverAt(n);this._clearCallbackDataAtIndex(n),this._settlePromise(o,r,i,e)}},o.prototype._rejectPromises=function(t,e){for(var n=1;t>n;n++){var r=this._rejectionHandlerAt(n),o=this._promiseAt(n),i=this._receiverAt(n);this._clearCallbackDataAtIndex(n),this._settlePromise(o,r,i,e)}},o.prototype._settlePromises=function(){var t=this._bitField,e=65535&t;if(e>0){if(0!==(16842752&t)){var n=this._fulfillmentHandler0;this._settlePromise0(this._rejectionHandler0,n,t),this._rejectPromises(e,n)}else{var r=this._rejectionHandler0;this._settlePromise0(this._fulfillmentHandler0,r,t),this._fulfillPromises(e,r)}this._setLength(0)}this._clearCancellationData()},o.prototype._settledValue=function(){var t=this._bitField;return 0!==(33554432&t)?this._rejectionHandler0:0!==(16777216&t)?this._fulfillmentHandler0:void 0},"undefined"!=typeof Symbol&&Symbol.toStringTag&&C.defineProperty(o.prototype,Symbol.toStringTag,{get:function(){return"Object"}}),o.defer=o.pending=function(){A.deprecated("Promise.defer","new Promise");var t=new o(T);return{promise:t,resolve:i,reject:a}},f.notEnumerableProp(o,"_makeSelfResolutionError",c),t("./method")(o,T,S,u,A),t("./bind")(o,T,S,A),t("./cancel")(o,P,u,A),t("./direct_resolve")(o),t("./synchronous_inspection")(o),t("./join")(o,P,S,T,k),o.Promise=o,o.version="3.7.2",f.toFastProperties(o),f.toFastProperties(o.prototype),s({a:1}),s({b:2}),s({c:3}),s(1),s(function(){}),s(void 0),s(!1),s(new o(T)),A.setBounds(w.firstLineError,f.lastLineError),o}},{"./async":1,"./bind":2,"./cancel":4,"./catch_filter":5,"./context":6,"./debuggability":7,"./direct_resolve":8,"./errors":9,"./es5":10,"./finally":11,"./join":12,"./method":13,"./nodeback":14,"./promise_array":16,"./synchronous_inspection":19,"./thenables":20,"./util":21,async_hooks:void 0}],16:[function(t,e,n){"use strict";e.exports=function(e,n,r,o,i){function a(t){switch(t){case-2:return[];case-3:return{};case-6:return new Map}}function s(t){var r=this._promise=new e(n);t instanceof e&&(r._propagateFrom(t,3),t.suppressUnhandledRejections()),r._setOnCancel(this),this._values=t,this._length=0,this._totalResolved=0,this._init(void 0,-2)}var c=t("./util");c.isArray;return c.inherits(s,i),s.prototype.length=function(){return this._length},s.prototype.promise=function(){return this._promise},s.prototype._init=function l(t,n){var i=r(this._values,this._promise);if(i instanceof e){i=i._target();var s=i._bitField;if(this._values=i,0===(50397184&s))return this._promise._setAsyncGuaranteed(),i._then(l,this._reject,void 0,this,n);if(0===(33554432&s))return 0!==(16777216&s)?this._reject(i._reason()):this._cancel();i=i._value()}if(i=c.asArray(i),null===i){var u=o("expecting an array or an iterable object but got "+c.classString(i)).reason();return void this._promise._rejectCallback(u,!1)}return 0===i.length?void(-5===n?this._resolveEmptyArray():this._resolve(a(n))):void this._iterate(i)},s.prototype._iterate=function(t){var n=this.getActualLength(t.length);this._length=n,this._values=this.shouldCopyValues()?new Array(n):this._values;for(var o=this._promise,i=!1,a=null,s=0;n>s;++s){var c=r(t[s],o);c instanceof e?(c=c._target(),a=c._bitField):a=null,i?null!==a&&c.suppressUnhandledRejections():null!==a?0===(50397184&a)?(c._proxy(this,s),this._values[s]=c):i=0!==(33554432&a)?this._promiseFulfilled(c._value(),s):0!==(16777216&a)?this._promiseRejected(c._reason(),s):this._promiseCancelled(s):i=this._promiseFulfilled(c,s)}i||o._setAsyncGuaranteed()},s.prototype._isResolved=function(){return null===this._values},s.prototype._resolve=function(t){this._values=null,this._promise._fulfill(t)},s.prototype._cancel=function(){!this._isResolved()&&this._promise._isCancellable()&&(this._values=null,this._promise._cancel())},s.prototype._reject=function(t){this._values=null,this._promise._rejectCallback(t,!1)},s.prototype._promiseFulfilled=function(t,e){this._values[e]=t;var n=++this._totalResolved;return n>=this._length?(this._resolve(this._values),!0):!1},s.prototype._promiseCancelled=function(){return this._cancel(),!0},s.prototype._promiseRejected=function(t){return this._totalResolved++,this._reject(t),!0},s.prototype._resultCancelled=function(){if(!this._isResolved()){var t=this._values;if(this._cancel(),t instanceof e)t.cancel();else for(var n=0;n<t.length;++n)t[n]instanceof e&&t[n].cancel()}},s.prototype.shouldCopyValues=function(){return!0},s.prototype.getActualLength=function(t){return t},s}},{"./util":21}],17:[function(t,e,n){"use strict";function r(t,e,n,r,o){for(var i=0;o>i;++i)n[i+r]=t[i+e],t[i+e]=void 0}function o(t){this._capacity=t,this._length=0,this._front=0}o.prototype._willBeOverCapacity=function(t){return this._capacity<t},o.prototype._pushOne=function(t){var e=this.length();this._checkCapacity(e+1);var n=this._front+e&this._capacity-1;this[n]=t,this._length=e+1},o.prototype.push=function(t,e,n){var r=this.length()+3;if(this._willBeOverCapacity(r))return this._pushOne(t),this._pushOne(e),void this._pushOne(n);var o=this._front+r-3;this._checkCapacity(r);var i=this._capacity-1;this[o+0&i]=t,this[o+1&i]=e,this[o+2&i]=n,this._length=r},o.prototype.shift=function(){var t=this._front,e=this[t];return this[t]=void 0,this._front=t+1&this._capacity-1,this._length--,e},o.prototype.length=function(){return this._length},o.prototype._checkCapacity=function(t){this._capacity<t&&this._resizeTo(this._capacity<<1)},o.prototype._resizeTo=function(t){var e=this._capacity;this._capacity=t;var n=this._front,o=this._length,i=n+o&e-1;r(this,0,this,e,i)},e.exports=o},{}],18:[function(t,e,n){"use strict";var r,o=t("./util"),i=function(){throw new Error("No async scheduler available\n\n See http://goo.gl/MqrFmX\n")},a=o.getNativePromise();if(o.isNode&&"undefined"==typeof MutationObserver){var s=global.setImmediate,c=process.nextTick;r=o.isRecentNode?function(t){s.call(global,t)}:function(t){c.call(process,t)}}else if("function"==typeof a&&"function"==typeof a.resolve){var l=a.resolve();r=function(t){l.then(t)}}else r="undefined"!=typeof MutationObserver&&("undefined"==typeof window||!window.navigator||!window.navigator.standalone&&!window.cordova)&&"classList"in document.documentElement?function(){var t=document.createElement("div"),e={attributes:!0},n=!1,r=document.createElement("div"),o=new MutationObserver(function(){t.classList.toggle("foo"),n=!1});o.observe(r,e);var i=function(){n||(n=!0,r.classList.toggle("foo"))};return function(n){var r=new MutationObserver(function(){r.disconnect(),n()});r.observe(t,e),i()}}():"undefined"!=typeof setImmediate?function(t){setImmediate(t)}:"undefined"!=typeof setTimeout?function(t){setTimeout(t,0)}:i;e.exports=r},{"./util":21}],19:[function(t,e,n){"use strict";e.exports=function(t){function e(t){void 0!==t?(t=t._target(),this._bitField=t._bitField,this._settledValueField=t._isFateSealed()?t._settledValue():void 0):(this._bitField=0,this._settledValueField=void 0)}e.prototype._settledValue=function(){return this._settledValueField};var n=e.prototype.value=function(){if(!this.isFulfilled())throw new TypeError("cannot get fulfillment value of a non-fulfilled promise\n\n See http://goo.gl/MqrFmX\n");return this._settledValue()},r=e.prototype.error=e.prototype.reason=function(){if(!this.isRejected())throw new TypeError("cannot get rejection reason of a non-rejected promise\n\n See http://goo.gl/MqrFmX\n");return this._settledValue()},o=e.prototype.isFulfilled=function(){return 0!==(33554432&this._bitField)},i=e.prototype.isRejected=function(){return 0!==(16777216&this._bitField)},a=e.prototype.isPending=function(){return 0===(50397184&this._bitField)},s=e.prototype.isResolved=function(){return 0!==(50331648&this._bitField)};e.prototype.isCancelled=function(){return 0!==(8454144&this._bitField)},t.prototype.__isCancelled=function(){return 65536===(65536&this._bitField)},t.prototype._isCancelled=function(){return this._target().__isCancelled()},t.prototype.isCancelled=function(){return 0!==(8454144&this._target()._bitField)},t.prototype.isPending=function(){return a.call(this._target())},t.prototype.isRejected=function(){return i.call(this._target())},t.prototype.isFulfilled=function(){return o.call(this._target())},t.prototype.isResolved=function(){return s.call(this._target())},t.prototype.value=function(){return n.call(this._target())},t.prototype.reason=function(){var t=this._target();return t._unsetRejectionIsUnhandled(),r.call(t)},t.prototype._value=function(){return this._settledValue()},t.prototype._reason=function(){return this._unsetRejectionIsUnhandled(),this._settledValue()},t.PromiseInspection=e}},{}],20:[function(t,e,n){"use strict";e.exports=function(e,n){function r(t,r){if(u(t)){if(t instanceof e)return t;var o=i(t);if(o===l){r&&r._pushContext();var c=e.reject(o.e);return r&&r._popContext(),c}if("function"==typeof o){if(a(t)){var c=new e(n);return t._then(c._fulfill,c._reject,void 0,c,null),c}return s(t,o,r)}}return t}function o(t){return t.then}function i(t){try{return o(t)}catch(e){return l.e=e,l}}function a(t){try{return p.call(t,"_promise0")}catch(e){return!1}}function s(t,r,o){function i(t){s&&(s._resolveCallback(t),s=null)}function a(t){s&&(s._rejectCallback(t,p,!0),s=null)}var s=new e(n),u=s;o&&o._pushContext(),s._captureStackTrace(),o&&o._popContext();var p=!0,f=c.tryCatch(r).call(t,i,a);return p=!1,s&&f===l&&(s._rejectCallback(f.e,!0,!0),s=null),u}var c=t("./util"),l=c.errorObj,u=c.isObject,p={}.hasOwnProperty;return r}},{"./util":21}],21:[function(t,e,n){"use strict";function r(){try{var t=R;return R=null,t.apply(this,arguments)}catch(e){return x.e=e,x}}function o(t){return R=t,r}function i(t){return null==t||t===!0||t===!1||"string"==typeof t||"number"==typeof t}function a(t){return"function"==typeof t||"object"==typeof t&&null!==t}function s(t){return i(t)?new Error(v(t)):t}function c(t,e){var n,r=t.length,o=new Array(r+1);for(n=0;r>n;++n)o[n]=t[n];return o[n]=e,o}function l(t,e,n){if(!F.isES5)return{}.hasOwnProperty.call(t,e)?t[e]:void 0;var r=Object.getOwnPropertyDescriptor(t,e);return null!=r?null==r.get&&null==r.set?r.value:n:void 0}function u(t,e,n){if(i(t))return t;var r={value:n,configurable:!0,enumerable:!1,writable:!0};return F.defineProperty(t,e,r),t}function p(t){throw t}function f(t){try{if("function"==typeof t){var e=F.names(t.prototype),n=F.isES5&&e.length>1,r=e.length>0&&!(1===e.length&&"constructor"===e[0]),o=A.test(t+"")&&F.names(t).length>0;if(n||r||o)return!0}return!1}catch(i){return!1}}function h(t){function e(){}function n(){return typeof r.foo}e.prototype=t;var r=new e;return n(),n(),t}function d(t){return H.test(t)}function _(t,e,n){for(var r=new Array(t),o=0;t>o;++o)r[o]=e+o+n;return r}function v(t){try{return t+""}catch(e){return"[no string representation]"}}function y(t){return t instanceof Error||null!==t&&"object"==typeof t&&"string"==typeof t.message&&"string"==typeof t.name}function g(t){try{u(t,"isOperational",!0)}catch(e){}}function m(t){return null==t?!1:t instanceof Error.__BluebirdErrorTypes__.OperationalError||t.isOperational===!0}function b(t){return y(t)&&F.propertyIsWritable(t,"stack")}function C(t){return{}.toString.call(t)}function w(t,e,n){for(var r=F.names(t),o=0;o<r.length;++o){var i=r[o];if(n(i))try{F.defineProperty(e,i,F.getDescriptor(t,i))}catch(a){}}}function k(t){return I?process.env[t]:void 0}function E(){if("function"==typeof Promise)try{var t=new Promise(function(){});if("[object Promise]"===C(t))return Promise}catch(e){}}function j(t,e){if(null===t||"function"!=typeof e||e===D)return e;null!==t.domain&&(e=t.domain.bind(e));var n=t.async;if(null!==n){var r=e;e=function(){var t=new Array(2).concat([].slice.call(arguments));return t[0]=r,t[1]=this,n.runInAsyncScope.apply(n,t)}}return e}var F=t("./es5"),T="undefined"==typeof navigator,x={e:{}},R,S="undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:void 0!==this?this:null,P=function(t,e){function n(){this.constructor=t,this.constructor$=e;for(var n in e.prototype)r.call(e.prototype,n)&&"$"!==n.charAt(n.length-1)&&(this[n+"$"]=e.prototype[n])}var r={}.hasOwnProperty;return n.prototype=e.prototype,t.prototype=new n,t.prototype},O=function(){var t=[Array.prototype,Object.prototype,Function.prototype],e=function(e){for(var n=0;n<t.length;++n)if(t[n]===e)return!0;return!1};if(F.isES5){var n=Object.getOwnPropertyNames;return function(t){for(var r=[],o=Object.create(null);null!=t&&!e(t);){var i;try{i=n(t)}catch(a){return r}for(var s=0;s<i.length;++s){var c=i[s];if(!o[c]){o[c]=!0;var l=Object.getOwnPropertyDescriptor(t,c);null!=l&&null==l.get&&null==l.set&&r.push(c)}}t=F.getPrototypeOf(t)}return r}}var r={}.hasOwnProperty;return function(n){if(e(n))return[];var o=[];t:for(var i in n)if(r.call(n,i))o.push(i);else{for(var a=0;a<t.length;++a)if(r.call(t[a],i))continue t;o.push(i)}return o}}(),A=/this\s*\.\s*\S+\s*=/,H=/^[a-z$_][a-z$_0-9]*$/i,N=function(){return"stack"in new Error?function(t){return b(t)?t:new Error(v(t))}:function(t){if(b(t))return t;try{throw new Error(v(t))}catch(e){return e}}}(),L=function(t){return F.isArray(t)?t:null};if("undefined"!=typeof Symbol&&Symbol.iterator){var B="function"==typeof Array.from?function(t){return Array.from(t)}:function(t){for(var e,n=[],r=t[Symbol.iterator]();!(e=r.next()).done;)n.push(e.value);return n};L=function(t){return F.isArray(t)?t:null!=t&&"function"==typeof t[Symbol.iterator]?B(t):null}}var U="undefined"!=typeof process&&"[object process]"===C(process).toLowerCase(),I="undefined"!=typeof process&&"undefined"!=typeof process.env,D,V={setReflectHandler:function(t){D=t},isClass:f,isIdentifier:d,inheritedDataKeys:O,getDataPropertyOrDefault:l,thrower:p,isArray:F.isArray,asArray:L,notEnumerableProp:u,isPrimitive:i,isObject:a,isError:y,canEvaluate:T,errorObj:x,tryCatch:o,inherits:P,withAppended:c,maybeWrapAsError:s,toFastProperties:h,filledRange:_,toString:v,canAttachTrace:b,ensureErrorObject:N,originatesFromRejection:m,markAsOriginatingFromRejection:g,classString:C,copyDescriptors:w,isNode:U,hasEnvVariables:I,env:k,global:S,getNativePromise:E,contextBind:j};V.isRecentNode=V.isNode&&function(){var t;return process.versions&&process.versions.node?t=process.versions.node.split(".").map(Number):process.version&&(t=process.version.split(".").map(Number)),0===t[0]&&t[1]>10||t[0]>0}(),V.nodeSupportsAsyncResource=V.isNode&&function(){var e=!1;try{var n=t("async_hooks").AsyncResource;e="function"==typeof n.prototype.runInAsyncScope}catch(r){e=!1}return e}(),V.isNode&&V.toFastProperties(process);try{throw new Error}catch(Q){V.lastLineError=Q}e.exports=V},{"./es5":10,async_hooks:void 0}]},{},[3])(3)}),"undefined"!=typeof window&&null!==window?window.P=window.Promise:"undefined"!=typeof self&&null!==self&&(self.P=self.Promise);