brwy_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3467) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +8 -0
  4. data/lib/brwy_rails/middleware.rb +54 -0
  5. data/lib/brwy_rails/railtie.rb +21 -0
  6. data/lib/brwy_rails/runner.rb +75 -0
  7. data/lib/brwy_rails/version.rb +3 -0
  8. data/lib/brwy_rails.rb +5 -0
  9. data/lib/tasks/bywy_rails_tasks.rake +17 -0
  10. data/test/brwy_rails_test.rb +7 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +1 -0
  14. data/test/dummy/app/assets/javascripts/sub.js +1 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/controllers/home_controller.rb +4 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/views/home/index.html +1 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/bin/setup +29 -0
  25. data/test/dummy/config/application.rb +22 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +42 -0
  30. data/test/dummy/config/environments/production.rb +79 -0
  31. data/test/dummy/config/environments/test.rb +42 -0
  32. data/test/dummy/config/initializers/assets.rb +11 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/test/dummy/config/initializers/inflections.rb +16 -0
  37. data/test/dummy/config/initializers/mime_types.rb +4 -0
  38. data/test/dummy/config/initializers/session_store.rb +3 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +23 -0
  41. data/test/dummy/config/routes.rb +56 -0
  42. data/test/dummy/config/secrets.yml +22 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/log/development.log +1367 -0
  46. data/test/dummy/log/production.log +0 -0
  47. data/test/dummy/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
  48. data/test/dummy/node_modules/JSONStream/LICENSE.MIT +24 -0
  49. data/test/dummy/node_modules/JSONStream/examples/all_docs.js +13 -0
  50. data/test/dummy/node_modules/JSONStream/index.js +209 -0
  51. data/test/dummy/node_modules/JSONStream/package.json +104 -0
  52. data/test/dummy/node_modules/JSONStream/readme.markdown +188 -0
  53. data/test/dummy/node_modules/JSONStream/test/bool.js +41 -0
  54. data/test/dummy/node_modules/JSONStream/test/browser.js +18 -0
  55. data/test/dummy/node_modules/JSONStream/test/destroy_missing.js +27 -0
  56. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot1.js +29 -0
  57. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot2.js +29 -0
  58. data/test/dummy/node_modules/JSONStream/test/empty.js +44 -0
  59. data/test/dummy/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
  60. data/test/dummy/node_modules/JSONStream/test/fixtures/couch_sample.json +18 -0
  61. data/test/dummy/node_modules/JSONStream/test/fixtures/depth.json +15 -0
  62. data/test/dummy/node_modules/JSONStream/test/fn.js +39 -0
  63. data/test/dummy/node_modules/JSONStream/test/gen.js +135 -0
  64. data/test/dummy/node_modules/JSONStream/test/issues.js +20 -0
  65. data/test/dummy/node_modules/JSONStream/test/keys.js +85 -0
  66. data/test/dummy/node_modules/JSONStream/test/map.js +40 -0
  67. data/test/dummy/node_modules/JSONStream/test/multiple_objects.js +36 -0
  68. data/test/dummy/node_modules/JSONStream/test/multiple_objects_error.js +29 -0
  69. data/test/dummy/node_modules/JSONStream/test/null.js +28 -0
  70. data/test/dummy/node_modules/JSONStream/test/parsejson.js +28 -0
  71. data/test/dummy/node_modules/JSONStream/test/stringify.js +41 -0
  72. data/test/dummy/node_modules/JSONStream/test/stringify_object.js +47 -0
  73. data/test/dummy/node_modules/JSONStream/test/test.js +35 -0
  74. data/test/dummy/node_modules/JSONStream/test/test2.js +29 -0
  75. data/test/dummy/node_modules/JSONStream/test/two-ways.js +41 -0
  76. data/test/dummy/node_modules/acorn/AUTHORS +38 -0
  77. data/test/dummy/node_modules/acorn/LICENSE +19 -0
  78. data/test/dummy/node_modules/acorn/README.md +377 -0
  79. data/test/dummy/node_modules/acorn/bin/acorn +54 -0
  80. data/test/dummy/node_modules/acorn/bin/build-acorn.js +51 -0
  81. data/test/dummy/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  82. data/test/dummy/node_modules/acorn/bin/prepublish.sh +2 -0
  83. data/test/dummy/node_modules/acorn/bin/update_authors.sh +6 -0
  84. data/test/dummy/node_modules/acorn/bin/without_eval +48 -0
  85. data/test/dummy/node_modules/acorn/dist/acorn.js +4014 -0
  86. data/test/dummy/node_modules/acorn/dist/acorn_csp.js +3985 -0
  87. data/test/dummy/node_modules/acorn/dist/acorn_loose.js +1298 -0
  88. data/test/dummy/node_modules/acorn/dist/walk.js +342 -0
  89. data/test/dummy/node_modules/acorn/package.json +194 -0
  90. data/test/dummy/node_modules/acorn/src/expression.js +697 -0
  91. data/test/dummy/node_modules/acorn/src/identifier.js +129 -0
  92. data/test/dummy/node_modules/acorn/src/index.js +75 -0
  93. data/test/dummy/node_modules/acorn/src/location.js +68 -0
  94. data/test/dummy/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  95. data/test/dummy/node_modules/acorn/src/loose/expression.js +511 -0
  96. data/test/dummy/node_modules/acorn/src/loose/index.js +50 -0
  97. data/test/dummy/node_modules/acorn/src/loose/parseutil.js +126 -0
  98. data/test/dummy/node_modules/acorn/src/loose/state.js +17 -0
  99. data/test/dummy/node_modules/acorn/src/loose/statement.js +419 -0
  100. data/test/dummy/node_modules/acorn/src/loose/tokenize.js +108 -0
  101. data/test/dummy/node_modules/acorn/src/lval.js +213 -0
  102. data/test/dummy/node_modules/acorn/src/node.js +70 -0
  103. data/test/dummy/node_modules/acorn/src/options.js +119 -0
  104. data/test/dummy/node_modules/acorn/src/parseutil.js +89 -0
  105. data/test/dummy/node_modules/acorn/src/state.js +78 -0
  106. data/test/dummy/node_modules/acorn/src/statement.js +594 -0
  107. data/test/dummy/node_modules/acorn/src/tokencontext.js +107 -0
  108. data/test/dummy/node_modules/acorn/src/tokenize.js +672 -0
  109. data/test/dummy/node_modules/acorn/src/tokentype.js +142 -0
  110. data/test/dummy/node_modules/acorn/src/util.js +9 -0
  111. data/test/dummy/node_modules/acorn/src/walk/index.js +291 -0
  112. data/test/dummy/node_modules/acorn/src/whitespace.js +12 -0
  113. data/test/dummy/node_modules/anymatch/LICENSE +15 -0
  114. data/test/dummy/node_modules/anymatch/README.md +91 -0
  115. data/test/dummy/node_modules/anymatch/index.js +64 -0
  116. data/test/dummy/node_modules/anymatch/package.json +96 -0
  117. data/test/dummy/node_modules/arr-diff/LICENSE +21 -0
  118. data/test/dummy/node_modules/arr-diff/README.md +74 -0
  119. data/test/dummy/node_modules/arr-diff/index.js +58 -0
  120. data/test/dummy/node_modules/arr-diff/package.json +111 -0
  121. data/test/dummy/node_modules/arr-flatten/LICENSE +21 -0
  122. data/test/dummy/node_modules/arr-flatten/README.md +73 -0
  123. data/test/dummy/node_modules/arr-flatten/index.js +27 -0
  124. data/test/dummy/node_modules/arr-flatten/package.json +100 -0
  125. data/test/dummy/node_modules/array-filter/README.md +54 -0
  126. data/test/dummy/node_modules/array-filter/index.js +19 -0
  127. data/test/dummy/node_modules/array-filter/package.json +96 -0
  128. data/test/dummy/node_modules/array-filter/test/filter.js +12 -0
  129. data/test/dummy/node_modules/array-filter/test/holes.js +12 -0
  130. data/test/dummy/node_modules/array-map/LICENSE +18 -0
  131. data/test/dummy/node_modules/array-map/example/map.js +5 -0
  132. data/test/dummy/node_modules/array-map/index.js +11 -0
  133. data/test/dummy/node_modules/array-map/package.json +100 -0
  134. data/test/dummy/node_modules/array-map/readme.markdown +46 -0
  135. data/test/dummy/node_modules/array-map/test/map.js +77 -0
  136. data/test/dummy/node_modules/array-reduce/LICENSE +18 -0
  137. data/test/dummy/node_modules/array-reduce/example/sum.js +4 -0
  138. data/test/dummy/node_modules/array-reduce/index.js +18 -0
  139. data/test/dummy/node_modules/array-reduce/package.json +99 -0
  140. data/test/dummy/node_modules/array-reduce/readme.markdown +46 -0
  141. data/test/dummy/node_modules/array-reduce/test/reduce.js +85 -0
  142. data/test/dummy/node_modules/array-unique/LICENSE +21 -0
  143. data/test/dummy/node_modules/array-unique/README.md +51 -0
  144. data/test/dummy/node_modules/array-unique/index.js +28 -0
  145. data/test/dummy/node_modules/array-unique/package.json +86 -0
  146. data/test/dummy/node_modules/arrify/index.js +8 -0
  147. data/test/dummy/node_modules/arrify/license +21 -0
  148. data/test/dummy/node_modules/arrify/package.json +89 -0
  149. data/test/dummy/node_modules/arrify/readme.md +36 -0
  150. data/test/dummy/node_modules/asn1.js/README.md +100 -0
  151. data/test/dummy/node_modules/asn1.js/lib/asn1/api.js +59 -0
  152. data/test/dummy/node_modules/asn1.js/lib/asn1/base/buffer.js +116 -0
  153. data/test/dummy/node_modules/asn1.js/lib/asn1/base/index.js +6 -0
  154. data/test/dummy/node_modules/asn1.js/lib/asn1/base/node.js +621 -0
  155. data/test/dummy/node_modules/asn1.js/lib/asn1/base/reporter.js +102 -0
  156. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/der.js +42 -0
  157. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/index.js +19 -0
  158. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/der.js +321 -0
  159. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/index.js +4 -0
  160. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/pem.js +50 -0
  161. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/der.js +294 -0
  162. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/index.js +4 -0
  163. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/pem.js +23 -0
  164. data/test/dummy/node_modules/asn1.js/lib/asn1.js +9 -0
  165. data/test/dummy/node_modules/asn1.js/package.json +89 -0
  166. data/test/dummy/node_modules/asn1.js/rfc/2560/index.js +149 -0
  167. data/test/dummy/node_modules/asn1.js/rfc/2560/package.json +27 -0
  168. data/test/dummy/node_modules/asn1.js/rfc/2560/test/basic-test.js +50 -0
  169. data/test/dummy/node_modules/asn1.js/rfc/5280/index.js +878 -0
  170. data/test/dummy/node_modules/asn1.js/rfc/5280/package.json +24 -0
  171. data/test/dummy/node_modules/asn1.js/rfc/5280/test/basic-test.js +105 -0
  172. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert1.crt +0 -0
  173. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert2.crt +0 -0
  174. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert3.crt +0 -0
  175. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert4.crt +0 -0
  176. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert5.crt +0 -0
  177. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert6.crt +0 -0
  178. data/test/dummy/node_modules/asn1.js/test/der-decode-test.js +149 -0
  179. data/test/dummy/node_modules/asn1.js/test/der-encode-test.js +133 -0
  180. data/test/dummy/node_modules/asn1.js/test/error-test.js +222 -0
  181. data/test/dummy/node_modules/asn1.js/test/fixtures.js +7 -0
  182. data/test/dummy/node_modules/asn1.js/test/pem-test.js +54 -0
  183. data/test/dummy/node_modules/asn1.js/test/ping-pong-test.js +170 -0
  184. data/test/dummy/node_modules/asn1.js/test/use-test.js +128 -0
  185. data/test/dummy/node_modules/assert/LICENSE +18 -0
  186. data/test/dummy/node_modules/assert/README.md +64 -0
  187. data/test/dummy/node_modules/assert/assert.js +359 -0
  188. data/test/dummy/node_modules/assert/package.json +80 -0
  189. data/test/dummy/node_modules/assert/test.js +343 -0
  190. data/test/dummy/node_modules/ast-types/LICENSE +20 -0
  191. data/test/dummy/node_modules/ast-types/README.md +489 -0
  192. data/test/dummy/node_modules/ast-types/def/babel.js +105 -0
  193. data/test/dummy/node_modules/ast-types/def/core.js +367 -0
  194. data/test/dummy/node_modules/ast-types/def/e4x.js +84 -0
  195. data/test/dummy/node_modules/ast-types/def/es6.js +217 -0
  196. data/test/dummy/node_modules/ast-types/def/es7.js +36 -0
  197. data/test/dummy/node_modules/ast-types/def/esprima.js +96 -0
  198. data/test/dummy/node_modules/ast-types/def/flow.js +269 -0
  199. data/test/dummy/node_modules/ast-types/def/jsx.js +100 -0
  200. data/test/dummy/node_modules/ast-types/def/mozilla.js +49 -0
  201. data/test/dummy/node_modules/ast-types/lib/equiv.js +184 -0
  202. data/test/dummy/node_modules/ast-types/lib/node-path.js +474 -0
  203. data/test/dummy/node_modules/ast-types/lib/path-visitor.js +419 -0
  204. data/test/dummy/node_modules/ast-types/lib/path.js +366 -0
  205. data/test/dummy/node_modules/ast-types/lib/scope.js +330 -0
  206. data/test/dummy/node_modules/ast-types/lib/shared.js +41 -0
  207. data/test/dummy/node_modules/ast-types/lib/types.js +828 -0
  208. data/test/dummy/node_modules/ast-types/main.js +34 -0
  209. data/test/dummy/node_modules/ast-types/package.json +100 -0
  210. data/test/dummy/node_modules/astw/LICENSE +18 -0
  211. data/test/dummy/node_modules/astw/example/types.js +8 -0
  212. data/test/dummy/node_modules/astw/index.js +51 -0
  213. data/test/dummy/node_modules/astw/package.json +96 -0
  214. data/test/dummy/node_modules/astw/readme.markdown +52 -0
  215. data/test/dummy/node_modules/astw/test/json.js +13 -0
  216. data/test/dummy/node_modules/astw/test/parent.js +25 -0
  217. data/test/dummy/node_modules/async-each/CHANGELOG.md +23 -0
  218. data/test/dummy/node_modules/async-each/README.md +64 -0
  219. data/test/dummy/node_modules/async-each/bower.json +22 -0
  220. data/test/dummy/node_modules/async-each/component.json +18 -0
  221. data/test/dummy/node_modules/async-each/index.js +38 -0
  222. data/test/dummy/node_modules/async-each/package.json +89 -0
  223. data/test/dummy/node_modules/async-each/test.js +13 -0
  224. data/test/dummy/node_modules/balanced-match/LICENSE.md +21 -0
  225. data/test/dummy/node_modules/balanced-match/Makefile +6 -0
  226. data/test/dummy/node_modules/balanced-match/README.md +89 -0
  227. data/test/dummy/node_modules/balanced-match/example.js +5 -0
  228. data/test/dummy/node_modules/balanced-match/index.js +50 -0
  229. data/test/dummy/node_modules/balanced-match/package.json +98 -0
  230. data/test/dummy/node_modules/balanced-match/test/balanced.js +84 -0
  231. data/test/dummy/node_modules/base64-js/LICENSE.MIT +21 -0
  232. data/test/dummy/node_modules/base64-js/README.md +31 -0
  233. data/test/dummy/node_modules/base64-js/base64js.min.js +1 -0
  234. data/test/dummy/node_modules/base64-js/bower.json +33 -0
  235. data/test/dummy/node_modules/base64-js/lib/b64.js +109 -0
  236. data/test/dummy/node_modules/base64-js/package.json +87 -0
  237. data/test/dummy/node_modules/base64-js/test/big-data.js +24 -0
  238. data/test/dummy/node_modules/base64-js/test/convert.js +47 -0
  239. data/test/dummy/node_modules/base64-js/test/url-safe.js +18 -0
  240. data/test/dummy/node_modules/binary-extensions/binary-extensions.json +188 -0
  241. data/test/dummy/node_modules/binary-extensions/license +21 -0
  242. data/test/dummy/node_modules/binary-extensions/package.json +104 -0
  243. data/test/dummy/node_modules/binary-extensions/readme.md +33 -0
  244. data/test/dummy/node_modules/bn.js/README.md +219 -0
  245. data/test/dummy/node_modules/bn.js/lib/bn.js +3419 -0
  246. data/test/dummy/node_modules/bn.js/package.json +104 -0
  247. data/test/dummy/node_modules/bn.js/test/arithmetic-test.js +635 -0
  248. data/test/dummy/node_modules/bn.js/test/binary-test.js +228 -0
  249. data/test/dummy/node_modules/bn.js/test/constructor-test.js +149 -0
  250. data/test/dummy/node_modules/bn.js/test/fixtures.js +264 -0
  251. data/test/dummy/node_modules/bn.js/test/pummel/dh-group-test.js +23 -0
  252. data/test/dummy/node_modules/bn.js/test/red-test.js +263 -0
  253. data/test/dummy/node_modules/bn.js/test/utils-test.js +345 -0
  254. data/test/dummy/node_modules/bn.js/util/genCombMulTo.js +65 -0
  255. data/test/dummy/node_modules/bn.js/util/genCombMulTo10.js +64 -0
  256. data/test/dummy/node_modules/brace-expansion/README.md +122 -0
  257. data/test/dummy/node_modules/brace-expansion/example.js +8 -0
  258. data/test/dummy/node_modules/brace-expansion/index.js +191 -0
  259. data/test/dummy/node_modules/brace-expansion/package.json +105 -0
  260. data/test/dummy/node_modules/braces/LICENSE +21 -0
  261. data/test/dummy/node_modules/braces/README.md +248 -0
  262. data/test/dummy/node_modules/braces/index.js +399 -0
  263. data/test/dummy/node_modules/braces/package.json +149 -0
  264. data/test/dummy/node_modules/brorand/README.md +26 -0
  265. data/test/dummy/node_modules/brorand/index.js +57 -0
  266. data/test/dummy/node_modules/brorand/package.json +81 -0
  267. data/test/dummy/node_modules/brorand/test/api-test.js +8 -0
  268. data/test/dummy/node_modules/browser-pack/LICENSE +18 -0
  269. data/test/dummy/node_modules/browser-pack/_prelude.js +1 -0
  270. data/test/dummy/node_modules/browser-pack/bin/cmd.js +4 -0
  271. data/test/dummy/node_modules/browser-pack/bin/prepublish.js +8 -0
  272. data/test/dummy/node_modules/browser-pack/example/input.json +13 -0
  273. data/test/dummy/node_modules/browser-pack/example/output.js +1 -0
  274. data/test/dummy/node_modules/browser-pack/example/sourcemap/input.json +15 -0
  275. data/test/dummy/node_modules/browser-pack/example/sourcemap/output.js +6 -0
  276. data/test/dummy/node_modules/browser-pack/index.js +121 -0
  277. data/test/dummy/node_modules/browser-pack/package.json +120 -0
  278. data/test/dummy/node_modules/browser-pack/prelude.js +44 -0
  279. data/test/dummy/node_modules/browser-pack/readme.markdown +96 -0
  280. data/test/dummy/node_modules/browser-pack/test/comment.js +33 -0
  281. data/test/dummy/node_modules/browser-pack/test/empty.js +33 -0
  282. data/test/dummy/node_modules/browser-pack/test/not_found.js +34 -0
  283. data/test/dummy/node_modules/browser-pack/test/only_execute_entries.js +26 -0
  284. data/test/dummy/node_modules/browser-pack/test/order.js +38 -0
  285. data/test/dummy/node_modules/browser-pack/test/pack.js +28 -0
  286. data/test/dummy/node_modules/browser-pack/test/raw.js +32 -0
  287. data/test/dummy/node_modules/browser-pack/test/source-maps-existing.js +59 -0
  288. data/test/dummy/node_modules/browser-pack/test/source-maps.js +195 -0
  289. data/test/dummy/node_modules/browser-pack/test/this.js +24 -0
  290. data/test/dummy/node_modules/browser-pack/test/unicode.js +32 -0
  291. data/test/dummy/node_modules/browser-resolve/LICENSE +21 -0
  292. data/test/dummy/node_modules/browser-resolve/README.md +141 -0
  293. data/test/dummy/node_modules/browser-resolve/empty.js +0 -0
  294. data/test/dummy/node_modules/browser-resolve/index.js +340 -0
  295. data/test/dummy/node_modules/browser-resolve/package.json +89 -0
  296. data/test/dummy/node_modules/browserify/LICENSE +63 -0
  297. data/test/dummy/node_modules/browserify/bin/advanced.txt +100 -0
  298. data/test/dummy/node_modules/browserify/bin/args.js +266 -0
  299. data/test/dummy/node_modules/browserify/bin/cmd.js +74 -0
  300. data/test/dummy/node_modules/browserify/bin/usage.txt +34 -0
  301. data/test/dummy/node_modules/browserify/changelog.markdown +1161 -0
  302. data/test/dummy/node_modules/browserify/example/api/browser/bar.js +1 -0
  303. data/test/dummy/node_modules/browserify/example/api/browser/foo.js +5 -0
  304. data/test/dummy/node_modules/browserify/example/api/browser/main.js +2 -0
  305. data/test/dummy/node_modules/browserify/example/api/build.js +4 -0
  306. data/test/dummy/node_modules/browserify/example/multiple_bundles/beep.js +2 -0
  307. data/test/dummy/node_modules/browserify/example/multiple_bundles/boop.js +2 -0
  308. data/test/dummy/node_modules/browserify/example/multiple_bundles/build.sh +4 -0
  309. data/test/dummy/node_modules/browserify/example/multiple_bundles/robot.js +1 -0
  310. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/beep.html +2 -0
  311. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/boop.html +2 -0
  312. data/test/dummy/node_modules/browserify/example/source_maps/build.js +13 -0
  313. data/test/dummy/node_modules/browserify/example/source_maps/build.sh +4 -0
  314. data/test/dummy/node_modules/browserify/example/source_maps/index.html +11 -0
  315. data/test/dummy/node_modules/browserify/example/source_maps/js/build/bundle.js +28 -0
  316. data/test/dummy/node_modules/browserify/example/source_maps/js/foo.js +7 -0
  317. data/test/dummy/node_modules/browserify/example/source_maps/js/main.js +4 -0
  318. data/test/dummy/node_modules/browserify/example/source_maps/js/wunder/bar.js +8 -0
  319. data/test/dummy/node_modules/browserify/index.js +804 -0
  320. data/test/dummy/node_modules/browserify/lib/_empty.js +0 -0
  321. data/test/dummy/node_modules/browserify/lib/builtins.js +38 -0
  322. data/test/dummy/node_modules/browserify/package.json +185 -0
  323. data/test/dummy/node_modules/browserify/readme.markdown +786 -0
  324. data/test/dummy/node_modules/browserify/test/args.js +72 -0
  325. data/test/dummy/node_modules/browserify/test/array/one.js +1 -0
  326. data/test/dummy/node_modules/browserify/test/array/three.js +1 -0
  327. data/test/dummy/node_modules/browserify/test/array/two.js +1 -0
  328. data/test/dummy/node_modules/browserify/test/array.js +74 -0
  329. data/test/dummy/node_modules/browserify/test/backbone.js +23 -0
  330. data/test/dummy/node_modules/browserify/test/bare/main.js +7 -0
  331. data/test/dummy/node_modules/browserify/test/bare.js +70 -0
  332. data/test/dummy/node_modules/browserify/test/bare_shebang.js +37 -0
  333. data/test/dummy/node_modules/browserify/test/bin.js +31 -0
  334. data/test/dummy/node_modules/browserify/test/bin_entry.js +31 -0
  335. data/test/dummy/node_modules/browserify/test/bin_tr_error/main.js +1 -0
  336. data/test/dummy/node_modules/browserify/test/bin_tr_error/tr.js +12 -0
  337. data/test/dummy/node_modules/browserify/test/bin_tr_error.js +23 -0
  338. data/test/dummy/node_modules/browserify/test/bom/hello.js +1 -0
  339. data/test/dummy/node_modules/browserify/test/bom.js +19 -0
  340. data/test/dummy/node_modules/browserify/test/browser_field_file/package.json +5 -0
  341. data/test/dummy/node_modules/browserify/test/browser_field_file/wow.js +1 -0
  342. data/test/dummy/node_modules/browserify/test/browser_field_file.js +13 -0
  343. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/main.js +1 -0
  344. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/package.json +5 -0
  345. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/main.js +1 -0
  346. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/package.json +5 -0
  347. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/x.js +1 -0
  348. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/main.js +1 -0
  349. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/package.json +5 -0
  350. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/x.js +1 -0
  351. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/main.js +1 -0
  352. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/package.json +5 -0
  353. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/x.js +1 -0
  354. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/main.js +1 -0
  355. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/package.json +5 -0
  356. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/x.js +1 -0
  357. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/main.js +1 -0
  358. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/package.json +5 -0
  359. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/x.js +1 -0
  360. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/main.js +2 -0
  361. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/package.json +5 -0
  362. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/x.js +1 -0
  363. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/main.js +2 -0
  364. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/package.json +5 -0
  365. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/x.js +1 -0
  366. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/browser.js +1 -0
  367. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/main.js +2 -0
  368. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/package.json +5 -0
  369. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/x.js +1 -0
  370. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/browser.js +1 -0
  371. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/main.js +2 -0
  372. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/package.json +5 -0
  373. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/x.js +1 -0
  374. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/main.js +2 -0
  375. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/hey.js +1 -0
  376. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/package.json +5 -0
  377. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/main.js +2 -0
  378. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/hey.js +1 -0
  379. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/package.json +5 -0
  380. data/test/dummy/node_modules/browserify/test/browser_field_resolve.js +124 -0
  381. data/test/dummy/node_modules/browserify/test/buffer.js +142 -0
  382. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/bar.js +2 -0
  383. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/baz.js +3 -0
  384. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/foo.js +5 -0
  385. data/test/dummy/node_modules/browserify/test/bundle-bundle-external.js +31 -0
  386. data/test/dummy/node_modules/browserify/test/bundle-stream.js +18 -0
  387. data/test/dummy/node_modules/browserify/test/bundle.js +33 -0
  388. data/test/dummy/node_modules/browserify/test/bundle_external/boop.js +4 -0
  389. data/test/dummy/node_modules/browserify/test/bundle_external/main.js +4 -0
  390. data/test/dummy/node_modules/browserify/test/bundle_external/robot.js +1 -0
  391. data/test/dummy/node_modules/browserify/test/bundle_external.js +26 -0
  392. data/test/dummy/node_modules/browserify/test/bundle_external_global.js +24 -0
  393. data/test/dummy/node_modules/browserify/test/bundle_sourcemap.js +32 -0
  394. data/test/dummy/node_modules/browserify/test/catch/main.js +1 -0
  395. data/test/dummy/node_modules/browserify/test/catch.js +22 -0
  396. data/test/dummy/node_modules/browserify/test/circular/a.js +3 -0
  397. data/test/dummy/node_modules/browserify/test/circular/b.js +1 -0
  398. data/test/dummy/node_modules/browserify/test/circular/main.js +1 -0
  399. data/test/dummy/node_modules/browserify/test/circular.js +34 -0
  400. data/test/dummy/node_modules/browserify/test/coffee_bin/main.coffee +2 -0
  401. data/test/dummy/node_modules/browserify/test/coffee_bin/x.coffee +1 -0
  402. data/test/dummy/node_modules/browserify/test/coffee_bin.js +36 -0
  403. data/test/dummy/node_modules/browserify/test/coffeeify/main.coffee +2 -0
  404. data/test/dummy/node_modules/browserify/test/coffeeify.js +19 -0
  405. data/test/dummy/node_modules/browserify/test/comment/main.js +2 -0
  406. data/test/dummy/node_modules/browserify/test/comment.js +16 -0
  407. data/test/dummy/node_modules/browserify/test/constants.js +18 -0
  408. data/test/dummy/node_modules/browserify/test/crypto.js +39 -0
  409. data/test/dummy/node_modules/browserify/test/crypto_ig.js +39 -0
  410. data/test/dummy/node_modules/browserify/test/cycle/README.md +16 -0
  411. data/test/dummy/node_modules/browserify/test/cycle/entry.js +15 -0
  412. data/test/dummy/node_modules/browserify/test/cycle/mod1/a.js +1 -0
  413. data/test/dummy/node_modules/browserify/test/cycle/mod1/b.js +1 -0
  414. data/test/dummy/node_modules/browserify/test/cycle/mod2/a.js +1 -0
  415. data/test/dummy/node_modules/browserify/test/cycle/mod2/b.js +1 -0
  416. data/test/dummy/node_modules/browserify/test/cycle.js +13 -0
  417. data/test/dummy/node_modules/browserify/test/debug_standalone/x.js +1 -0
  418. data/test/dummy/node_modules/browserify/test/debug_standalone.js +64 -0
  419. data/test/dummy/node_modules/browserify/test/dedupe-deps.js +43 -0
  420. data/test/dummy/node_modules/browserify/test/dedupe-nomap.js +64 -0
  421. data/test/dummy/node_modules/browserify/test/delay/diverted.js +1 -0
  422. data/test/dummy/node_modules/browserify/test/delay/main.js +1 -0
  423. data/test/dummy/node_modules/browserify/test/delay.js +24 -0
  424. data/test/dummy/node_modules/browserify/test/dep.js +25 -0
  425. data/test/dummy/node_modules/browserify/test/dollar/dollar/index.js +7 -0
  426. data/test/dummy/node_modules/browserify/test/dollar.js +17 -0
  427. data/test/dummy/node_modules/browserify/test/double_buffer/explicit.js +1 -0
  428. data/test/dummy/node_modules/browserify/test/double_buffer/implicit.js +1 -0
  429. data/test/dummy/node_modules/browserify/test/double_buffer/main.js +4 -0
  430. data/test/dummy/node_modules/browserify/test/double_buffer.js +14 -0
  431. data/test/dummy/node_modules/browserify/test/double_bundle.js +24 -0
  432. data/test/dummy/node_modules/browserify/test/double_bundle_error/main.js +1 -0
  433. data/test/dummy/node_modules/browserify/test/double_bundle_error/needs_three.js +1 -0
  434. data/test/dummy/node_modules/browserify/test/double_bundle_error/one.js +1 -0
  435. data/test/dummy/node_modules/browserify/test/double_bundle_error/package.json +5 -0
  436. data/test/dummy/node_modules/browserify/test/double_bundle_error/three.js +3 -0
  437. data/test/dummy/node_modules/browserify/test/double_bundle_error/two.js +1 -0
  438. data/test/dummy/node_modules/browserify/test/double_bundle_error.js +17 -0
  439. data/test/dummy/node_modules/browserify/test/double_bundle_json/a.json +1 -0
  440. data/test/dummy/node_modules/browserify/test/double_bundle_json/b.json +1 -0
  441. data/test/dummy/node_modules/browserify/test/double_bundle_json/index.js +5 -0
  442. data/test/dummy/node_modules/browserify/test/double_bundle_json.js +37 -0
  443. data/test/dummy/node_modules/browserify/test/double_bundle_parallel.js +33 -0
  444. data/test/dummy/node_modules/browserify/test/double_bundle_parallel_cache.js +35 -0
  445. data/test/dummy/node_modules/browserify/test/dup/foo-dup.js +4 -0
  446. data/test/dummy/node_modules/browserify/test/dup/foo.js +4 -0
  447. data/test/dummy/node_modules/browserify/test/dup/index.js +5 -0
  448. data/test/dummy/node_modules/browserify/test/entry/main.js +1 -0
  449. data/test/dummy/node_modules/browserify/test/entry/needs_three.js +1 -0
  450. data/test/dummy/node_modules/browserify/test/entry/one.js +1 -0
  451. data/test/dummy/node_modules/browserify/test/entry/package.json +5 -0
  452. data/test/dummy/node_modules/browserify/test/entry/three.js +1 -0
  453. data/test/dummy/node_modules/browserify/test/entry/two.js +1 -0
  454. data/test/dummy/node_modules/browserify/test/entry.js +42 -0
  455. data/test/dummy/node_modules/browserify/test/entry_exec/fail.js +1 -0
  456. data/test/dummy/node_modules/browserify/test/entry_exec/main.js +1 -0
  457. data/test/dummy/node_modules/browserify/test/entry_exec.js +15 -0
  458. data/test/dummy/node_modules/browserify/test/entry_expose/main.js +2 -0
  459. data/test/dummy/node_modules/browserify/test/entry_expose.js +19 -0
  460. data/test/dummy/node_modules/browserify/test/entry_relative.js +44 -0
  461. data/test/dummy/node_modules/browserify/test/error_code/src.js +2 -0
  462. data/test/dummy/node_modules/browserify/test/error_code.js +24 -0
  463. data/test/dummy/node_modules/browserify/test/export/entry.js +1 -0
  464. data/test/dummy/node_modules/browserify/test/export.js +35 -0
  465. data/test/dummy/node_modules/browserify/test/external/main.js +2 -0
  466. data/test/dummy/node_modules/browserify/test/external/x.js +3 -0
  467. data/test/dummy/node_modules/browserify/test/external.js +20 -0
  468. data/test/dummy/node_modules/browserify/test/external_args/main.js +10 -0
  469. data/test/dummy/node_modules/browserify/test/external_shim/bundle1.js +1 -0
  470. data/test/dummy/node_modules/browserify/test/external_shim/bundle2.js +1 -0
  471. data/test/dummy/node_modules/browserify/test/external_shim/package.json +5 -0
  472. data/test/dummy/node_modules/browserify/test/external_shim/shim.js +0 -0
  473. data/test/dummy/node_modules/browserify/test/external_shim.js +27 -0
  474. data/test/dummy/node_modules/browserify/test/externalize/beep.js +2 -0
  475. data/test/dummy/node_modules/browserify/test/externalize/boop.js +2 -0
  476. data/test/dummy/node_modules/browserify/test/externalize/robot.js +1 -0
  477. data/test/dummy/node_modules/browserify/test/externalize.js +59 -0
  478. data/test/dummy/node_modules/browserify/test/fake/fake_fs.js +1 -0
  479. data/test/dummy/node_modules/browserify/test/fake/main.js +2 -0
  480. data/test/dummy/node_modules/browserify/test/fake.js +15 -0
  481. data/test/dummy/node_modules/browserify/test/field/miss.js +1 -0
  482. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/browser.js +1 -0
  483. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/main.js +1 -0
  484. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/package.json +4 -0
  485. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/browser.js +1 -0
  486. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/main.js +1 -0
  487. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/package.json +4 -0
  488. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/browser.js +1 -0
  489. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/main.js +1 -0
  490. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/package.json +4 -0
  491. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js +1 -0
  492. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js +1 -0
  493. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/main.js +1 -0
  494. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/package.json +4 -0
  495. data/test/dummy/node_modules/browserify/test/field/object.js +1 -0
  496. data/test/dummy/node_modules/browserify/test/field/string.js +1 -0
  497. data/test/dummy/node_modules/browserify/test/field/sub.js +1 -0
  498. data/test/dummy/node_modules/browserify/test/field.js +72 -0
  499. data/test/dummy/node_modules/browserify/test/file_event.js +33 -0
  500. data/test/dummy/node_modules/browserify/test/five_bundle.js +30 -0
  501. data/test/dummy/node_modules/browserify/test/full_paths.js +58 -0
  502. data/test/dummy/node_modules/browserify/test/glob/a.js +6 -0
  503. data/test/dummy/node_modules/browserify/test/glob/b.js +5 -0
  504. data/test/dummy/node_modules/browserify/test/glob/lib/z.js +1 -0
  505. data/test/dummy/node_modules/browserify/test/glob/vendor/x.js +1 -0
  506. data/test/dummy/node_modules/browserify/test/glob/vendor/y.js +1 -0
  507. data/test/dummy/node_modules/browserify/test/glob.js +29 -0
  508. data/test/dummy/node_modules/browserify/test/global/buffer.js +2 -0
  509. data/test/dummy/node_modules/browserify/test/global/filename.js +2 -0
  510. data/test/dummy/node_modules/browserify/test/global/main.js +2 -0
  511. data/test/dummy/node_modules/browserify/test/global/node_modules/aaa/index.js +2 -0
  512. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/index.js +1 -0
  513. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/lib/beep.js +2 -0
  514. data/test/dummy/node_modules/browserify/test/global/tick.js +3 -0
  515. data/test/dummy/node_modules/browserify/test/global.js +90 -0
  516. data/test/dummy/node_modules/browserify/test/global_coffeeify.js +19 -0
  517. data/test/dummy/node_modules/browserify/test/global_noparse.js +101 -0
  518. data/test/dummy/node_modules/browserify/test/global_recorder/main.js +1 -0
  519. data/test/dummy/node_modules/browserify/test/global_recorder.js +22 -0
  520. data/test/dummy/node_modules/browserify/test/hash/foo/other.js +1 -0
  521. data/test/dummy/node_modules/browserify/test/hash/foo/two.js +2 -0
  522. data/test/dummy/node_modules/browserify/test/hash/main.js +2 -0
  523. data/test/dummy/node_modules/browserify/test/hash/one.js +2 -0
  524. data/test/dummy/node_modules/browserify/test/hash/other.js +1 -0
  525. data/test/dummy/node_modules/browserify/test/hash.js +15 -0
  526. data/test/dummy/node_modules/browserify/test/hash_instance_context/main.js +17 -0
  527. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/f.js +3 -0
  528. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/g.js +2 -0
  529. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/f.js +3 -0
  530. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/g.js +2 -0
  531. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/f.js +3 -0
  532. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/g.js +2 -0
  533. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/h.js +2 -0
  534. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/f.js +3 -0
  535. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/g.js +2 -0
  536. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/h.js +2 -0
  537. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/f.js +3 -0
  538. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/g.js +2 -0
  539. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/h.js +2 -0
  540. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/f.js +3 -0
  541. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/g.js +2 -0
  542. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/h.js +2 -0
  543. data/test/dummy/node_modules/browserify/test/hash_instance_context.js +25 -0
  544. data/test/dummy/node_modules/browserify/test/identical/main.js +6 -0
  545. data/test/dummy/node_modules/browserify/test/identical/x.js +2 -0
  546. data/test/dummy/node_modules/browserify/test/identical/y.js +2 -0
  547. data/test/dummy/node_modules/browserify/test/identical.js +19 -0
  548. data/test/dummy/node_modules/browserify/test/identical_different/main.js +6 -0
  549. data/test/dummy/node_modules/browserify/test/identical_different/node_modules/op/index.js +3 -0
  550. data/test/dummy/node_modules/browserify/test/identical_different/wow/node_modules/op/index.js +3 -0
  551. data/test/dummy/node_modules/browserify/test/identical_different/wow/y.js +3 -0
  552. data/test/dummy/node_modules/browserify/test/identical_different/x.js +3 -0
  553. data/test/dummy/node_modules/browserify/test/identical_different.js +19 -0
  554. data/test/dummy/node_modules/browserify/test/ignore/by-id.js +3 -0
  555. data/test/dummy/node_modules/browserify/test/ignore/by-relative.js +5 -0
  556. data/test/dummy/node_modules/browserify/test/ignore/double-skip/index.js +1 -0
  557. data/test/dummy/node_modules/browserify/test/ignore/double-skip/skip.js +5 -0
  558. data/test/dummy/node_modules/browserify/test/ignore/double-skip.js +2 -0
  559. data/test/dummy/node_modules/browserify/test/ignore/ignored/skip.js +1 -0
  560. data/test/dummy/node_modules/browserify/test/ignore/main.js +1 -0
  561. data/test/dummy/node_modules/browserify/test/ignore/relative/index.js +1 -0
  562. data/test/dummy/node_modules/browserify/test/ignore/skip.js +1 -0
  563. data/test/dummy/node_modules/browserify/test/ignore.js +72 -0
  564. data/test/dummy/node_modules/browserify/test/ignore_browser_field/main.js +2 -0
  565. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/browser.js +1 -0
  566. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/main.js +1 -0
  567. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/package.json +6 -0
  568. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/browser-x.js +1 -0
  569. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/main.js +1 -0
  570. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/package.json +8 -0
  571. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/x.js +1 -0
  572. data/test/dummy/node_modules/browserify/test/ignore_browser_field.js +21 -0
  573. data/test/dummy/node_modules/browserify/test/ignore_missing/main.js +1 -0
  574. data/test/dummy/node_modules/browserify/test/ignore_missing.js +41 -0
  575. data/test/dummy/node_modules/browserify/test/json/beep.json +4 -0
  576. data/test/dummy/node_modules/browserify/test/json/evil-chars.json +3 -0
  577. data/test/dummy/node_modules/browserify/test/json/evil.js +2 -0
  578. data/test/dummy/node_modules/browserify/test/json/main.js +2 -0
  579. data/test/dummy/node_modules/browserify/test/json.js +44 -0
  580. data/test/dummy/node_modules/browserify/test/leak.js +57 -0
  581. data/test/dummy/node_modules/browserify/test/maxlisteners/main.js +3 -0
  582. data/test/dummy/node_modules/browserify/test/maxlisteners.js +13 -0
  583. data/test/dummy/node_modules/browserify/test/multi_bundle/_prelude.js +1 -0
  584. data/test/dummy/node_modules/browserify/test/multi_bundle/a.js +3 -0
  585. data/test/dummy/node_modules/browserify/test/multi_bundle/b.js +5 -0
  586. data/test/dummy/node_modules/browserify/test/multi_bundle/c.js +4 -0
  587. data/test/dummy/node_modules/browserify/test/multi_bundle.js +86 -0
  588. data/test/dummy/node_modules/browserify/test/multi_bundle_unique.js +56 -0
  589. data/test/dummy/node_modules/browserify/test/multi_entry/a.js +2 -0
  590. data/test/dummy/node_modules/browserify/test/multi_entry/b.js +2 -0
  591. data/test/dummy/node_modules/browserify/test/multi_entry/c.js +2 -0
  592. data/test/dummy/node_modules/browserify/test/multi_entry.js +121 -0
  593. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/a.js +8 -0
  594. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/c.js +7 -0
  595. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/lib/b.js +5 -0
  596. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require.js +92 -0
  597. data/test/dummy/node_modules/browserify/test/multi_require/a.js +3 -0
  598. data/test/dummy/node_modules/browserify/test/multi_require/main.js +4 -0
  599. data/test/dummy/node_modules/browserify/test/multi_require.js +18 -0
  600. data/test/dummy/node_modules/browserify/test/multi_symlink/main.js +2 -0
  601. data/test/dummy/node_modules/browserify/test/multi_symlink/x.js +1 -0
  602. data/test/dummy/node_modules/browserify/test/multi_symlink.js +13 -0
  603. data/test/dummy/node_modules/browserify/test/no_builtins/extra/fs.js +1 -0
  604. data/test/dummy/node_modules/browserify/test/no_builtins/extra/tls.js +1 -0
  605. data/test/dummy/node_modules/browserify/test/no_builtins/main.js +4 -0
  606. data/test/dummy/node_modules/browserify/test/no_builtins/x.txt +1 -0
  607. data/test/dummy/node_modules/browserify/test/no_builtins.js +63 -0
  608. data/test/dummy/node_modules/browserify/test/node_modules/beep/index.js +1 -0
  609. data/test/dummy/node_modules/browserify/test/node_modules/plugin-foo/index.js +9 -0
  610. data/test/dummy/node_modules/browserify/test/node_modules/tr/index.js +8 -0
  611. data/test/dummy/node_modules/browserify/test/noparse/a.js +4 -0
  612. data/test/dummy/node_modules/browserify/test/noparse/b.js +5 -0
  613. data/test/dummy/node_modules/browserify/test/noparse/dir1/1.js +4 -0
  614. data/test/dummy/node_modules/browserify/test/noparse/dir1/dir2/2.js +3 -0
  615. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/beep.js +4 -0
  616. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/boop.js +3 -0
  617. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/main.js +4 -0
  618. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/package.json +3 -0
  619. data/test/dummy/node_modules/browserify/test/noparse.js +31 -0
  620. data/test/dummy/node_modules/browserify/test/pack.js +33 -0
  621. data/test/dummy/node_modules/browserify/test/paths/main.js +3 -0
  622. data/test/dummy/node_modules/browserify/test/paths/x/aaa/index.js +1 -0
  623. data/test/dummy/node_modules/browserify/test/paths/x/ccc/index.js +1 -0
  624. data/test/dummy/node_modules/browserify/test/paths/y/bbb/index.js +1 -0
  625. data/test/dummy/node_modules/browserify/test/paths/y/ccc/index.js +1 -0
  626. data/test/dummy/node_modules/browserify/test/paths.js +32 -0
  627. data/test/dummy/node_modules/browserify/test/paths_transform.js +76 -0
  628. data/test/dummy/node_modules/browserify/test/pipeline_deps/bar.js +3 -0
  629. data/test/dummy/node_modules/browserify/test/pipeline_deps/foo.js +5 -0
  630. data/test/dummy/node_modules/browserify/test/pipeline_deps/main.js +2 -0
  631. data/test/dummy/node_modules/browserify/test/pipeline_deps/xyz.js +2 -0
  632. data/test/dummy/node_modules/browserify/test/pipeline_deps.js +22 -0
  633. data/test/dummy/node_modules/browserify/test/pkg/main.js +1 -0
  634. data/test/dummy/node_modules/browserify/test/pkg/package.json +1 -0
  635. data/test/dummy/node_modules/browserify/test/pkg.js +20 -0
  636. data/test/dummy/node_modules/browserify/test/pkg_event/main.js +1 -0
  637. data/test/dummy/node_modules/browserify/test/pkg_event/package.json +3 -0
  638. data/test/dummy/node_modules/browserify/test/pkg_event.js +31 -0
  639. data/test/dummy/node_modules/browserify/test/plugin/main.js +1 -0
  640. data/test/dummy/node_modules/browserify/test/plugin.js +28 -0
  641. data/test/dummy/node_modules/browserify/test/process/main.js +3 -0
  642. data/test/dummy/node_modules/browserify/test/process/one.js +1 -0
  643. data/test/dummy/node_modules/browserify/test/process/two.js +1 -0
  644. data/test/dummy/node_modules/browserify/test/process.js +21 -0
  645. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/a.js +3 -0
  646. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/b.js +3 -0
  647. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/index.js +4 -0
  648. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/a.js +3 -0
  649. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/b.js +3 -0
  650. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/index.js +4 -0
  651. data/test/dummy/node_modules/browserify/test/relative_dedupe/index.js +4 -0
  652. data/test/dummy/node_modules/browserify/test/relative_dedupe/main.js +5 -0
  653. data/test/dummy/node_modules/browserify/test/relative_dedupe.js +17 -0
  654. data/test/dummy/node_modules/browserify/test/require_cache.js +19 -0
  655. data/test/dummy/node_modules/browserify/test/require_expose/main.js +1 -0
  656. data/test/dummy/node_modules/browserify/test/require_expose/some_dep.js +1 -0
  657. data/test/dummy/node_modules/browserify/test/require_expose.js +53 -0
  658. data/test/dummy/node_modules/browserify/test/reset.js +31 -0
  659. data/test/dummy/node_modules/browserify/test/resolve_exposed/main.js +2 -0
  660. data/test/dummy/node_modules/browserify/test/resolve_exposed/x.js +1 -0
  661. data/test/dummy/node_modules/browserify/test/resolve_exposed.js +20 -0
  662. data/test/dummy/node_modules/browserify/test/retarget.js +25 -0
  663. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/app.js +22 -0
  664. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/arbitrary.js +6 -0
  665. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/lazy.js +9 -0
  666. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/shared.js +6 -0
  667. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle.js +47 -0
  668. data/test/dummy/node_modules/browserify/test/shared_symlink/app/index.js +1 -0
  669. data/test/dummy/node_modules/browserify/test/shared_symlink/app/node_modules/foo/index.js +1 -0
  670. data/test/dummy/node_modules/browserify/test/shared_symlink/main.js +1 -0
  671. data/test/dummy/node_modules/browserify/test/shared_symlink/shared/index.js +1 -0
  672. data/test/dummy/node_modules/browserify/test/shared_symlink.js +16 -0
  673. data/test/dummy/node_modules/browserify/test/shebang/foo.js +2 -0
  674. data/test/dummy/node_modules/browserify/test/shebang/main.js +4 -0
  675. data/test/dummy/node_modules/browserify/test/shebang.js +11 -0
  676. data/test/dummy/node_modules/browserify/test/standalone/main.js +3 -0
  677. data/test/dummy/node_modules/browserify/test/standalone/one.js +1 -0
  678. data/test/dummy/node_modules/browserify/test/standalone/two.js +1 -0
  679. data/test/dummy/node_modules/browserify/test/standalone.js +85 -0
  680. data/test/dummy/node_modules/browserify/test/standalone_events.js +19 -0
  681. data/test/dummy/node_modules/browserify/test/standalone_sourcemap.js +55 -0
  682. data/test/dummy/node_modules/browserify/test/stdin.js +35 -0
  683. data/test/dummy/node_modules/browserify/test/stream/bar.js +1 -0
  684. data/test/dummy/node_modules/browserify/test/stream/foo.js +1 -0
  685. data/test/dummy/node_modules/browserify/test/stream/main.js +2 -0
  686. data/test/dummy/node_modules/browserify/test/stream.js +15 -0
  687. data/test/dummy/node_modules/browserify/test/stream_file.js +29 -0
  688. data/test/dummy/node_modules/browserify/test/subdep/index.js +1 -0
  689. data/test/dummy/node_modules/browserify/test/subdep/package.json +6 -0
  690. data/test/dummy/node_modules/browserify/test/subdep.js +16 -0
  691. data/test/dummy/node_modules/browserify/test/symlink_dedupe/main.js +6 -0
  692. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/f.js +3 -0
  693. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/g.js +2 -0
  694. data/test/dummy/node_modules/browserify/test/symlink_dedupe.js +16 -0
  695. data/test/dummy/node_modules/browserify/test/syntax_cache/invalid.js +2 -0
  696. data/test/dummy/node_modules/browserify/test/syntax_cache/valid.js +2 -0
  697. data/test/dummy/node_modules/browserify/test/syntax_cache.js +47 -0
  698. data/test/dummy/node_modules/browserify/test/tr/f.js +2 -0
  699. data/test/dummy/node_modules/browserify/test/tr/main.js +9 -0
  700. data/test/dummy/node_modules/browserify/test/tr/package.json +5 -0
  701. data/test/dummy/node_modules/browserify/test/tr/subdir/g.js +1 -0
  702. data/test/dummy/node_modules/browserify/test/tr.js +28 -0
  703. data/test/dummy/node_modules/browserify/test/tr_args/main.js +1 -0
  704. data/test/dummy/node_modules/browserify/test/tr_args/tr.js +12 -0
  705. data/test/dummy/node_modules/browserify/test/tr_args.js +24 -0
  706. data/test/dummy/node_modules/browserify/test/tr_error.js +33 -0
  707. data/test/dummy/node_modules/browserify/test/tr_flags.js +36 -0
  708. data/test/dummy/node_modules/browserify/test/tr_global/main.js +1 -0
  709. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/tr/index.js +8 -0
  710. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/index.js +1 -0
  711. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/node_modules/tr/index.js +8 -0
  712. data/test/dummy/node_modules/browserify/test/tr_global.js +17 -0
  713. data/test/dummy/node_modules/browserify/test/tr_no_entry/main.js +1 -0
  714. data/test/dummy/node_modules/browserify/test/tr_no_entry.js +20 -0
  715. data/test/dummy/node_modules/browserify/test/tr_once/main.js +1 -0
  716. data/test/dummy/node_modules/browserify/test/tr_once.js +21 -0
  717. data/test/dummy/node_modules/browserify/test/tr_order/replace_aaa.js +10 -0
  718. data/test/dummy/node_modules/browserify/test/tr_order/replace_bbb.js +11 -0
  719. data/test/dummy/node_modules/browserify/test/tr_order.js +23 -0
  720. data/test/dummy/node_modules/browserify/test/tr_symlink/a-module/index.js +1 -0
  721. data/test/dummy/node_modules/browserify/test/tr_symlink/app/main.js +6 -0
  722. data/test/dummy/node_modules/browserify/test/tr_symlink/app/package.json +5 -0
  723. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/ext.js +1 -0
  724. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/index.js +2 -0
  725. data/test/dummy/node_modules/browserify/test/tr_symlink.js +27 -0
  726. data/test/dummy/node_modules/browserify/test/unicode/main.js +1 -0
  727. data/test/dummy/node_modules/browserify/test/unicode/one.js +1 -0
  728. data/test/dummy/node_modules/browserify/test/unicode/two.js +1 -0
  729. data/test/dummy/node_modules/browserify/test/unicode.js +19 -0
  730. data/test/dummy/node_modules/browserify/test/util.js +62 -0
  731. data/test/dummy/node_modules/browserify/test/yield/f.js +5 -0
  732. data/test/dummy/node_modules/browserify/test/yield/main.js +4 -0
  733. data/test/dummy/node_modules/browserify/test/yield.js +20 -0
  734. data/test/dummy/node_modules/browserify-aes/LICENSE +21 -0
  735. data/test/dummy/node_modules/browserify-aes/aes.js +177 -0
  736. data/test/dummy/node_modules/browserify-aes/authCipher.js +97 -0
  737. data/test/dummy/node_modules/browserify-aes/browser.js +11 -0
  738. data/test/dummy/node_modules/browserify-aes/decrypter.js +137 -0
  739. data/test/dummy/node_modules/browserify-aes/encrypter.js +122 -0
  740. data/test/dummy/node_modules/browserify-aes/ghash.js +98 -0
  741. data/test/dummy/node_modules/browserify-aes/index.js +7 -0
  742. data/test/dummy/node_modules/browserify-aes/modes/cbc.js +17 -0
  743. data/test/dummy/node_modules/browserify-aes/modes/cfb.js +31 -0
  744. data/test/dummy/node_modules/browserify-aes/modes/cfb1.js +34 -0
  745. data/test/dummy/node_modules/browserify-aes/modes/cfb8.js +15 -0
  746. data/test/dummy/node_modules/browserify-aes/modes/ctr.js +31 -0
  747. data/test/dummy/node_modules/browserify-aes/modes/ecb.js +6 -0
  748. data/test/dummy/node_modules/browserify-aes/modes/ofb.js +16 -0
  749. data/test/dummy/node_modules/browserify-aes/modes.js +171 -0
  750. data/test/dummy/node_modules/browserify-aes/package.json +104 -0
  751. data/test/dummy/node_modules/browserify-aes/populateFixtures.js +25 -0
  752. data/test/dummy/node_modules/browserify-aes/readme.md +18 -0
  753. data/test/dummy/node_modules/browserify-aes/streamCipher.js +25 -0
  754. data/test/dummy/node_modules/browserify-cipher/browser.js +73 -0
  755. data/test/dummy/node_modules/browserify-cipher/index.js +7 -0
  756. data/test/dummy/node_modules/browserify-cipher/package.json +81 -0
  757. data/test/dummy/node_modules/browserify-cipher/readme.md +7 -0
  758. data/test/dummy/node_modules/browserify-cipher/test.js +55 -0
  759. data/test/dummy/node_modules/browserify-des/index.js +43 -0
  760. data/test/dummy/node_modules/browserify-des/modes.js +24 -0
  761. data/test/dummy/node_modules/browserify-des/package.json +80 -0
  762. data/test/dummy/node_modules/browserify-des/readme.md +4 -0
  763. data/test/dummy/node_modules/browserify-des/test.js +48 -0
  764. data/test/dummy/node_modules/browserify-rsa/LICENSE +21 -0
  765. data/test/dummy/node_modules/browserify-rsa/index.js +40 -0
  766. data/test/dummy/node_modules/browserify-rsa/package.json +97 -0
  767. data/test/dummy/node_modules/browserify-rsa/readme.md +10 -0
  768. data/test/dummy/node_modules/browserify-rsa/test.js +53 -0
  769. data/test/dummy/node_modules/browserify-sign/LICENSE +13 -0
  770. data/test/dummy/node_modules/browserify-sign/README.md +4 -0
  771. data/test/dummy/node_modules/browserify-sign/algos.js +72 -0
  772. data/test/dummy/node_modules/browserify-sign/algos.json +15 -0
  773. data/test/dummy/node_modules/browserify-sign/browser.js +103 -0
  774. data/test/dummy/node_modules/browserify-sign/curves.js +12 -0
  775. data/test/dummy/node_modules/browserify-sign/ec.param +3 -0
  776. data/test/dummy/node_modules/browserify-sign/index.js +7 -0
  777. data/test/dummy/node_modules/browserify-sign/package.json +100 -0
  778. data/test/dummy/node_modules/browserify-sign/sign.js +185 -0
  779. data/test/dummy/node_modules/browserify-sign/verify.js +103 -0
  780. data/test/dummy/node_modules/browserify-zlib/README.md +22 -0
  781. data/test/dummy/node_modules/browserify-zlib/package.json +94 -0
  782. data/test/dummy/node_modules/browserify-zlib/src/binding.js +236 -0
  783. data/test/dummy/node_modules/browserify-zlib/src/index.js +610 -0
  784. data/test/dummy/node_modules/browserify-zlib/test/fixtures/elipses.txt +1 -0
  785. data/test/dummy/node_modules/browserify-zlib/test/fixtures/empty.txt +1 -0
  786. data/test/dummy/node_modules/browserify-zlib/test/fixtures/person.jpg +0 -0
  787. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary-fail.js +48 -0
  788. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary.js +95 -0
  789. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-params.js +33 -0
  790. data/test/dummy/node_modules/browserify-zlib/test/package.json +7 -0
  791. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-close-after-write.js +35 -0
  792. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-convenience-methods.js +70 -0
  793. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-from-string.js +89 -0
  794. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-invalid-input.js +62 -0
  795. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-random-byte-pipes.js +176 -0
  796. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-write-after-flush.js +55 -0
  797. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-zero-byte.js +41 -0
  798. data/test/dummy/node_modules/browserify-zlib/test/test-zlib.js +206 -0
  799. data/test/dummy/node_modules/buffer/LICENSE +21 -0
  800. data/test/dummy/node_modules/buffer/README.md +379 -0
  801. data/test/dummy/node_modules/buffer/bin/download-node-tests.js +107 -0
  802. data/test/dummy/node_modules/buffer/bin/test.js +41 -0
  803. data/test/dummy/node_modules/buffer/bin/zuul-es5.yml +12 -0
  804. data/test/dummy/node_modules/buffer/bin/zuul-es6.yml +10 -0
  805. data/test/dummy/node_modules/buffer/index.js +1711 -0
  806. data/test/dummy/node_modules/buffer/node_modules/isarray/Makefile +6 -0
  807. data/test/dummy/node_modules/buffer/node_modules/isarray/README.md +60 -0
  808. data/test/dummy/node_modules/buffer/node_modules/isarray/component.json +19 -0
  809. data/test/dummy/node_modules/buffer/node_modules/isarray/index.js +5 -0
  810. data/test/dummy/node_modules/buffer/node_modules/isarray/package.json +96 -0
  811. data/test/dummy/node_modules/buffer/node_modules/isarray/test.js +20 -0
  812. data/test/dummy/node_modules/buffer/package.json +134 -0
  813. data/test/dummy/node_modules/buffer/test/_polyfill.js +150 -0
  814. data/test/dummy/node_modules/buffer/test/base64.js +47 -0
  815. data/test/dummy/node_modules/buffer/test/basic.js +85 -0
  816. data/test/dummy/node_modules/buffer/test/compare.js +59 -0
  817. data/test/dummy/node_modules/buffer/test/constructor.js +193 -0
  818. data/test/dummy/node_modules/buffer/test/from-string.js +132 -0
  819. data/test/dummy/node_modules/buffer/test/is-buffer.js +22 -0
  820. data/test/dummy/node_modules/buffer/test/methods.js +127 -0
  821. data/test/dummy/node_modules/buffer/test/node/test-buffer-alloc.js +1449 -0
  822. data/test/dummy/node_modules/buffer/test/node/test-buffer-arraybuffer.js +112 -0
  823. data/test/dummy/node_modules/buffer/test/node/test-buffer-ascii.js +28 -0
  824. data/test/dummy/node_modules/buffer/test/node/test-buffer-bad-overload.js +18 -0
  825. data/test/dummy/node_modules/buffer/test/node/test-buffer-bytelength.js +89 -0
  826. data/test/dummy/node_modules/buffer/test/node/test-buffer-compare-offset.js +66 -0
  827. data/test/dummy/node_modules/buffer/test/node/test-buffer-concat.js +40 -0
  828. data/test/dummy/node_modules/buffer/test/node/test-buffer-fill.js +244 -0
  829. data/test/dummy/node_modules/buffer/test/node/test-buffer-includes.js +261 -0
  830. data/test/dummy/node_modules/buffer/test/node/test-buffer-indexof.js +287 -0
  831. data/test/dummy/node_modules/buffer/test/node/test-buffer-inheritance.js +42 -0
  832. data/test/dummy/node_modules/buffer/test/node/test-buffer-inspect.js +41 -0
  833. data/test/dummy/node_modules/buffer/test/node/test-buffer-iterator.js +65 -0
  834. data/test/dummy/node_modules/buffer/test/node/test-buffer-safe-unsafe.js +27 -0
  835. data/test/dummy/node_modules/buffer/test/node/test-buffer-slow.js +59 -0
  836. data/test/dummy/node_modules/buffer/test/node/test-buffer-swap.js +63 -0
  837. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-cli.js +35 -0
  838. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-reset.js +22 -0
  839. data/test/dummy/node_modules/buffer/test/node/test-buffer.js +1446 -0
  840. data/test/dummy/node_modules/buffer/test/slice.js +37 -0
  841. data/test/dummy/node_modules/buffer/test/static.js +17 -0
  842. data/test/dummy/node_modules/buffer/test/to-string.js +233 -0
  843. data/test/dummy/node_modules/buffer/test/write.js +131 -0
  844. data/test/dummy/node_modules/buffer/test/write_infinity.js +45 -0
  845. data/test/dummy/node_modules/buffer-xor/LICENSE +21 -0
  846. data/test/dummy/node_modules/buffer-xor/README.md +41 -0
  847. data/test/dummy/node_modules/buffer-xor/index.js +10 -0
  848. data/test/dummy/node_modules/buffer-xor/inline.js +1 -0
  849. data/test/dummy/node_modules/buffer-xor/inplace.js +9 -0
  850. data/test/dummy/node_modules/buffer-xor/package.json +88 -0
  851. data/test/dummy/node_modules/buffer-xor/test/fixtures.json +23 -0
  852. data/test/dummy/node_modules/buffer-xor/test/index.js +38 -0
  853. data/test/dummy/node_modules/builtin-status-codes/browser.js +63 -0
  854. data/test/dummy/node_modules/builtin-status-codes/build.js +8 -0
  855. data/test/dummy/node_modules/builtin-status-codes/index.js +3 -0
  856. data/test/dummy/node_modules/builtin-status-codes/license +21 -0
  857. data/test/dummy/node_modules/builtin-status-codes/package.json +95 -0
  858. data/test/dummy/node_modules/builtin-status-codes/readme.md +31 -0
  859. data/test/dummy/node_modules/chokidar/CHANGELOG.md +240 -0
  860. data/test/dummy/node_modules/chokidar/README.md +285 -0
  861. data/test/dummy/node_modules/chokidar/index.js +686 -0
  862. data/test/dummy/node_modules/chokidar/lib/fsevents-handler.js +361 -0
  863. data/test/dummy/node_modules/chokidar/lib/nodefs-handler.js +481 -0
  864. data/test/dummy/node_modules/chokidar/package.json +113 -0
  865. data/test/dummy/node_modules/cipher-base/index.js +90 -0
  866. data/test/dummy/node_modules/cipher-base/package.json +83 -0
  867. data/test/dummy/node_modules/cipher-base/readme.md +17 -0
  868. data/test/dummy/node_modules/cipher-base/test.js +108 -0
  869. data/test/dummy/node_modules/combine-source-map/LICENSE +23 -0
  870. data/test/dummy/node_modules/combine-source-map/README.md +111 -0
  871. data/test/dummy/node_modules/combine-source-map/example/two-files-short.js +26 -0
  872. data/test/dummy/node_modules/combine-source-map/example/two-files.js +46 -0
  873. data/test/dummy/node_modules/combine-source-map/index.js +153 -0
  874. data/test/dummy/node_modules/combine-source-map/lib/mappings-from-map.js +30 -0
  875. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.js +20 -0
  876. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.license +21 -0
  877. data/test/dummy/node_modules/combine-source-map/package.json +102 -0
  878. data/test/dummy/node_modules/combine-source-map/test/combine-source-map.js +347 -0
  879. data/test/dummy/node_modules/concat-map/LICENSE +18 -0
  880. data/test/dummy/node_modules/concat-map/README.markdown +62 -0
  881. data/test/dummy/node_modules/concat-map/example/map.js +6 -0
  882. data/test/dummy/node_modules/concat-map/index.js +13 -0
  883. data/test/dummy/node_modules/concat-map/package.json +109 -0
  884. data/test/dummy/node_modules/concat-map/test/map.js +39 -0
  885. data/test/dummy/node_modules/concat-stream/LICENSE +24 -0
  886. data/test/dummy/node_modules/concat-stream/index.js +136 -0
  887. data/test/dummy/node_modules/concat-stream/node_modules/isarray/Makefile +6 -0
  888. data/test/dummy/node_modules/concat-stream/node_modules/isarray/README.md +60 -0
  889. data/test/dummy/node_modules/concat-stream/node_modules/isarray/component.json +19 -0
  890. data/test/dummy/node_modules/concat-stream/node_modules/isarray/index.js +5 -0
  891. data/test/dummy/node_modules/concat-stream/node_modules/isarray/package.json +96 -0
  892. data/test/dummy/node_modules/concat-stream/node_modules/isarray/test.js +20 -0
  893. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/LICENSE +18 -0
  894. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/README.md +36 -0
  895. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/stream.markdown +1760 -0
  896. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  897. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/duplex.js +1 -0
  898. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  899. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  900. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  901. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  902. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  903. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/package.json +105 -0
  904. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/passthrough.js +1 -0
  905. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/readable.js +12 -0
  906. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/transform.js +1 -0
  907. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/writable.js +1 -0
  908. data/test/dummy/node_modules/concat-stream/package.json +114 -0
  909. data/test/dummy/node_modules/concat-stream/readme.md +100 -0
  910. data/test/dummy/node_modules/console-browserify/LICENCE +19 -0
  911. data/test/dummy/node_modules/console-browserify/README.md +33 -0
  912. data/test/dummy/node_modules/console-browserify/index.js +86 -0
  913. data/test/dummy/node_modules/console-browserify/package.json +114 -0
  914. data/test/dummy/node_modules/console-browserify/test/index.js +67 -0
  915. data/test/dummy/node_modules/console-browserify/test/static/index.html +12 -0
  916. data/test/dummy/node_modules/console-browserify/test/static/test-adapter.js +53 -0
  917. data/test/dummy/node_modules/constants-browserify/README.md +54 -0
  918. data/test/dummy/node_modules/constants-browserify/build.sh +1 -0
  919. data/test/dummy/node_modules/constants-browserify/constants.json +209 -0
  920. data/test/dummy/node_modules/constants-browserify/package.json +86 -0
  921. data/test/dummy/node_modules/constants-browserify/test.js +18 -0
  922. data/test/dummy/node_modules/convert-source-map/LICENSE +23 -0
  923. data/test/dummy/node_modules/convert-source-map/README.md +121 -0
  924. data/test/dummy/node_modules/convert-source-map/example/comment-to-json.js +15 -0
  925. data/test/dummy/node_modules/convert-source-map/index.js +156 -0
  926. data/test/dummy/node_modules/convert-source-map/package.json +87 -0
  927. data/test/dummy/node_modules/convert-source-map/test/comment-regex.js +138 -0
  928. data/test/dummy/node_modules/convert-source-map/test/convert-source-map.js +207 -0
  929. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css +14 -0
  930. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-inline.css +14 -0
  931. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css +14 -0
  932. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css.map +6 -0
  933. data/test/dummy/node_modules/convert-source-map/test/map-file-comment.js +70 -0
  934. data/test/dummy/node_modules/core-util-is/LICENSE +19 -0
  935. data/test/dummy/node_modules/core-util-is/README.md +3 -0
  936. data/test/dummy/node_modules/core-util-is/float.patch +604 -0
  937. data/test/dummy/node_modules/core-util-is/lib/util.js +107 -0
  938. data/test/dummy/node_modules/core-util-is/package.json +89 -0
  939. data/test/dummy/node_modules/core-util-is/test.js +68 -0
  940. data/test/dummy/node_modules/create-ecdh/browser.js +122 -0
  941. data/test/dummy/node_modules/create-ecdh/index.js +3 -0
  942. data/test/dummy/node_modules/create-ecdh/package.json +100 -0
  943. data/test/dummy/node_modules/create-ecdh/readme.md +4 -0
  944. data/test/dummy/node_modules/create-hash/browser.js +52 -0
  945. data/test/dummy/node_modules/create-hash/helpers.js +34 -0
  946. data/test/dummy/node_modules/create-hash/index.js +1 -0
  947. data/test/dummy/node_modules/create-hash/md5.js +156 -0
  948. data/test/dummy/node_modules/create-hash/package.json +104 -0
  949. data/test/dummy/node_modules/create-hash/readme.md +19 -0
  950. data/test/dummy/node_modules/create-hash/test.js +39 -0
  951. data/test/dummy/node_modules/create-hmac/browser.js +68 -0
  952. data/test/dummy/node_modules/create-hmac/index.js +1 -0
  953. data/test/dummy/node_modules/create-hmac/package.json +99 -0
  954. data/test/dummy/node_modules/create-hmac/readme.md +19 -0
  955. data/test/dummy/node_modules/create-hmac/test.js +41 -0
  956. data/test/dummy/node_modules/crypto-browserify/LICENSE +24 -0
  957. data/test/dummy/node_modules/crypto-browserify/README.md +49 -0
  958. data/test/dummy/node_modules/crypto-browserify/example/bundle.js +637 -0
  959. data/test/dummy/node_modules/crypto-browserify/example/index.html +12 -0
  960. data/test/dummy/node_modules/crypto-browserify/example/test.js +4 -0
  961. data/test/dummy/node_modules/crypto-browserify/index.js +77 -0
  962. data/test/dummy/node_modules/crypto-browserify/package.json +114 -0
  963. data/test/dummy/node_modules/crypto-browserify/test/aes.js +49 -0
  964. data/test/dummy/node_modules/crypto-browserify/test/create-hash.js +50 -0
  965. data/test/dummy/node_modules/crypto-browserify/test/create-hmac.js +50 -0
  966. data/test/dummy/node_modules/crypto-browserify/test/dh.js +49 -0
  967. data/test/dummy/node_modules/crypto-browserify/test/ecdh.js +61 -0
  968. data/test/dummy/node_modules/crypto-browserify/test/index.js +18 -0
  969. data/test/dummy/node_modules/crypto-browserify/test/node/dh.js +51 -0
  970. data/test/dummy/node_modules/crypto-browserify/test/pbkdf2.js +21 -0
  971. data/test/dummy/node_modules/crypto-browserify/test/public-encrypt.js +36 -0
  972. data/test/dummy/node_modules/crypto-browserify/test/random-bytes.js +60 -0
  973. data/test/dummy/node_modules/crypto-browserify/test/sign.js +59 -0
  974. data/test/dummy/node_modules/date-now/LICENCE +19 -0
  975. data/test/dummy/node_modules/date-now/README.md +45 -0
  976. data/test/dummy/node_modules/date-now/index.js +5 -0
  977. data/test/dummy/node_modules/date-now/package.json +115 -0
  978. data/test/dummy/node_modules/date-now/seed.js +16 -0
  979. data/test/dummy/node_modules/date-now/test/index.js +28 -0
  980. data/test/dummy/node_modules/date-now/test/static/index.html +10 -0
  981. data/test/dummy/node_modules/defined/LICENSE +18 -0
  982. data/test/dummy/node_modules/defined/example/defined.js +4 -0
  983. data/test/dummy/node_modules/defined/index.js +5 -0
  984. data/test/dummy/node_modules/defined/package.json +116 -0
  985. data/test/dummy/node_modules/defined/readme.markdown +53 -0
  986. data/test/dummy/node_modules/defined/test/def.js +22 -0
  987. data/test/dummy/node_modules/defined/test/falsy.js +9 -0
  988. data/test/dummy/node_modules/deps-sort/LICENSE +18 -0
  989. data/test/dummy/node_modules/deps-sort/bin/cmd.js +10 -0
  990. data/test/dummy/node_modules/deps-sort/example/sort.js +6 -0
  991. data/test/dummy/node_modules/deps-sort/index.js +122 -0
  992. data/test/dummy/node_modules/deps-sort/package.json +97 -0
  993. data/test/dummy/node_modules/deps-sort/readme.markdown +83 -0
  994. data/test/dummy/node_modules/deps-sort/test/dedupe-deps-of-deps.js +71 -0
  995. data/test/dummy/node_modules/deps-sort/test/dedupe.js +39 -0
  996. data/test/dummy/node_modules/deps-sort/test/dedupe_index.js +56 -0
  997. data/test/dummy/node_modules/deps-sort/test/dedupe_undef.js +37 -0
  998. data/test/dummy/node_modules/deps-sort/test/expose.js +38 -0
  999. data/test/dummy/node_modules/deps-sort/test/expose_str.js +44 -0
  1000. data/test/dummy/node_modules/deps-sort/test/indexed.js +38 -0
  1001. data/test/dummy/node_modules/deps-sort/test/sort.js +23 -0
  1002. data/test/dummy/node_modules/des.js/README.md +26 -0
  1003. data/test/dummy/node_modules/des.js/lib/des/cbc.js +65 -0
  1004. data/test/dummy/node_modules/des.js/lib/des/cipher.js +141 -0
  1005. data/test/dummy/node_modules/des.js/lib/des/des.js +143 -0
  1006. data/test/dummy/node_modules/des.js/lib/des/ede.js +55 -0
  1007. data/test/dummy/node_modules/des.js/lib/des/utils.js +256 -0
  1008. data/test/dummy/node_modules/des.js/lib/des.js +7 -0
  1009. data/test/dummy/node_modules/des.js/package.json +85 -0
  1010. data/test/dummy/node_modules/des.js/test/cbc-test.js +73 -0
  1011. data/test/dummy/node_modules/des.js/test/des-test.js +139 -0
  1012. data/test/dummy/node_modules/des.js/test/ede-test.js +73 -0
  1013. data/test/dummy/node_modules/des.js/test/fixtures.js +5 -0
  1014. data/test/dummy/node_modules/des.js/test/utils-test.js +169 -0
  1015. data/test/dummy/node_modules/detective/LICENSE +18 -0
  1016. data/test/dummy/node_modules/detective/bench/detect.js +7 -0
  1017. data/test/dummy/node_modules/detective/bench/esprima_v_acorn.txt +18 -0
  1018. data/test/dummy/node_modules/detective/example/strings.js +6 -0
  1019. data/test/dummy/node_modules/detective/example/strings_src.js +3 -0
  1020. data/test/dummy/node_modules/detective/index.js +71 -0
  1021. data/test/dummy/node_modules/detective/package.json +88 -0
  1022. data/test/dummy/node_modules/detective/readme.markdown +80 -0
  1023. data/test/dummy/node_modules/detective/test/both.js +26 -0
  1024. data/test/dummy/node_modules/detective/test/chained.js +9 -0
  1025. data/test/dummy/node_modules/detective/test/complicated.js +56 -0
  1026. data/test/dummy/node_modules/detective/test/es6-module.js +9 -0
  1027. data/test/dummy/node_modules/detective/test/files/both.js +4 -0
  1028. data/test/dummy/node_modules/detective/test/files/chained.js +5 -0
  1029. data/test/dummy/node_modules/detective/test/files/es6-module.js +5 -0
  1030. data/test/dummy/node_modules/detective/test/files/generators.js +5 -0
  1031. data/test/dummy/node_modules/detective/test/files/isrequire.js +14 -0
  1032. data/test/dummy/node_modules/detective/test/files/nested.js +22 -0
  1033. data/test/dummy/node_modules/detective/test/files/shebang.js +5 -0
  1034. data/test/dummy/node_modules/detective/test/files/sparse-array.js +3 -0
  1035. data/test/dummy/node_modules/detective/test/files/strings.js +13 -0
  1036. data/test/dummy/node_modules/detective/test/files/word.js +13 -0
  1037. data/test/dummy/node_modules/detective/test/files/yield.js +4 -0
  1038. data/test/dummy/node_modules/detective/test/generators.js +9 -0
  1039. data/test/dummy/node_modules/detective/test/isrequire.js +20 -0
  1040. data/test/dummy/node_modules/detective/test/nested.js +9 -0
  1041. data/test/dummy/node_modules/detective/test/noargs.js +26 -0
  1042. data/test/dummy/node_modules/detective/test/parseopts.js +62 -0
  1043. data/test/dummy/node_modules/detective/test/return.js +9 -0
  1044. data/test/dummy/node_modules/detective/test/shebang.js +9 -0
  1045. data/test/dummy/node_modules/detective/test/sparse-array.js +14 -0
  1046. data/test/dummy/node_modules/detective/test/strings.js +9 -0
  1047. data/test/dummy/node_modules/detective/test/word.js +12 -0
  1048. data/test/dummy/node_modules/detective/test/yield.js +9 -0
  1049. data/test/dummy/node_modules/diffie-hellman/browser.js +42 -0
  1050. data/test/dummy/node_modules/diffie-hellman/index.js +10 -0
  1051. data/test/dummy/node_modules/diffie-hellman/lib/dh.js +164 -0
  1052. data/test/dummy/node_modules/diffie-hellman/lib/generatePrime.js +105 -0
  1053. data/test/dummy/node_modules/diffie-hellman/lib/primes.json +34 -0
  1054. data/test/dummy/node_modules/diffie-hellman/package.json +101 -0
  1055. data/test/dummy/node_modules/diffie-hellman/readme.md +4 -0
  1056. data/test/dummy/node_modules/domain-browser/HISTORY.md +42 -0
  1057. data/test/dummy/node_modules/domain-browser/LICENSE.md +23 -0
  1058. data/test/dummy/node_modules/domain-browser/README.md +111 -0
  1059. data/test/dummy/node_modules/domain-browser/index.js +69 -0
  1060. data/test/dummy/node_modules/domain-browser/package.json +173 -0
  1061. data/test/dummy/node_modules/domain-browser/test.js +100 -0
  1062. data/test/dummy/node_modules/duplexer2/LICENSE.md +26 -0
  1063. data/test/dummy/node_modules/duplexer2/README.md +115 -0
  1064. data/test/dummy/node_modules/duplexer2/index.js +76 -0
  1065. data/test/dummy/node_modules/duplexer2/package.json +97 -0
  1066. data/test/dummy/node_modules/elliptic/README.md +170 -0
  1067. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/base.js +351 -0
  1068. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/edwards.js +410 -0
  1069. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/index.js +8 -0
  1070. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/mont.js +176 -0
  1071. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/short.js +909 -0
  1072. data/test/dummy/node_modules/elliptic/lib/elliptic/curves.js +205 -0
  1073. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/index.js +222 -0
  1074. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/key.js +107 -0
  1075. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/signature.js +135 -0
  1076. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/index.js +118 -0
  1077. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/key.js +96 -0
  1078. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/signature.js +66 -0
  1079. data/test/dummy/node_modules/elliptic/lib/elliptic/hmac-drbg.js +114 -0
  1080. data/test/dummy/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
  1081. data/test/dummy/node_modules/elliptic/lib/elliptic/utils.js +173 -0
  1082. data/test/dummy/node_modules/elliptic/lib/elliptic.js +14 -0
  1083. data/test/dummy/node_modules/elliptic/package.json +99 -0
  1084. data/test/dummy/node_modules/esmangle-evaluator/README.md +24 -0
  1085. data/test/dummy/node_modules/esmangle-evaluator/common.js +58 -0
  1086. data/test/dummy/node_modules/esmangle-evaluator/evaluator.js +364 -0
  1087. data/test/dummy/node_modules/esmangle-evaluator/package.json +73 -0
  1088. data/test/dummy/node_modules/esprima/ChangeLog +170 -0
  1089. data/test/dummy/node_modules/esprima/LICENSE.BSD +21 -0
  1090. data/test/dummy/node_modules/esprima/README.md +27 -0
  1091. data/test/dummy/node_modules/esprima/bin/esparse.js +126 -0
  1092. data/test/dummy/node_modules/esprima/bin/esvalidate.js +199 -0
  1093. data/test/dummy/node_modules/esprima/esprima.js +5739 -0
  1094. data/test/dummy/node_modules/esprima/package.json +145 -0
  1095. data/test/dummy/node_modules/events/History.md +38 -0
  1096. data/test/dummy/node_modules/events/LICENSE +22 -0
  1097. data/test/dummy/node_modules/events/Readme.md +19 -0
  1098. data/test/dummy/node_modules/events/events.js +298 -0
  1099. data/test/dummy/node_modules/events/package.json +91 -0
  1100. data/test/dummy/node_modules/events/tests/add-listeners.js +63 -0
  1101. data/test/dummy/node_modules/events/tests/check-listener-leaks.js +86 -0
  1102. data/test/dummy/node_modules/events/tests/common.js +42 -0
  1103. data/test/dummy/node_modules/events/tests/index.js +25 -0
  1104. data/test/dummy/node_modules/events/tests/legacy-compat.js +18 -0
  1105. data/test/dummy/node_modules/events/tests/listener-count.js +36 -0
  1106. data/test/dummy/node_modules/events/tests/listeners-side-effects.js +55 -0
  1107. data/test/dummy/node_modules/events/tests/listeners.js +51 -0
  1108. data/test/dummy/node_modules/events/tests/max-listeners.js +50 -0
  1109. data/test/dummy/node_modules/events/tests/modify-in-emit.js +76 -0
  1110. data/test/dummy/node_modules/events/tests/num-args.js +44 -0
  1111. data/test/dummy/node_modules/events/tests/once.js +59 -0
  1112. data/test/dummy/node_modules/events/tests/remove-all-listeners.js +80 -0
  1113. data/test/dummy/node_modules/events/tests/remove-listeners.js +84 -0
  1114. data/test/dummy/node_modules/events/tests/set-max-listeners-side-effects.js +29 -0
  1115. data/test/dummy/node_modules/events/tests/subclass.js +51 -0
  1116. data/test/dummy/node_modules/evp_bytestokey/index.js +68 -0
  1117. data/test/dummy/node_modules/evp_bytestokey/package.json +84 -0
  1118. data/test/dummy/node_modules/evp_bytestokey/readme.md +13 -0
  1119. data/test/dummy/node_modules/evp_bytestokey/test.js +19 -0
  1120. data/test/dummy/node_modules/expand-brackets/LICENSE +21 -0
  1121. data/test/dummy/node_modules/expand-brackets/README.md +107 -0
  1122. data/test/dummy/node_modules/expand-brackets/index.js +163 -0
  1123. data/test/dummy/node_modules/expand-brackets/package.json +128 -0
  1124. data/test/dummy/node_modules/expand-range/LICENSE +24 -0
  1125. data/test/dummy/node_modules/expand-range/README.md +107 -0
  1126. data/test/dummy/node_modules/expand-range/index.js +43 -0
  1127. data/test/dummy/node_modules/expand-range/package.json +107 -0
  1128. data/test/dummy/node_modules/extglob/LICENSE +21 -0
  1129. data/test/dummy/node_modules/extglob/README.md +88 -0
  1130. data/test/dummy/node_modules/extglob/index.js +178 -0
  1131. data/test/dummy/node_modules/extglob/package.json +108 -0
  1132. data/test/dummy/node_modules/falafel/example/array.js +14 -0
  1133. data/test/dummy/node_modules/falafel/example/keyword.js +16 -0
  1134. data/test/dummy/node_modules/falafel/example/prompt.js +49 -0
  1135. data/test/dummy/node_modules/falafel/index.js +79 -0
  1136. data/test/dummy/node_modules/falafel/package.json +137 -0
  1137. data/test/dummy/node_modules/falafel/readme.markdown +122 -0
  1138. data/test/dummy/node_modules/falafel/test/array.js +35 -0
  1139. data/test/dummy/node_modules/falafel/test/async.js +42 -0
  1140. data/test/dummy/node_modules/falafel/test/bin/run.js +5 -0
  1141. data/test/dummy/node_modules/falafel/test/custom-parser.js +42 -0
  1142. data/test/dummy/node_modules/falafel/test/es6.js +15 -0
  1143. data/test/dummy/node_modules/falafel/test/for.js +30 -0
  1144. data/test/dummy/node_modules/falafel/test/inspect.js +36 -0
  1145. data/test/dummy/node_modules/falafel/test/opts.js +134 -0
  1146. data/test/dummy/node_modules/falafel/test/parent.js +33 -0
  1147. data/test/dummy/node_modules/filename-regex/README.md +51 -0
  1148. data/test/dummy/node_modules/filename-regex/index.js +10 -0
  1149. data/test/dummy/node_modules/filename-regex/package.json +92 -0
  1150. data/test/dummy/node_modules/fill-range/LICENSE +21 -0
  1151. data/test/dummy/node_modules/fill-range/README.md +290 -0
  1152. data/test/dummy/node_modules/fill-range/index.js +408 -0
  1153. data/test/dummy/node_modules/fill-range/package.json +123 -0
  1154. data/test/dummy/node_modules/for-in/LICENSE +21 -0
  1155. data/test/dummy/node_modules/for-in/README.md +74 -0
  1156. data/test/dummy/node_modules/for-in/index.js +16 -0
  1157. data/test/dummy/node_modules/for-in/package.json +119 -0
  1158. data/test/dummy/node_modules/for-own/LICENSE +21 -0
  1159. data/test/dummy/node_modules/for-own/README.md +52 -0
  1160. data/test/dummy/node_modules/for-own/index.js +19 -0
  1161. data/test/dummy/node_modules/for-own/package.json +120 -0
  1162. data/test/dummy/node_modules/foreach/LICENSE +24 -0
  1163. data/test/dummy/node_modules/foreach/Makefile +11 -0
  1164. data/test/dummy/node_modules/foreach/Readme.md +30 -0
  1165. data/test/dummy/node_modules/foreach/component.json +11 -0
  1166. data/test/dummy/node_modules/foreach/index.js +22 -0
  1167. data/test/dummy/node_modules/foreach/package.json +109 -0
  1168. data/test/dummy/node_modules/foreach/test.js +153 -0
  1169. data/test/dummy/node_modules/fsevents/LICENSE +22 -0
  1170. data/test/dummy/node_modules/fsevents/Readme.md +78 -0
  1171. data/test/dummy/node_modules/fsevents/binding.gyp +29 -0
  1172. data/test/dummy/node_modules/fsevents/fsevents.cc +102 -0
  1173. data/test/dummy/node_modules/fsevents/fsevents.js +105 -0
  1174. data/test/dummy/node_modules/fsevents/lib/binding/Release/node-v47-darwin-x64/fse.node +0 -0
  1175. data/test/dummy/node_modules/fsevents/node_modules/ansi/History.md +23 -0
  1176. data/test/dummy/node_modules/fsevents/node_modules/ansi/LICENSE +24 -0
  1177. data/test/dummy/node_modules/fsevents/node_modules/ansi/README.md +98 -0
  1178. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/beep/index.js +16 -0
  1179. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/clear/index.js +15 -0
  1180. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/cursorPosition.js +32 -0
  1181. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/progress/index.js +87 -0
  1182. data/test/dummy/node_modules/fsevents/node_modules/ansi/lib/ansi.js +405 -0
  1183. data/test/dummy/node_modules/fsevents/node_modules/ansi/lib/newlines.js +71 -0
  1184. data/test/dummy/node_modules/fsevents/node_modules/ansi/package.json +69 -0
  1185. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/index.js +4 -0
  1186. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/package.json +95 -0
  1187. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/readme.md +31 -0
  1188. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/index.js +65 -0
  1189. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/package.json +89 -0
  1190. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/readme.md +86 -0
  1191. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/CHANGES.md +19 -0
  1192. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/LICENSE +5 -0
  1193. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/README.md +194 -0
  1194. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/index.js +4 -0
  1195. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/package.json +65 -0
  1196. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/lib/test-event.js +29 -0
  1197. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/tracker.js +57 -0
  1198. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/trackergroup.js +96 -0
  1199. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/trackerstream.js +51 -0
  1200. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-base.js +11 -0
  1201. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-group.js +107 -0
  1202. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-stream.js +35 -0
  1203. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker.js +30 -0
  1204. data/test/dummy/node_modules/fsevents/node_modules/asn1/LICENSE +19 -0
  1205. data/test/dummy/node_modules/fsevents/node_modules/asn1/README.md +50 -0
  1206. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/errors.js +13 -0
  1207. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/index.js +27 -0
  1208. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/reader.js +261 -0
  1209. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/types.js +36 -0
  1210. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/writer.js +316 -0
  1211. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/index.js +20 -0
  1212. data/test/dummy/node_modules/fsevents/node_modules/asn1/package.json +72 -0
  1213. data/test/dummy/node_modules/fsevents/node_modules/asn1/tst/ber/reader.test.js +208 -0
  1214. data/test/dummy/node_modules/fsevents/node_modules/asn1/tst/ber/writer.test.js +370 -0
  1215. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/AUTHORS +6 -0
  1216. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/CHANGES.md +8 -0
  1217. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/README.md +155 -0
  1218. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/assert.js +206 -0
  1219. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/package.json +90 -0
  1220. data/test/dummy/node_modules/fsevents/node_modules/async/README.md +1877 -0
  1221. data/test/dummy/node_modules/fsevents/node_modules/async/dist/async.js +1265 -0
  1222. data/test/dummy/node_modules/fsevents/node_modules/async/dist/async.min.js +2 -0
  1223. data/test/dummy/node_modules/fsevents/node_modules/async/lib/async.js +1265 -0
  1224. data/test/dummy/node_modules/fsevents/node_modules/async/package.json +131 -0
  1225. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/LICENSE +55 -0
  1226. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/README.md +4 -0
  1227. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/index.js +212 -0
  1228. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/package.json +55 -0
  1229. data/test/dummy/node_modules/fsevents/node_modules/aws4/LICENSE +19 -0
  1230. data/test/dummy/node_modules/fsevents/node_modules/aws4/README.md +514 -0
  1231. data/test/dummy/node_modules/fsevents/node_modules/aws4/aws4.js +318 -0
  1232. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/README.md +142 -0
  1233. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/lib/lru-cache.js +469 -0
  1234. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/LICENSE +15 -0
  1235. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/README.md +60 -0
  1236. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/map.js +9 -0
  1237. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/package.json +60 -0
  1238. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js +113 -0
  1239. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/test/basic.js +86 -0
  1240. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/CONTRIBUTING.md +4 -0
  1241. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/LICENSE +15 -0
  1242. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/README.md +204 -0
  1243. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/package.json +60 -0
  1244. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/test/basic.js +188 -0
  1245. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/yallist.js +360 -0
  1246. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/package.json +78 -0
  1247. data/test/dummy/node_modules/fsevents/node_modules/aws4/package.json +117 -0
  1248. data/test/dummy/node_modules/fsevents/node_modules/bl/LICENSE.md +13 -0
  1249. data/test/dummy/node_modules/fsevents/node_modules/bl/README.md +200 -0
  1250. data/test/dummy/node_modules/fsevents/node_modules/bl/bl.js +227 -0
  1251. data/test/dummy/node_modules/fsevents/node_modules/bl/package.json +72 -0
  1252. data/test/dummy/node_modules/fsevents/node_modules/bl/test/test.js +571 -0
  1253. data/test/dummy/node_modules/fsevents/node_modules/block-stream/LICENCE +25 -0
  1254. data/test/dummy/node_modules/fsevents/node_modules/block-stream/LICENSE +15 -0
  1255. data/test/dummy/node_modules/fsevents/node_modules/block-stream/README.md +14 -0
  1256. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/block-stream-pause.js +70 -0
  1257. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/block-stream.js +68 -0
  1258. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/dropper-pause.js +70 -0
  1259. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/dropper.js +68 -0
  1260. data/test/dummy/node_modules/fsevents/node_modules/block-stream/block-stream.js +209 -0
  1261. data/test/dummy/node_modules/fsevents/node_modules/block-stream/package.json +62 -0
  1262. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/basic.js +27 -0
  1263. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/nopad-thorough.js +68 -0
  1264. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/nopad.js +57 -0
  1265. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/pause-resume.js +73 -0
  1266. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/thorough.js +68 -0
  1267. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/two-stream.js +59 -0
  1268. data/test/dummy/node_modules/fsevents/node_modules/boom/CONTRIBUTING.md +1 -0
  1269. data/test/dummy/node_modules/fsevents/node_modules/boom/LICENSE +28 -0
  1270. data/test/dummy/node_modules/fsevents/node_modules/boom/README.md +652 -0
  1271. data/test/dummy/node_modules/fsevents/node_modules/boom/images/boom.png +0 -0
  1272. data/test/dummy/node_modules/fsevents/node_modules/boom/lib/index.js +318 -0
  1273. data/test/dummy/node_modules/fsevents/node_modules/boom/package.json +72 -0
  1274. data/test/dummy/node_modules/fsevents/node_modules/boom/test/index.js +654 -0
  1275. data/test/dummy/node_modules/fsevents/node_modules/caseless/LICENSE +28 -0
  1276. data/test/dummy/node_modules/fsevents/node_modules/caseless/README.md +45 -0
  1277. data/test/dummy/node_modules/fsevents/node_modules/caseless/index.js +66 -0
  1278. data/test/dummy/node_modules/fsevents/node_modules/caseless/package.json +70 -0
  1279. data/test/dummy/node_modules/fsevents/node_modules/caseless/test.js +40 -0
  1280. data/test/dummy/node_modules/fsevents/node_modules/chalk/index.js +116 -0
  1281. data/test/dummy/node_modules/fsevents/node_modules/chalk/package.json +115 -0
  1282. data/test/dummy/node_modules/fsevents/node_modules/chalk/readme.md +213 -0
  1283. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/License +19 -0
  1284. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/Readme.md +138 -0
  1285. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/lib/combined_stream.js +188 -0
  1286. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/package.json +75 -0
  1287. data/test/dummy/node_modules/fsevents/node_modules/commander/Readme.md +351 -0
  1288. data/test/dummy/node_modules/fsevents/node_modules/commander/index.js +1110 -0
  1289. data/test/dummy/node_modules/fsevents/node_modules/commander/package.json +78 -0
  1290. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/LICENSE +19 -0
  1291. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/README.md +3 -0
  1292. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/float.patch +604 -0
  1293. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/lib/util.js +107 -0
  1294. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/package.json +68 -0
  1295. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/test.js +68 -0
  1296. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/LICENSE +28 -0
  1297. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/README.md +16 -0
  1298. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/lib/index.js +68 -0
  1299. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/package.json +68 -0
  1300. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/test/index.js +102 -0
  1301. data/test/dummy/node_modules/fsevents/node_modules/dashdash/README.md +574 -0
  1302. data/test/dummy/node_modules/fsevents/node_modules/dashdash/etc/dashdash.bash_completion.in +388 -0
  1303. data/test/dummy/node_modules/fsevents/node_modules/dashdash/lib/dashdash.js +1022 -0
  1304. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/AUTHORS +6 -0
  1305. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +14 -0
  1306. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/README.md +162 -0
  1307. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/assert.js +211 -0
  1308. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/package.json +90 -0
  1309. data/test/dummy/node_modules/fsevents/node_modules/dashdash/package.json +99 -0
  1310. data/test/dummy/node_modules/fsevents/node_modules/debug/History.md +195 -0
  1311. data/test/dummy/node_modules/fsevents/node_modules/debug/Makefile +36 -0
  1312. data/test/dummy/node_modules/fsevents/node_modules/debug/Readme.md +188 -0
  1313. data/test/dummy/node_modules/fsevents/node_modules/debug/bower.json +28 -0
  1314. data/test/dummy/node_modules/fsevents/node_modules/debug/browser.js +168 -0
  1315. data/test/dummy/node_modules/fsevents/node_modules/debug/component.json +19 -0
  1316. data/test/dummy/node_modules/fsevents/node_modules/debug/debug.js +197 -0
  1317. data/test/dummy/node_modules/fsevents/node_modules/debug/node.js +209 -0
  1318. data/test/dummy/node_modules/fsevents/node_modules/debug/package.json +80 -0
  1319. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/README.md +90 -0
  1320. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/index.js +1 -0
  1321. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/lib/deep-extend.js +144 -0
  1322. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/package.json +95 -0
  1323. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/License +19 -0
  1324. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/Makefile +7 -0
  1325. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/Readme.md +141 -0
  1326. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  1327. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/package.json +71 -0
  1328. data/test/dummy/node_modules/fsevents/node_modules/delegates/History.md +22 -0
  1329. data/test/dummy/node_modules/fsevents/node_modules/delegates/License +20 -0
  1330. data/test/dummy/node_modules/fsevents/node_modules/delegates/Makefile +8 -0
  1331. data/test/dummy/node_modules/fsevents/node_modules/delegates/Readme.md +94 -0
  1332. data/test/dummy/node_modules/fsevents/node_modules/delegates/index.js +121 -0
  1333. data/test/dummy/node_modules/fsevents/node_modules/delegates/package.json +59 -0
  1334. data/test/dummy/node_modules/fsevents/node_modules/delegates/test/index.js +94 -0
  1335. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/LICENSE +21 -0
  1336. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/README.md +8 -0
  1337. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/index.js +57 -0
  1338. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/LICENSE-jsbn +40 -0
  1339. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/ec.js +561 -0
  1340. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/sec.js +170 -0
  1341. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/package.json +64 -0
  1342. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/test.js +14 -0
  1343. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/index.js +11 -0
  1344. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/package.json +84 -0
  1345. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/readme.md +27 -0
  1346. data/test/dummy/node_modules/fsevents/node_modules/extend/CHANGELOG.md +69 -0
  1347. data/test/dummy/node_modules/fsevents/node_modules/extend/LICENSE +23 -0
  1348. data/test/dummy/node_modules/fsevents/node_modules/extend/README.md +62 -0
  1349. data/test/dummy/node_modules/fsevents/node_modules/extend/component.json +32 -0
  1350. data/test/dummy/node_modules/fsevents/node_modules/extend/index.js +86 -0
  1351. data/test/dummy/node_modules/fsevents/node_modules/extend/package.json +80 -0
  1352. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/LICENSE +19 -0
  1353. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile +23 -0
  1354. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile.deps +39 -0
  1355. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile.targ +285 -0
  1356. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/README.md +39 -0
  1357. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/examples/simple.js +2 -0
  1358. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/jsl.node.conf +137 -0
  1359. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/lib/extsprintf.js +166 -0
  1360. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/package.json +49 -0
  1361. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/LICENSE +55 -0
  1362. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/README.md +4 -0
  1363. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/index.js +138 -0
  1364. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/package.json +62 -0
  1365. data/test/dummy/node_modules/fsevents/node_modules/form-data/License +19 -0
  1366. data/test/dummy/node_modules/fsevents/node_modules/form-data/README.md +218 -0
  1367. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/browser.js +2 -0
  1368. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/form_data.js +411 -0
  1369. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/populate.js +9 -0
  1370. data/test/dummy/node_modules/fsevents/node_modules/form-data/package.json +112 -0
  1371. data/test/dummy/node_modules/fsevents/node_modules/form-data/wercker.yml +36 -0
  1372. data/test/dummy/node_modules/fsevents/node_modules/fstream/LICENSE +15 -0
  1373. data/test/dummy/node_modules/fsevents/node_modules/fstream/README.md +76 -0
  1374. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/filter-pipe.js +134 -0
  1375. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/pipe.js +118 -0
  1376. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/reader.js +68 -0
  1377. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/symlink-write.js +27 -0
  1378. data/test/dummy/node_modules/fsevents/node_modules/fstream/fstream.js +35 -0
  1379. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/abstract.js +85 -0
  1380. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/collect.js +68 -0
  1381. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/dir-reader.js +252 -0
  1382. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/dir-writer.js +174 -0
  1383. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/file-reader.js +150 -0
  1384. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/file-writer.js +107 -0
  1385. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/get-type.js +33 -0
  1386. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/link-reader.js +53 -0
  1387. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/link-writer.js +95 -0
  1388. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/proxy-reader.js +95 -0
  1389. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/proxy-writer.js +111 -0
  1390. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/reader.js +255 -0
  1391. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/socket-reader.js +36 -0
  1392. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/writer.js +390 -0
  1393. data/test/dummy/node_modules/fsevents/node_modules/fstream/package.json +80 -0
  1394. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/LICENSE +15 -0
  1395. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/README.md +22 -0
  1396. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/example/basic.js +13 -0
  1397. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/ignore.js +275 -0
  1398. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/README.md +216 -0
  1399. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/minimatch.js +912 -0
  1400. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/README.md +122 -0
  1401. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  1402. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  1403. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md +21 -0
  1404. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  1405. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +89 -0
  1406. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  1407. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +50 -0
  1408. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +80 -0
  1409. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +84 -0
  1410. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  1411. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  1412. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  1413. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  1414. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +91 -0
  1415. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  1416. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/package.json +86 -0
  1417. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/package.json +67 -0
  1418. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/package.json +68 -0
  1419. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/00-setup.js +71 -0
  1420. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/basic.js +28 -0
  1421. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/common.js +40 -0
  1422. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/ignore-most.js +41 -0
  1423. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/nested-ignores.js +51 -0
  1424. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/read-file-order.js +81 -0
  1425. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/unignore-child.js +38 -0
  1426. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/zz-cleanup.js +10 -0
  1427. data/test/dummy/node_modules/fsevents/node_modules/gauge/LICENSE +13 -0
  1428. data/test/dummy/node_modules/fsevents/node_modules/gauge/README.md +166 -0
  1429. data/test/dummy/node_modules/fsevents/node_modules/gauge/example.png +0 -0
  1430. data/test/dummy/node_modules/fsevents/node_modules/gauge/package.json +72 -0
  1431. data/test/dummy/node_modules/fsevents/node_modules/gauge/progress-bar.js +225 -0
  1432. data/test/dummy/node_modules/fsevents/node_modules/gauge/test/progress-bar.js +176 -0
  1433. data/test/dummy/node_modules/fsevents/node_modules/generate-function/README.md +72 -0
  1434. data/test/dummy/node_modules/fsevents/node_modules/generate-function/example.js +27 -0
  1435. data/test/dummy/node_modules/fsevents/node_modules/generate-function/index.js +61 -0
  1436. data/test/dummy/node_modules/fsevents/node_modules/generate-function/package.json +61 -0
  1437. data/test/dummy/node_modules/fsevents/node_modules/generate-function/test.js +33 -0
  1438. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/LICENSE +21 -0
  1439. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/README.md +19 -0
  1440. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/index.js +12 -0
  1441. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/package.json +58 -0
  1442. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/test.js +12 -0
  1443. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/README.md +53 -0
  1444. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/fs.js +21 -0
  1445. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/graceful-fs.js +253 -0
  1446. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/legacy-streams.js +118 -0
  1447. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/package.json +85 -0
  1448. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/polyfills.js +252 -0
  1449. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/LICENSE +22 -0
  1450. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/README.md +17 -0
  1451. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/index.js +12 -0
  1452. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/package.json +57 -0
  1453. data/test/dummy/node_modules/fsevents/node_modules/har-validator/README.md +309 -0
  1454. data/test/dummy/node_modules/fsevents/node_modules/har-validator/bin/har-validator +56 -0
  1455. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/async.js +14 -0
  1456. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/error.js +10 -0
  1457. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/index.js +22 -0
  1458. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/runner.js +29 -0
  1459. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cache.json +13 -0
  1460. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cacheEntry.json +31 -0
  1461. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/content.json +27 -0
  1462. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cookie.json +34 -0
  1463. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/creator.json +18 -0
  1464. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/entry.json +51 -0
  1465. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/har.json +11 -0
  1466. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/index.js +49 -0
  1467. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/log.json +34 -0
  1468. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/page.json +30 -0
  1469. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/pageTimings.json +16 -0
  1470. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/postData.json +41 -0
  1471. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/record.json +18 -0
  1472. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/request.json +55 -0
  1473. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/response.json +52 -0
  1474. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/timings.json +40 -0
  1475. data/test/dummy/node_modules/fsevents/node_modules/har-validator/package.json +94 -0
  1476. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/index.js +4 -0
  1477. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/package.json +92 -0
  1478. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/readme.md +36 -0
  1479. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/LICENSE +14 -0
  1480. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/README.md +43 -0
  1481. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/index.js +21 -0
  1482. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/package.json +62 -0
  1483. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/test/index.js +26 -0
  1484. data/test/dummy/node_modules/fsevents/node_modules/hawk/LICENSE +28 -0
  1485. data/test/dummy/node_modules/fsevents/node_modules/hawk/README.md +634 -0
  1486. data/test/dummy/node_modules/fsevents/node_modules/hawk/bower.json +24 -0
  1487. data/test/dummy/node_modules/fsevents/node_modules/hawk/component.json +19 -0
  1488. data/test/dummy/node_modules/fsevents/node_modules/hawk/dist/client.js +343 -0
  1489. data/test/dummy/node_modules/fsevents/node_modules/hawk/example/usage.js +78 -0
  1490. data/test/dummy/node_modules/fsevents/node_modules/hawk/images/hawk.png +0 -0
  1491. data/test/dummy/node_modules/fsevents/node_modules/hawk/images/logo.png +0 -0
  1492. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/browser.js +637 -0
  1493. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/client.js +369 -0
  1494. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/crypto.js +126 -0
  1495. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/index.js +15 -0
  1496. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/server.js +548 -0
  1497. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/utils.js +184 -0
  1498. data/test/dummy/node_modules/fsevents/node_modules/hawk/package.json +75 -0
  1499. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/browser.js +1492 -0
  1500. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/client.js +440 -0
  1501. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/crypto.js +70 -0
  1502. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/index.js +378 -0
  1503. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/readme.js +95 -0
  1504. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/server.js +1329 -0
  1505. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/uri.js +838 -0
  1506. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/utils.js +149 -0
  1507. data/test/dummy/node_modules/fsevents/node_modules/hoek/CONTRIBUTING.md +1 -0
  1508. data/test/dummy/node_modules/fsevents/node_modules/hoek/LICENSE +31 -0
  1509. data/test/dummy/node_modules/fsevents/node_modules/hoek/README.md +584 -0
  1510. data/test/dummy/node_modules/fsevents/node_modules/hoek/images/hoek.png +0 -0
  1511. data/test/dummy/node_modules/fsevents/node_modules/hoek/lib/escape.js +132 -0
  1512. data/test/dummy/node_modules/fsevents/node_modules/hoek/lib/index.js +993 -0
  1513. data/test/dummy/node_modules/fsevents/node_modules/hoek/package.json +70 -0
  1514. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/escaper.js +88 -0
  1515. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/index.js +2513 -0
  1516. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/ignore.txt +0 -0
  1517. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test1.js +1 -0
  1518. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test2.js +1 -0
  1519. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test3.js +1 -0
  1520. data/test/dummy/node_modules/fsevents/node_modules/http-signature/CHANGES.md +46 -0
  1521. data/test/dummy/node_modules/fsevents/node_modules/http-signature/LICENSE +18 -0
  1522. data/test/dummy/node_modules/fsevents/node_modules/http-signature/README.md +79 -0
  1523. data/test/dummy/node_modules/fsevents/node_modules/http-signature/http_signing.md +363 -0
  1524. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/index.js +29 -0
  1525. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/parser.js +318 -0
  1526. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/signer.js +399 -0
  1527. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/utils.js +112 -0
  1528. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/verify.js +88 -0
  1529. data/test/dummy/node_modules/fsevents/node_modules/http-signature/package.json +90 -0
  1530. data/test/dummy/node_modules/fsevents/node_modules/inherits/LICENSE +16 -0
  1531. data/test/dummy/node_modules/fsevents/node_modules/inherits/README.md +42 -0
  1532. data/test/dummy/node_modules/fsevents/node_modules/inherits/inherits.js +1 -0
  1533. data/test/dummy/node_modules/fsevents/node_modules/inherits/inherits_browser.js +23 -0
  1534. data/test/dummy/node_modules/fsevents/node_modules/inherits/package.json +81 -0
  1535. data/test/dummy/node_modules/fsevents/node_modules/inherits/test.js +25 -0
  1536. data/test/dummy/node_modules/fsevents/node_modules/ini/README.md +102 -0
  1537. data/test/dummy/node_modules/fsevents/node_modules/ini/ini.js +190 -0
  1538. data/test/dummy/node_modules/fsevents/node_modules/ini/package.json +64 -0
  1539. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/LICENSE +21 -0
  1540. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/README.md +173 -0
  1541. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/example.js +18 -0
  1542. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/formats.js +14 -0
  1543. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/index.js +584 -0
  1544. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/package.json +83 -0
  1545. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/require.js +12 -0
  1546. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/fixtures/cosmic.js +84 -0
  1547. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +82 -0
  1548. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +88 -0
  1549. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +112 -0
  1550. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +68 -0
  1551. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +107 -0
  1552. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +49 -0
  1553. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +32 -0
  1554. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +113 -0
  1555. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +72 -0
  1556. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +143 -0
  1557. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +46 -0
  1558. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +28 -0
  1559. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +28 -0
  1560. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +28 -0
  1561. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +42 -0
  1562. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +28 -0
  1563. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +28 -0
  1564. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +28 -0
  1565. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +42 -0
  1566. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +96 -0
  1567. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +96 -0
  1568. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +18 -0
  1569. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +18 -0
  1570. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +68 -0
  1571. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +23 -0
  1572. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +110 -0
  1573. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +92 -0
  1574. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +128 -0
  1575. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +74 -0
  1576. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +39 -0
  1577. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +330 -0
  1578. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +79 -0
  1579. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema.js +23 -0
  1580. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/misc.js +447 -0
  1581. data/test/dummy/node_modules/fsevents/node_modules/is-property/LICENSE +22 -0
  1582. data/test/dummy/node_modules/fsevents/node_modules/is-property/README.md +28 -0
  1583. data/test/dummy/node_modules/fsevents/node_modules/is-property/is-property.js +5 -0
  1584. data/test/dummy/node_modules/fsevents/node_modules/is-property/package.json +66 -0
  1585. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/LICENSE.md +18 -0
  1586. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/README.md +16 -0
  1587. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/index.js +41 -0
  1588. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/package.json +64 -0
  1589. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/test.js +34 -0
  1590. data/test/dummy/node_modules/fsevents/node_modules/isarray/Makefile +6 -0
  1591. data/test/dummy/node_modules/fsevents/node_modules/isarray/README.md +60 -0
  1592. data/test/dummy/node_modules/fsevents/node_modules/isarray/component.json +19 -0
  1593. data/test/dummy/node_modules/fsevents/node_modules/isarray/index.js +5 -0
  1594. data/test/dummy/node_modules/fsevents/node_modules/isarray/package.json +78 -0
  1595. data/test/dummy/node_modules/fsevents/node_modules/isarray/test.js +20 -0
  1596. data/test/dummy/node_modules/fsevents/node_modules/isstream/LICENSE.md +11 -0
  1597. data/test/dummy/node_modules/fsevents/node_modules/isstream/README.md +66 -0
  1598. data/test/dummy/node_modules/fsevents/node_modules/isstream/isstream.js +27 -0
  1599. data/test/dummy/node_modules/fsevents/node_modules/isstream/package.json +67 -0
  1600. data/test/dummy/node_modules/fsevents/node_modules/isstream/test.js +168 -0
  1601. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/AUTHORS.md +3 -0
  1602. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/LICENSE +23 -0
  1603. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/README.md +51 -0
  1604. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/almond.0 +42 -0
  1605. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/almond.1 +13 -0
  1606. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/index.js +35 -0
  1607. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/jsdoc.json +19 -0
  1608. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/core.js +481 -0
  1609. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/curve255.js +221 -0
  1610. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/dh.js +111 -0
  1611. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/eddsa.js +573 -0
  1612. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/utils.js +198 -0
  1613. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/package.json +78 -0
  1614. data/test/dummy/node_modules/fsevents/node_modules/jsbn/LICENSE +40 -0
  1615. data/test/dummy/node_modules/fsevents/node_modules/jsbn/README.md +175 -0
  1616. data/test/dummy/node_modules/fsevents/node_modules/jsbn/example.html +12 -0
  1617. data/test/dummy/node_modules/fsevents/node_modules/jsbn/example.js +3 -0
  1618. data/test/dummy/node_modules/fsevents/node_modules/jsbn/index.js +1358 -0
  1619. data/test/dummy/node_modules/fsevents/node_modules/jsbn/package.json +61 -0
  1620. data/test/dummy/node_modules/fsevents/node_modules/json-schema/README.md +5 -0
  1621. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/hyper-schema +68 -0
  1622. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/json-ref +26 -0
  1623. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/links +33 -0
  1624. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/schema +155 -0
  1625. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/hyper-schema +68 -0
  1626. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/json-ref +26 -0
  1627. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/links +33 -0
  1628. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/schema +155 -0
  1629. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/hyper-schema +68 -0
  1630. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/json-ref +26 -0
  1631. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/links +35 -0
  1632. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/schema +166 -0
  1633. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/address +20 -0
  1634. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/calendar +53 -0
  1635. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/card +105 -0
  1636. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/geo +8 -0
  1637. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/interfaces +23 -0
  1638. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/hyper-schema +60 -0
  1639. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/json-ref +26 -0
  1640. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/links +35 -0
  1641. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/schema +174 -0
  1642. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/hyper-schema +60 -0
  1643. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/links +41 -0
  1644. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/schema +189 -0
  1645. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-zyp-json-schema-03.xml +1120 -0
  1646. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-zyp-json-schema-04.xml +1072 -0
  1647. data/test/dummy/node_modules/fsevents/node_modules/json-schema/lib/links.js +52 -0
  1648. data/test/dummy/node_modules/fsevents/node_modules/json-schema/lib/validate.js +260 -0
  1649. data/test/dummy/node_modules/fsevents/node_modules/json-schema/package.json +68 -0
  1650. data/test/dummy/node_modules/fsevents/node_modules/json-schema/test/tests.js +95 -0
  1651. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/CHANGELOG.md +14 -0
  1652. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/LICENSE +15 -0
  1653. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/Makefile +35 -0
  1654. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/README.md +52 -0
  1655. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/package.json +76 -0
  1656. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/stringify.js +27 -0
  1657. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/test/mocha.opts +2 -0
  1658. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/test/stringify_test.js +246 -0
  1659. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/README.md +32 -0
  1660. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/jsonpointer.js +76 -0
  1661. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/package.json +73 -0
  1662. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/test.js +98 -0
  1663. data/test/dummy/node_modules/fsevents/node_modules/jsprim/CHANGES.md +30 -0
  1664. data/test/dummy/node_modules/fsevents/node_modules/jsprim/LICENSE +19 -0
  1665. data/test/dummy/node_modules/fsevents/node_modules/jsprim/README.md +228 -0
  1666. data/test/dummy/node_modules/fsevents/node_modules/jsprim/lib/jsprim.js +478 -0
  1667. data/test/dummy/node_modules/fsevents/node_modules/jsprim/package.json +55 -0
  1668. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/LICENSE +23 -0
  1669. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/README.md +18 -0
  1670. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/index.js +296 -0
  1671. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/package.json +91 -0
  1672. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/LICENSE +23 -0
  1673. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/README.md +18 -0
  1674. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/index.js +285 -0
  1675. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/package.json +91 -0
  1676. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/LICENSE +23 -0
  1677. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/README.md +18 -0
  1678. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/index.js +285 -0
  1679. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/package.json +91 -0
  1680. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/LICENSE +23 -0
  1681. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/README.md +18 -0
  1682. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/index.js +215 -0
  1683. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/package.json +92 -0
  1684. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/LICENSE +23 -0
  1685. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/README.md +18 -0
  1686. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/index.js +164 -0
  1687. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/package.json +91 -0
  1688. data/test/dummy/node_modules/fsevents/node_modules/mime-db/HISTORY.md +320 -0
  1689. data/test/dummy/node_modules/fsevents/node_modules/mime-db/LICENSE +22 -0
  1690. data/test/dummy/node_modules/fsevents/node_modules/mime-db/README.md +82 -0
  1691. data/test/dummy/node_modules/fsevents/node_modules/mime-db/db.json +6575 -0
  1692. data/test/dummy/node_modules/fsevents/node_modules/mime-db/index.js +11 -0
  1693. data/test/dummy/node_modules/fsevents/node_modules/mime-db/package.json +108 -0
  1694. data/test/dummy/node_modules/fsevents/node_modules/mime-types/HISTORY.md +191 -0
  1695. data/test/dummy/node_modules/fsevents/node_modules/mime-types/LICENSE +23 -0
  1696. data/test/dummy/node_modules/fsevents/node_modules/mime-types/README.md +103 -0
  1697. data/test/dummy/node_modules/fsevents/node_modules/mime-types/index.js +188 -0
  1698. data/test/dummy/node_modules/fsevents/node_modules/mime-types/package.json +98 -0
  1699. data/test/dummy/node_modules/fsevents/node_modules/minimist/LICENSE +18 -0
  1700. data/test/dummy/node_modules/fsevents/node_modules/minimist/example/parse.js +2 -0
  1701. data/test/dummy/node_modules/fsevents/node_modules/minimist/index.js +187 -0
  1702. data/test/dummy/node_modules/fsevents/node_modules/minimist/package.json +93 -0
  1703. data/test/dummy/node_modules/fsevents/node_modules/minimist/readme.markdown +73 -0
  1704. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/dash.js +24 -0
  1705. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/default_bool.js +20 -0
  1706. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/dotted.js +16 -0
  1707. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/long.js +31 -0
  1708. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/parse.js +318 -0
  1709. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/parse_modified.js +9 -0
  1710. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/short.js +67 -0
  1711. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/whitespace.js +8 -0
  1712. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/LICENSE +21 -0
  1713. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/bin/cmd.js +33 -0
  1714. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/bin/usage.txt +12 -0
  1715. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/examples/pow.js +6 -0
  1716. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/index.js +98 -0
  1717. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/package.json +86 -0
  1718. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/readme.markdown +100 -0
  1719. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/chmod.js +41 -0
  1720. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/clobber.js +38 -0
  1721. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/mkdirp.js +28 -0
  1722. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs.js +29 -0
  1723. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  1724. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/perm.js +32 -0
  1725. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/perm_sync.js +36 -0
  1726. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/race.js +37 -0
  1727. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/rel.js +32 -0
  1728. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/return.js +25 -0
  1729. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/return_sync.js +24 -0
  1730. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/root.js +19 -0
  1731. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/sync.js +32 -0
  1732. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/umask.js +28 -0
  1733. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/umask_sync.js +32 -0
  1734. data/test/dummy/node_modules/fsevents/node_modules/ms/LICENSE +20 -0
  1735. data/test/dummy/node_modules/fsevents/node_modules/ms/README.md +35 -0
  1736. data/test/dummy/node_modules/fsevents/node_modules/ms/index.js +125 -0
  1737. data/test/dummy/node_modules/fsevents/node_modules/ms/package.json +56 -0
  1738. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/CHANGELOG.md +302 -0
  1739. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/LICENSE +27 -0
  1740. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/README.md +570 -0
  1741. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/appveyor.yml +30 -0
  1742. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp +131 -0
  1743. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp.cmd +2 -0
  1744. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/build.js +43 -0
  1745. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/clean.js +23 -0
  1746. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/configure.js +48 -0
  1747. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/info.js +40 -0
  1748. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/install.js +205 -0
  1749. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/node-pre-gyp.js +192 -0
  1750. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/package.js +46 -0
  1751. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/pre-binding.js +25 -0
  1752. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/publish.js +77 -0
  1753. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/rebuild.js +13 -0
  1754. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/reinstall.js +13 -0
  1755. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/reveal.js +31 -0
  1756. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/testbinary.js +73 -0
  1757. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/testpackage.js +49 -0
  1758. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/unpublish.js +41 -0
  1759. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +1190 -0
  1760. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/compile.js +87 -0
  1761. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/handle_gyp_opts.js +94 -0
  1762. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/nw-pre-gyp/index.html +26 -0
  1763. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/nw-pre-gyp/package.json +9 -0
  1764. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/s3_setup.js +27 -0
  1765. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/versioning.js +308 -0
  1766. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/LICENSE +15 -0
  1767. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/README.md +211 -0
  1768. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/bin/nopt.js +54 -0
  1769. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/examples/my-program.js +30 -0
  1770. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/lib/nopt.js +415 -0
  1771. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md +3 -0
  1772. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/LICENSE +15 -0
  1773. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/README.md +23 -0
  1774. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/abbrev.js +62 -0
  1775. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/package.json +56 -0
  1776. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/test.js +47 -0
  1777. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/package.json +70 -0
  1778. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/test/basic.js +273 -0
  1779. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/package.json +139 -0
  1780. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/LICENSE.md +21 -0
  1781. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/README.md +254 -0
  1782. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/README.md +53 -0
  1783. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/bench.gnu +174 -0
  1784. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/bench.sh +34 -0
  1785. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/benchmark-native.c +34 -0
  1786. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/benchmark.js +84 -0
  1787. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/bin/uuid +26 -0
  1788. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/bower.json +23 -0
  1789. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/component.json +25 -0
  1790. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/package.json +87 -0
  1791. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/compare_v1.js +63 -0
  1792. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/test.html +17 -0
  1793. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/test.js +231 -0
  1794. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/uuid.js +272 -0
  1795. data/test/dummy/node_modules/fsevents/node_modules/npmlog/LICENSE +15 -0
  1796. data/test/dummy/node_modules/fsevents/node_modules/npmlog/README.md +195 -0
  1797. data/test/dummy/node_modules/fsevents/node_modules/npmlog/example.js +39 -0
  1798. data/test/dummy/node_modules/fsevents/node_modules/npmlog/log.js +251 -0
  1799. data/test/dummy/node_modules/fsevents/node_modules/npmlog/package.json +74 -0
  1800. data/test/dummy/node_modules/fsevents/node_modules/npmlog/test/basic.js +235 -0
  1801. data/test/dummy/node_modules/fsevents/node_modules/npmlog/test/progress.js +131 -0
  1802. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/LICENSE +55 -0
  1803. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/README.md +4 -0
  1804. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/index.js +136 -0
  1805. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/package.json +66 -0
  1806. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/test.js +89 -0
  1807. data/test/dummy/node_modules/fsevents/node_modules/once/README.md +51 -0
  1808. data/test/dummy/node_modules/fsevents/node_modules/once/once.js +21 -0
  1809. data/test/dummy/node_modules/fsevents/node_modules/once/package.json +70 -0
  1810. data/test/dummy/node_modules/fsevents/node_modules/pinkie/index.js +292 -0
  1811. data/test/dummy/node_modules/fsevents/node_modules/pinkie/package.json +75 -0
  1812. data/test/dummy/node_modules/fsevents/node_modules/pinkie/readme.md +83 -0
  1813. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/index.js +3 -0
  1814. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/package.json +72 -0
  1815. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/readme.md +28 -0
  1816. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/index.js +20 -0
  1817. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/license.md +19 -0
  1818. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/package.json +53 -0
  1819. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/readme.md +18 -0
  1820. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/test.js +24 -0
  1821. data/test/dummy/node_modules/fsevents/node_modules/qs/CHANGELOG.md +110 -0
  1822. data/test/dummy/node_modules/fsevents/node_modules/qs/CONTRIBUTING.md +1 -0
  1823. data/test/dummy/node_modules/fsevents/node_modules/qs/LICENSE +28 -0
  1824. data/test/dummy/node_modules/fsevents/node_modules/qs/README.md +335 -0
  1825. data/test/dummy/node_modules/fsevents/node_modules/qs/bower.json +22 -0
  1826. data/test/dummy/node_modules/fsevents/node_modules/qs/component.json +15 -0
  1827. data/test/dummy/node_modules/fsevents/node_modules/qs/dist/qs.js +475 -0
  1828. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/index.js +9 -0
  1829. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/parse.js +164 -0
  1830. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/stringify.js +130 -0
  1831. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/utils.js +162 -0
  1832. data/test/dummy/node_modules/fsevents/node_modules/qs/package.json +88 -0
  1833. data/test/dummy/node_modules/fsevents/node_modules/qs/test/index.js +5 -0
  1834. data/test/dummy/node_modules/fsevents/node_modules/qs/test/parse.js +393 -0
  1835. data/test/dummy/node_modules/fsevents/node_modules/qs/test/stringify.js +235 -0
  1836. data/test/dummy/node_modules/fsevents/node_modules/qs/test/utils.js +9 -0
  1837. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.APACHE2 +15 -0
  1838. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.BSD +26 -0
  1839. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.MIT +24 -0
  1840. data/test/dummy/node_modules/fsevents/node_modules/rc/README.md +149 -0
  1841. data/test/dummy/node_modules/fsevents/node_modules/rc/browser.js +7 -0
  1842. data/test/dummy/node_modules/fsevents/node_modules/rc/index.js +60 -0
  1843. data/test/dummy/node_modules/fsevents/node_modules/rc/lib/utils.js +103 -0
  1844. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/LICENSE +18 -0
  1845. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/example/parse.js +2 -0
  1846. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/index.js +236 -0
  1847. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/package.json +79 -0
  1848. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/readme.markdown +91 -0
  1849. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/all_bool.js +32 -0
  1850. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/bool.js +166 -0
  1851. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/dash.js +31 -0
  1852. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/default_bool.js +35 -0
  1853. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/dotted.js +22 -0
  1854. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/kv_short.js +16 -0
  1855. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/long.js +31 -0
  1856. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/num.js +36 -0
  1857. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/parse.js +197 -0
  1858. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/parse_modified.js +9 -0
  1859. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/short.js +67 -0
  1860. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/stop_early.js +15 -0
  1861. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/unknown.js +102 -0
  1862. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/whitespace.js +8 -0
  1863. data/test/dummy/node_modules/fsevents/node_modules/rc/package.json +71 -0
  1864. data/test/dummy/node_modules/fsevents/node_modules/rc/test/ini.js +16 -0
  1865. data/test/dummy/node_modules/fsevents/node_modules/rc/test/nested-env-vars.js +40 -0
  1866. data/test/dummy/node_modules/fsevents/node_modules/rc/test/test.js +59 -0
  1867. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/LICENSE +18 -0
  1868. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/README.md +36 -0
  1869. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/doc/stream.markdown +1760 -0
  1870. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  1871. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/duplex.js +1 -0
  1872. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  1873. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  1874. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  1875. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  1876. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  1877. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/package.json +89 -0
  1878. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/passthrough.js +1 -0
  1879. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/readable.js +12 -0
  1880. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/transform.js +1 -0
  1881. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/writable.js +1 -0
  1882. data/test/dummy/node_modules/fsevents/node_modules/request/CHANGELOG.md +593 -0
  1883. data/test/dummy/node_modules/fsevents/node_modules/request/CONTRIBUTING.md +44 -0
  1884. data/test/dummy/node_modules/fsevents/node_modules/request/LICENSE +55 -0
  1885. data/test/dummy/node_modules/fsevents/node_modules/request/README.md +1094 -0
  1886. data/test/dummy/node_modules/fsevents/node_modules/request/index.js +156 -0
  1887. data/test/dummy/node_modules/fsevents/node_modules/request/lib/auth.js +168 -0
  1888. data/test/dummy/node_modules/fsevents/node_modules/request/lib/cookies.js +39 -0
  1889. data/test/dummy/node_modules/fsevents/node_modules/request/lib/getProxyFromURI.js +79 -0
  1890. data/test/dummy/node_modules/fsevents/node_modules/request/lib/har.js +215 -0
  1891. data/test/dummy/node_modules/fsevents/node_modules/request/lib/helpers.js +74 -0
  1892. data/test/dummy/node_modules/fsevents/node_modules/request/lib/multipart.js +112 -0
  1893. data/test/dummy/node_modules/fsevents/node_modules/request/lib/oauth.js +147 -0
  1894. data/test/dummy/node_modules/fsevents/node_modules/request/lib/querystring.js +51 -0
  1895. data/test/dummy/node_modules/fsevents/node_modules/request/lib/redirect.js +153 -0
  1896. data/test/dummy/node_modules/fsevents/node_modules/request/lib/tunnel.js +176 -0
  1897. data/test/dummy/node_modules/fsevents/node_modules/request/package.json +122 -0
  1898. data/test/dummy/node_modules/fsevents/node_modules/request/request.js +1419 -0
  1899. data/test/dummy/node_modules/fsevents/node_modules/rimraf/LICENSE +15 -0
  1900. data/test/dummy/node_modules/fsevents/node_modules/rimraf/README.md +101 -0
  1901. data/test/dummy/node_modules/fsevents/node_modules/rimraf/bin.js +40 -0
  1902. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/README.md +365 -0
  1903. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/common.js +235 -0
  1904. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/glob.js +782 -0
  1905. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/LICENSE +15 -0
  1906. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/README.md +37 -0
  1907. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/inflight.js +44 -0
  1908. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
  1909. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
  1910. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +59 -0
  1911. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
  1912. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
  1913. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/package.json +68 -0
  1914. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/test.js +97 -0
  1915. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  1916. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/README.md +42 -0
  1917. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  1918. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  1919. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/package.json +59 -0
  1920. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/test.js +25 -0
  1921. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +216 -0
  1922. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +912 -0
  1923. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +122 -0
  1924. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  1925. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  1926. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md +21 -0
  1927. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  1928. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +89 -0
  1929. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  1930. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +50 -0
  1931. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +80 -0
  1932. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +84 -0
  1933. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  1934. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  1935. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  1936. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  1937. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +91 -0
  1938. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  1939. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +86 -0
  1940. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +67 -0
  1941. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/README.md +51 -0
  1942. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  1943. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
  1944. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +59 -0
  1945. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  1946. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  1947. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/once.js +21 -0
  1948. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/package.json +71 -0
  1949. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/index.js +20 -0
  1950. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/package.json +79 -0
  1951. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/readme.md +51 -0
  1952. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/package.json +85 -0
  1953. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/sync.js +467 -0
  1954. data/test/dummy/node_modules/fsevents/node_modules/rimraf/package.json +76 -0
  1955. data/test/dummy/node_modules/fsevents/node_modules/rimraf/rimraf.js +335 -0
  1956. data/test/dummy/node_modules/fsevents/node_modules/semver/LICENSE +15 -0
  1957. data/test/dummy/node_modules/fsevents/node_modules/semver/README.md +327 -0
  1958. data/test/dummy/node_modules/fsevents/node_modules/semver/bin/semver +133 -0
  1959. data/test/dummy/node_modules/fsevents/node_modules/semver/package.json +60 -0
  1960. data/test/dummy/node_modules/fsevents/node_modules/semver/range.bnf +16 -0
  1961. data/test/dummy/node_modules/fsevents/node_modules/semver/semver.js +1188 -0
  1962. data/test/dummy/node_modules/fsevents/node_modules/semver/test/big-numbers.js +31 -0
  1963. data/test/dummy/node_modules/fsevents/node_modules/semver/test/clean.js +29 -0
  1964. data/test/dummy/node_modules/fsevents/node_modules/semver/test/gtr.js +173 -0
  1965. data/test/dummy/node_modules/fsevents/node_modules/semver/test/index.js +698 -0
  1966. data/test/dummy/node_modules/fsevents/node_modules/semver/test/ltr.js +181 -0
  1967. data/test/dummy/node_modules/fsevents/node_modules/semver/test/major-minor-patch.js +72 -0
  1968. data/test/dummy/node_modules/fsevents/node_modules/sntp/LICENSE +28 -0
  1969. data/test/dummy/node_modules/fsevents/node_modules/sntp/Makefile +9 -0
  1970. data/test/dummy/node_modules/fsevents/node_modules/sntp/README.md +68 -0
  1971. data/test/dummy/node_modules/fsevents/node_modules/sntp/examples/offset.js +16 -0
  1972. data/test/dummy/node_modules/fsevents/node_modules/sntp/examples/time.js +25 -0
  1973. data/test/dummy/node_modules/fsevents/node_modules/sntp/index.js +1 -0
  1974. data/test/dummy/node_modules/fsevents/node_modules/sntp/lib/index.js +412 -0
  1975. data/test/dummy/node_modules/fsevents/node_modules/sntp/package.json +72 -0
  1976. data/test/dummy/node_modules/fsevents/node_modules/sntp/test/index.js +435 -0
  1977. data/test/dummy/node_modules/fsevents/node_modules/sshpk/LICENSE +18 -0
  1978. data/test/dummy/node_modules/fsevents/node_modules/sshpk/README.md +436 -0
  1979. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-conv +183 -0
  1980. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-sign +176 -0
  1981. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-verify +166 -0
  1982. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/algs.js +168 -0
  1983. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/dhe.js +311 -0
  1984. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/ed-compat.js +96 -0
  1985. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/errors.js +58 -0
  1986. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/fingerprint.js +140 -0
  1987. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/auto.js +73 -0
  1988. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pem.js +152 -0
  1989. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pkcs1.js +320 -0
  1990. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pkcs8.js +510 -0
  1991. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/rfc4253.js +146 -0
  1992. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/ssh-private.js +138 -0
  1993. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/ssh.js +114 -0
  1994. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/index.js +25 -0
  1995. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/key.js +266 -0
  1996. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/private-key.js +224 -0
  1997. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/signature.js +237 -0
  1998. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/ssh-buffer.js +124 -0
  1999. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/utils.js +207 -0
  2000. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-conv.1 +135 -0
  2001. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-sign.1 +81 -0
  2002. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-verify.1 +68 -0
  2003. data/test/dummy/node_modules/fsevents/node_modules/sshpk/package.json +107 -0
  2004. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/LICENSE +20 -0
  2005. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/README.md +7 -0
  2006. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/index.js +221 -0
  2007. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/package.json +61 -0
  2008. data/test/dummy/node_modules/fsevents/node_modules/stringstream/LICENSE.txt +22 -0
  2009. data/test/dummy/node_modules/fsevents/node_modules/stringstream/README.md +38 -0
  2010. data/test/dummy/node_modules/fsevents/node_modules/stringstream/example.js +27 -0
  2011. data/test/dummy/node_modules/fsevents/node_modules/stringstream/package.json +59 -0
  2012. data/test/dummy/node_modules/fsevents/node_modules/stringstream/stringstream.js +102 -0
  2013. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/index.js +6 -0
  2014. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/package.json +98 -0
  2015. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/readme.md +33 -0
  2016. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/cli.js +41 -0
  2017. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/package.json +86 -0
  2018. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/readme.md +80 -0
  2019. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/strip-json-comments.js +73 -0
  2020. data/test/dummy/node_modules/fsevents/node_modules/supports-color/index.js +50 -0
  2021. data/test/dummy/node_modules/fsevents/node_modules/supports-color/package.json +87 -0
  2022. data/test/dummy/node_modules/fsevents/node_modules/supports-color/readme.md +36 -0
  2023. data/test/dummy/node_modules/fsevents/node_modules/tar/LICENSE +12 -0
  2024. data/test/dummy/node_modules/fsevents/node_modules/tar/README.md +50 -0
  2025. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/extracter.js +19 -0
  2026. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/packer.js +24 -0
  2027. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/reader.js +36 -0
  2028. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/buffer-entry.js +30 -0
  2029. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/entry-writer.js +169 -0
  2030. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/entry.js +220 -0
  2031. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extended-header-writer.js +191 -0
  2032. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extended-header.js +140 -0
  2033. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extract.js +94 -0
  2034. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/global-header-writer.js +14 -0
  2035. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/header.js +385 -0
  2036. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/pack.js +236 -0
  2037. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/parse.js +275 -0
  2038. data/test/dummy/node_modules/fsevents/node_modules/tar/package.json +77 -0
  2039. data/test/dummy/node_modules/fsevents/node_modules/tar/tar.js +173 -0
  2040. data/test/dummy/node_modules/fsevents/node_modules/tar/test/00-setup-fixtures.js +53 -0
  2041. data/test/dummy/node_modules/fsevents/node_modules/tar/test/cb-never-called-1.0.1.tgz +0 -0
  2042. data/test/dummy/node_modules/fsevents/node_modules/tar/test/dir-normalization.js +177 -0
  2043. data/test/dummy/node_modules/fsevents/node_modules/tar/test/dir-normalization.tar +0 -0
  2044. data/test/dummy/node_modules/fsevents/node_modules/tar/test/error-on-broken.js +33 -0
  2045. data/test/dummy/node_modules/fsevents/node_modules/tar/test/extract-move.js +132 -0
  2046. data/test/dummy/node_modules/fsevents/node_modules/tar/test/extract.js +367 -0
  2047. data/test/dummy/node_modules/fsevents/node_modules/tar/test/fixtures.tgz +0 -0
  2048. data/test/dummy/node_modules/fsevents/node_modules/tar/test/header.js +183 -0
  2049. data/test/dummy/node_modules/fsevents/node_modules/tar/test/pack-no-proprietary.js +886 -0
  2050. data/test/dummy/node_modules/fsevents/node_modules/tar/test/pack.js +952 -0
  2051. data/test/dummy/node_modules/fsevents/node_modules/tar/test/parse-discard.js +29 -0
  2052. data/test/dummy/node_modules/fsevents/node_modules/tar/test/parse.js +359 -0
  2053. data/test/dummy/node_modules/fsevents/node_modules/tar/test/zz-cleanup.js +20 -0
  2054. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/LICENSE +23 -0
  2055. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/README.md +81 -0
  2056. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/index.js +240 -0
  2057. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/package.json +75 -0
  2058. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed-file.txt +1 -0
  2059. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed.tar +0 -0
  2060. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed.tar.gz +0 -0
  2061. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/bar.txt +1 -0
  2062. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/foo.txt +1 -0
  2063. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/index.js +67 -0
  2064. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/README.md +492 -0
  2065. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/cookie.js +1342 -0
  2066. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/memstore.js +170 -0
  2067. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/pathMatch.js +61 -0
  2068. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
  2069. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/pubsuffix.js +98 -0
  2070. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/store.js +71 -0
  2071. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/package.json +103 -0
  2072. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/LICENSE +55 -0
  2073. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/README.md +4 -0
  2074. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/index.js +243 -0
  2075. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/package.json +67 -0
  2076. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/CHANGELOG.md +181 -0
  2077. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/COPYING.txt +9 -0
  2078. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/README.md +445 -0
  2079. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl-fast.js +2388 -0
  2080. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl-fast.min.js +2 -0
  2081. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl.js +1175 -0
  2082. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl.min.js +1 -0
  2083. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/package.json +94 -0
  2084. data/test/dummy/node_modules/fsevents/node_modules/uid-number/LICENSE +15 -0
  2085. data/test/dummy/node_modules/fsevents/node_modules/uid-number/README.md +17 -0
  2086. data/test/dummy/node_modules/fsevents/node_modules/uid-number/get-uid-gid.js +24 -0
  2087. data/test/dummy/node_modules/fsevents/node_modules/uid-number/package.json +57 -0
  2088. data/test/dummy/node_modules/fsevents/node_modules/uid-number/uid-number.js +59 -0
  2089. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/History.md +16 -0
  2090. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/LICENSE +24 -0
  2091. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/README.md +53 -0
  2092. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/browser.js +67 -0
  2093. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/node.js +6 -0
  2094. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/package.json +63 -0
  2095. data/test/dummy/node_modules/fsevents/node_modules/verror/LICENSE +19 -0
  2096. data/test/dummy/node_modules/fsevents/node_modules/verror/Makefile +35 -0
  2097. data/test/dummy/node_modules/fsevents/node_modules/verror/Makefile.targ +285 -0
  2098. data/test/dummy/node_modules/fsevents/node_modules/verror/README.md +120 -0
  2099. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/levels-verror.js +36 -0
  2100. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/levels-werror.js +34 -0
  2101. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/varargs.js +6 -0
  2102. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/verror.js +13 -0
  2103. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/werror.js +14 -0
  2104. data/test/dummy/node_modules/fsevents/node_modules/verror/jsl.node.conf +139 -0
  2105. data/test/dummy/node_modules/fsevents/node_modules/verror/lib/verror.js +157 -0
  2106. data/test/dummy/node_modules/fsevents/node_modules/verror/package.json +53 -0
  2107. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.inherit.js +100 -0
  2108. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.verror.js +156 -0
  2109. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.werror.js +179 -0
  2110. data/test/dummy/node_modules/fsevents/node_modules/wrappy/LICENSE +15 -0
  2111. data/test/dummy/node_modules/fsevents/node_modules/wrappy/README.md +36 -0
  2112. data/test/dummy/node_modules/fsevents/node_modules/wrappy/package.json +59 -0
  2113. data/test/dummy/node_modules/fsevents/node_modules/wrappy/test/basic.js +51 -0
  2114. data/test/dummy/node_modules/fsevents/node_modules/wrappy/wrappy.js +33 -0
  2115. data/test/dummy/node_modules/fsevents/node_modules/xtend/LICENCE +19 -0
  2116. data/test/dummy/node_modules/fsevents/node_modules/xtend/Makefile +4 -0
  2117. data/test/dummy/node_modules/fsevents/node_modules/xtend/README.md +32 -0
  2118. data/test/dummy/node_modules/fsevents/node_modules/xtend/immutable.js +19 -0
  2119. data/test/dummy/node_modules/fsevents/node_modules/xtend/mutable.js +17 -0
  2120. data/test/dummy/node_modules/fsevents/node_modules/xtend/package.json +91 -0
  2121. data/test/dummy/node_modules/fsevents/node_modules/xtend/test.js +83 -0
  2122. data/test/dummy/node_modules/fsevents/package.json +119 -0
  2123. data/test/dummy/node_modules/fsevents/src/async.cc +43 -0
  2124. data/test/dummy/node_modules/fsevents/src/constants.cc +110 -0
  2125. data/test/dummy/node_modules/fsevents/src/locking.cc +27 -0
  2126. data/test/dummy/node_modules/fsevents/src/methods.cc +42 -0
  2127. data/test/dummy/node_modules/fsevents/src/storage.cc +27 -0
  2128. data/test/dummy/node_modules/fsevents/src/thread.cc +72 -0
  2129. data/test/dummy/node_modules/fsevents/test/fsevents.js +27 -0
  2130. data/test/dummy/node_modules/fsevents/test/function.js +93 -0
  2131. data/test/dummy/node_modules/function-bind/LICENSE +20 -0
  2132. data/test/dummy/node_modules/function-bind/README.md +48 -0
  2133. data/test/dummy/node_modules/function-bind/implementation.js +48 -0
  2134. data/test/dummy/node_modules/function-bind/index.js +3 -0
  2135. data/test/dummy/node_modules/function-bind/package.json +129 -0
  2136. data/test/dummy/node_modules/function-bind/test/index.js +250 -0
  2137. data/test/dummy/node_modules/glob/LICENSE +15 -0
  2138. data/test/dummy/node_modules/glob/README.md +377 -0
  2139. data/test/dummy/node_modules/glob/common.js +245 -0
  2140. data/test/dummy/node_modules/glob/glob.js +752 -0
  2141. data/test/dummy/node_modules/glob/package.json +98 -0
  2142. data/test/dummy/node_modules/glob/sync.js +460 -0
  2143. data/test/dummy/node_modules/glob-base/LICENSE +21 -0
  2144. data/test/dummy/node_modules/glob-base/README.md +158 -0
  2145. data/test/dummy/node_modules/glob-base/index.js +51 -0
  2146. data/test/dummy/node_modules/glob-base/package.json +108 -0
  2147. data/test/dummy/node_modules/glob-parent/LICENSE +15 -0
  2148. data/test/dummy/node_modules/glob-parent/README.md +43 -0
  2149. data/test/dummy/node_modules/glob-parent/index.js +10 -0
  2150. data/test/dummy/node_modules/glob-parent/package.json +86 -0
  2151. data/test/dummy/node_modules/glob-parent/test.js +28 -0
  2152. data/test/dummy/node_modules/graceful-fs/LICENSE +15 -0
  2153. data/test/dummy/node_modules/graceful-fs/README.md +53 -0
  2154. data/test/dummy/node_modules/graceful-fs/fs.js +21 -0
  2155. data/test/dummy/node_modules/graceful-fs/graceful-fs.js +253 -0
  2156. data/test/dummy/node_modules/graceful-fs/legacy-streams.js +118 -0
  2157. data/test/dummy/node_modules/graceful-fs/package.json +103 -0
  2158. data/test/dummy/node_modules/graceful-fs/polyfills.js +252 -0
  2159. data/test/dummy/node_modules/has/LICENSE-MIT +22 -0
  2160. data/test/dummy/node_modules/has/README.mkd +18 -0
  2161. data/test/dummy/node_modules/has/package.json +85 -0
  2162. data/test/dummy/node_modules/has/src/index.js +3 -0
  2163. data/test/dummy/node_modules/has/test/index.js +10 -0
  2164. data/test/dummy/node_modules/hash.js/README.md +28 -0
  2165. data/test/dummy/node_modules/hash.js/lib/hash/common.js +91 -0
  2166. data/test/dummy/node_modules/hash.js/lib/hash/hmac.js +48 -0
  2167. data/test/dummy/node_modules/hash.js/lib/hash/ripemd.js +144 -0
  2168. data/test/dummy/node_modules/hash.js/lib/hash/sha.js +564 -0
  2169. data/test/dummy/node_modules/hash.js/lib/hash/utils.js +257 -0
  2170. data/test/dummy/node_modules/hash.js/lib/hash.js +15 -0
  2171. data/test/dummy/node_modules/hash.js/package.json +82 -0
  2172. data/test/dummy/node_modules/hash.js/test/hash-test.js +119 -0
  2173. data/test/dummy/node_modules/hash.js/test/hmac-test.js +59 -0
  2174. data/test/dummy/node_modules/htmlescape/CHANGELOG.md +9 -0
  2175. data/test/dummy/node_modules/htmlescape/LICENSE +9 -0
  2176. data/test/dummy/node_modules/htmlescape/README.md +30 -0
  2177. data/test/dummy/node_modules/htmlescape/htmlescape.js +42 -0
  2178. data/test/dummy/node_modules/htmlescape/package.json +88 -0
  2179. data/test/dummy/node_modules/https-browserify/LICENSE +18 -0
  2180. data/test/dummy/node_modules/https-browserify/index.js +14 -0
  2181. data/test/dummy/node_modules/https-browserify/package.json +84 -0
  2182. data/test/dummy/node_modules/https-browserify/readme.markdown +22 -0
  2183. data/test/dummy/node_modules/ieee754/LICENSE +56 -0
  2184. data/test/dummy/node_modules/ieee754/README.md +47 -0
  2185. data/test/dummy/node_modules/ieee754/index.js +84 -0
  2186. data/test/dummy/node_modules/ieee754/package.json +93 -0
  2187. data/test/dummy/node_modules/ieee754/test/basic.js +23 -0
  2188. data/test/dummy/node_modules/indexof/Makefile +11 -0
  2189. data/test/dummy/node_modules/indexof/Readme.md +15 -0
  2190. data/test/dummy/node_modules/indexof/component.json +10 -0
  2191. data/test/dummy/node_modules/indexof/index.js +10 -0
  2192. data/test/dummy/node_modules/indexof/package.json +58 -0
  2193. data/test/dummy/node_modules/inflight/LICENSE +15 -0
  2194. data/test/dummy/node_modules/inflight/README.md +37 -0
  2195. data/test/dummy/node_modules/inflight/inflight.js +44 -0
  2196. data/test/dummy/node_modules/inflight/package.json +86 -0
  2197. data/test/dummy/node_modules/inflight/test.js +97 -0
  2198. data/test/dummy/node_modules/inherits/LICENSE +16 -0
  2199. data/test/dummy/node_modules/inherits/README.md +42 -0
  2200. data/test/dummy/node_modules/inherits/inherits.js +1 -0
  2201. data/test/dummy/node_modules/inherits/inherits_browser.js +23 -0
  2202. data/test/dummy/node_modules/inherits/package.json +102 -0
  2203. data/test/dummy/node_modules/inherits/test.js +25 -0
  2204. data/test/dummy/node_modules/inline-process-browser/index.js +37 -0
  2205. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/LICENSE +18 -0
  2206. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/README.md +15 -0
  2207. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/duplex.js +1 -0
  2208. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  2209. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  2210. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  2211. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  2212. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  2213. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/package.json +104 -0
  2214. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/passthrough.js +1 -0
  2215. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/readable.js +11 -0
  2216. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/transform.js +1 -0
  2217. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/writable.js +1 -0
  2218. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/LICENSE +39 -0
  2219. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/README.md +132 -0
  2220. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/package.json +90 -0
  2221. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/through2.js +96 -0
  2222. data/test/dummy/node_modules/inline-process-browser/package.json +88 -0
  2223. data/test/dummy/node_modules/inline-process-browser/readme.md +23 -0
  2224. data/test/dummy/node_modules/inline-source-map/LICENSE +23 -0
  2225. data/test/dummy/node_modules/inline-source-map/README.md +89 -0
  2226. data/test/dummy/node_modules/inline-source-map/example/foo-bar.js +8 -0
  2227. data/test/dummy/node_modules/inline-source-map/index.js +135 -0
  2228. data/test/dummy/node_modules/inline-source-map/package.json +103 -0
  2229. data/test/dummy/node_modules/inline-source-map/test/inline-source-map.js +342 -0
  2230. data/test/dummy/node_modules/inline-source-map/test/source-content.js +143 -0
  2231. data/test/dummy/node_modules/insert-module-globals/LICENSE +18 -0
  2232. data/test/dummy/node_modules/insert-module-globals/bench/results.txt +18 -0
  2233. data/test/dummy/node_modules/insert-module-globals/bench/run.sh +2 -0
  2234. data/test/dummy/node_modules/insert-module-globals/bin/cmd.js +26 -0
  2235. data/test/dummy/node_modules/insert-module-globals/example/files/foo/index.js +6 -0
  2236. data/test/dummy/node_modules/insert-module-globals/example/files/main.js +6 -0
  2237. data/test/dummy/node_modules/insert-module-globals/example/insert.js +12 -0
  2238. data/test/dummy/node_modules/insert-module-globals/index.js +170 -0
  2239. data/test/dummy/node_modules/insert-module-globals/package.json +108 -0
  2240. data/test/dummy/node_modules/insert-module-globals/readme.markdown +146 -0
  2241. data/test/dummy/node_modules/insert-module-globals/test/always/custom_globals_without_defaults.js +7 -0
  2242. data/test/dummy/node_modules/insert-module-globals/test/always/hidden_from_quick_test.js +1 -0
  2243. data/test/dummy/node_modules/insert-module-globals/test/always/main.js +10 -0
  2244. data/test/dummy/node_modules/insert-module-globals/test/always.js +105 -0
  2245. data/test/dummy/node_modules/insert-module-globals/test/global/filename.js +2 -0
  2246. data/test/dummy/node_modules/insert-module-globals/test/global/main.js +2 -0
  2247. data/test/dummy/node_modules/insert-module-globals/test/global.js +63 -0
  2248. data/test/dummy/node_modules/insert-module-globals/test/insert/buffer.js +1 -0
  2249. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/buf.js +4 -0
  2250. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/index.js +4 -0
  2251. data/test/dummy/node_modules/insert-module-globals/test/insert/main.js +4 -0
  2252. data/test/dummy/node_modules/insert-module-globals/test/insert.js +46 -0
  2253. data/test/dummy/node_modules/insert-module-globals/test/isbuffer/main.js +3 -0
  2254. data/test/dummy/node_modules/insert-module-globals/test/isbuffer.js +27 -0
  2255. data/test/dummy/node_modules/insert-module-globals/test/return/foo/index.js +4 -0
  2256. data/test/dummy/node_modules/insert-module-globals/test/return/main.js +6 -0
  2257. data/test/dummy/node_modules/insert-module-globals/test/return.js +27 -0
  2258. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main.js +3 -0
  2259. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main_es6.js +1 -0
  2260. data/test/dummy/node_modules/insert-module-globals/test/sourcemap.js +40 -0
  2261. data/test/dummy/node_modules/insert-module-globals/test/unprefix/hello.js +2 -0
  2262. data/test/dummy/node_modules/insert-module-globals/test/unprefix/main.js +3 -0
  2263. data/test/dummy/node_modules/insert-module-globals/test/unprefix.js +33 -0
  2264. data/test/dummy/node_modules/is-binary-path/index.js +12 -0
  2265. data/test/dummy/node_modules/is-binary-path/license +21 -0
  2266. data/test/dummy/node_modules/is-binary-path/package.json +102 -0
  2267. data/test/dummy/node_modules/is-binary-path/readme.md +34 -0
  2268. data/test/dummy/node_modules/is-buffer/LICENSE +21 -0
  2269. data/test/dummy/node_modules/is-buffer/README.md +49 -0
  2270. data/test/dummy/node_modules/is-buffer/index.js +17 -0
  2271. data/test/dummy/node_modules/is-buffer/package.json +108 -0
  2272. data/test/dummy/node_modules/is-buffer/test/basic.js +20 -0
  2273. data/test/dummy/node_modules/is-dotfile/LICENSE +21 -0
  2274. data/test/dummy/node_modules/is-dotfile/README.md +74 -0
  2275. data/test/dummy/node_modules/is-dotfile/index.js +15 -0
  2276. data/test/dummy/node_modules/is-dotfile/package.json +108 -0
  2277. data/test/dummy/node_modules/is-equal-shallow/LICENSE +21 -0
  2278. data/test/dummy/node_modules/is-equal-shallow/README.md +90 -0
  2279. data/test/dummy/node_modules/is-equal-shallow/index.js +27 -0
  2280. data/test/dummy/node_modules/is-equal-shallow/package.json +112 -0
  2281. data/test/dummy/node_modules/is-extendable/LICENSE +21 -0
  2282. data/test/dummy/node_modules/is-extendable/README.md +72 -0
  2283. data/test/dummy/node_modules/is-extendable/index.js +13 -0
  2284. data/test/dummy/node_modules/is-extendable/package.json +106 -0
  2285. data/test/dummy/node_modules/is-extglob/LICENSE +21 -0
  2286. data/test/dummy/node_modules/is-extglob/README.md +75 -0
  2287. data/test/dummy/node_modules/is-extglob/index.js +11 -0
  2288. data/test/dummy/node_modules/is-extglob/package.json +102 -0
  2289. data/test/dummy/node_modules/is-glob/LICENSE +21 -0
  2290. data/test/dummy/node_modules/is-glob/README.md +105 -0
  2291. data/test/dummy/node_modules/is-glob/index.js +14 -0
  2292. data/test/dummy/node_modules/is-glob/package.json +119 -0
  2293. data/test/dummy/node_modules/is-number/LICENSE +21 -0
  2294. data/test/dummy/node_modules/is-number/README.md +103 -0
  2295. data/test/dummy/node_modules/is-number/index.js +19 -0
  2296. data/test/dummy/node_modules/is-number/package.json +118 -0
  2297. data/test/dummy/node_modules/is-posix-bracket/LICENSE +21 -0
  2298. data/test/dummy/node_modules/is-posix-bracket/README.md +88 -0
  2299. data/test/dummy/node_modules/is-posix-bracket/index.js +10 -0
  2300. data/test/dummy/node_modules/is-posix-bracket/package.json +123 -0
  2301. data/test/dummy/node_modules/is-primitive/LICENSE +21 -0
  2302. data/test/dummy/node_modules/is-primitive/README.md +57 -0
  2303. data/test/dummy/node_modules/is-primitive/index.js +13 -0
  2304. data/test/dummy/node_modules/is-primitive/package.json +96 -0
  2305. data/test/dummy/node_modules/isarray/README.md +54 -0
  2306. data/test/dummy/node_modules/isarray/build/build.js +209 -0
  2307. data/test/dummy/node_modules/isarray/component.json +19 -0
  2308. data/test/dummy/node_modules/isarray/index.js +3 -0
  2309. data/test/dummy/node_modules/isarray/package.json +82 -0
  2310. data/test/dummy/node_modules/isobject/LICENSE +21 -0
  2311. data/test/dummy/node_modules/isobject/README.md +81 -0
  2312. data/test/dummy/node_modules/isobject/index.js +14 -0
  2313. data/test/dummy/node_modules/isobject/package.json +108 -0
  2314. data/test/dummy/node_modules/json-stable-stringify/LICENSE +18 -0
  2315. data/test/dummy/node_modules/json-stable-stringify/example/key_cmp.js +7 -0
  2316. data/test/dummy/node_modules/json-stable-stringify/example/nested.js +3 -0
  2317. data/test/dummy/node_modules/json-stable-stringify/example/str.js +3 -0
  2318. data/test/dummy/node_modules/json-stable-stringify/example/value_cmp.js +7 -0
  2319. data/test/dummy/node_modules/json-stable-stringify/index.js +50 -0
  2320. data/test/dummy/node_modules/json-stable-stringify/package.json +95 -0
  2321. data/test/dummy/node_modules/json-stable-stringify/readme.markdown +90 -0
  2322. data/test/dummy/node_modules/json-stable-stringify/test/cmp.js +11 -0
  2323. data/test/dummy/node_modules/json-stable-stringify/test/nested.js +8 -0
  2324. data/test/dummy/node_modules/json-stable-stringify/test/str.js +8 -0
  2325. data/test/dummy/node_modules/jsonify/README.markdown +34 -0
  2326. data/test/dummy/node_modules/jsonify/index.js +2 -0
  2327. data/test/dummy/node_modules/jsonify/lib/parse.js +273 -0
  2328. data/test/dummy/node_modules/jsonify/lib/stringify.js +154 -0
  2329. data/test/dummy/node_modules/jsonify/package.json +83 -0
  2330. data/test/dummy/node_modules/jsonify/test/parse.js +16 -0
  2331. data/test/dummy/node_modules/jsonify/test/stringify.js +15 -0
  2332. data/test/dummy/node_modules/jsonparse/LICENSE +24 -0
  2333. data/test/dummy/node_modules/jsonparse/README.markdown +11 -0
  2334. data/test/dummy/node_modules/jsonparse/bench.js +26 -0
  2335. data/test/dummy/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  2336. data/test/dummy/node_modules/jsonparse/jsonparse.js +341 -0
  2337. data/test/dummy/node_modules/jsonparse/package.json +85 -0
  2338. data/test/dummy/node_modules/jsonparse/samplejson/basic.json +167 -0
  2339. data/test/dummy/node_modules/jsonparse/samplejson/basic2.json +180 -0
  2340. data/test/dummy/node_modules/jsonparse/test/boundary.js +110 -0
  2341. data/test/dummy/node_modules/jsonparse/test/offset.js +67 -0
  2342. data/test/dummy/node_modules/jsonparse/test/primitives.js +57 -0
  2343. data/test/dummy/node_modules/jsonparse/test/unvalid.js +15 -0
  2344. data/test/dummy/node_modules/jsonparse/test/utf8.js +38 -0
  2345. data/test/dummy/node_modules/kind-of/LICENSE +21 -0
  2346. data/test/dummy/node_modules/kind-of/README.md +237 -0
  2347. data/test/dummy/node_modules/kind-of/index.js +113 -0
  2348. data/test/dummy/node_modules/kind-of/package.json +127 -0
  2349. data/test/dummy/node_modules/labeled-stream-splicer/LICENSE +18 -0
  2350. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/bar.js +3 -0
  2351. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/foo.js +5 -0
  2352. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/main.js +2 -0
  2353. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/xyz.js +2 -0
  2354. data/test/dummy/node_modules/labeled-stream-splicer/example/bundle.js +16 -0
  2355. data/test/dummy/node_modules/labeled-stream-splicer/index.js +65 -0
  2356. data/test/dummy/node_modules/labeled-stream-splicer/package.json +90 -0
  2357. data/test/dummy/node_modules/labeled-stream-splicer/readme.markdown +124 -0
  2358. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/bar.js +3 -0
  2359. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/foo.js +5 -0
  2360. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/main.js +2 -0
  2361. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/xyz.js +2 -0
  2362. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle.js +27 -0
  2363. data/test/dummy/node_modules/lexical-scope/LICENSE +18 -0
  2364. data/test/dummy/node_modules/lexical-scope/bench/jquery.js +4 -0
  2365. data/test/dummy/node_modules/lexical-scope/bench/results.txt +15 -0
  2366. data/test/dummy/node_modules/lexical-scope/bench/run.js +7 -0
  2367. data/test/dummy/node_modules/lexical-scope/example/detect.js +6 -0
  2368. data/test/dummy/node_modules/lexical-scope/example/src.js +27 -0
  2369. data/test/dummy/node_modules/lexical-scope/index.js +194 -0
  2370. data/test/dummy/node_modules/lexical-scope/package.json +110 -0
  2371. data/test/dummy/node_modules/lexical-scope/readme.markdown +148 -0
  2372. data/test/dummy/node_modules/lexical-scope/test/argument.js +17 -0
  2373. data/test/dummy/node_modules/lexical-scope/test/assign_implicit.js +13 -0
  2374. data/test/dummy/node_modules/lexical-scope/test/detect.js +17 -0
  2375. data/test/dummy/node_modules/lexical-scope/test/files/argument.js +6 -0
  2376. data/test/dummy/node_modules/lexical-scope/test/files/assign_implicit.js +2 -0
  2377. data/test/dummy/node_modules/lexical-scope/test/files/buffer_call.js +1 -0
  2378. data/test/dummy/node_modules/lexical-scope/test/files/buffer_isbuffer.js +1 -0
  2379. data/test/dummy/node_modules/lexical-scope/test/files/buffer_var.js +1 -0
  2380. data/test/dummy/node_modules/lexical-scope/test/files/detect.js +32 -0
  2381. data/test/dummy/node_modules/lexical-scope/test/files/labels.js +11 -0
  2382. data/test/dummy/node_modules/lexical-scope/test/files/multiple-exports.js +6 -0
  2383. data/test/dummy/node_modules/lexical-scope/test/files/named_arg.js +6 -0
  2384. data/test/dummy/node_modules/lexical-scope/test/files/obj.js +1 -0
  2385. data/test/dummy/node_modules/lexical-scope/test/files/return_hash.js +5 -0
  2386. data/test/dummy/node_modules/lexical-scope/test/files/right_hand.js +2 -0
  2387. data/test/dummy/node_modules/lexical-scope/test/files/try_catch.js +7 -0
  2388. data/test/dummy/node_modules/lexical-scope/test/labels.js +13 -0
  2389. data/test/dummy/node_modules/lexical-scope/test/multiple-exports.js +18 -0
  2390. data/test/dummy/node_modules/lexical-scope/test/named_arg.js +17 -0
  2391. data/test/dummy/node_modules/lexical-scope/test/obj.js +16 -0
  2392. data/test/dummy/node_modules/lexical-scope/test/package.json +3 -0
  2393. data/test/dummy/node_modules/lexical-scope/test/props.js +41 -0
  2394. data/test/dummy/node_modules/lexical-scope/test/return_hash.js +13 -0
  2395. data/test/dummy/node_modules/lexical-scope/test/right_hand.js +16 -0
  2396. data/test/dummy/node_modules/lexical-scope/test/shebang.js +19 -0
  2397. data/test/dummy/node_modules/lexical-scope/test/try_catch.js +13 -0
  2398. data/test/dummy/node_modules/lodash.memoize/LICENSE.txt +22 -0
  2399. data/test/dummy/node_modules/lodash.memoize/README.md +20 -0
  2400. data/test/dummy/node_modules/lodash.memoize/index.js +167 -0
  2401. data/test/dummy/node_modules/lodash.memoize/package.json +121 -0
  2402. data/test/dummy/node_modules/micromatch/LICENSE +21 -0
  2403. data/test/dummy/node_modules/micromatch/README.md +616 -0
  2404. data/test/dummy/node_modules/micromatch/index.js +428 -0
  2405. data/test/dummy/node_modules/micromatch/lib/chars.js +67 -0
  2406. data/test/dummy/node_modules/micromatch/lib/expand.js +311 -0
  2407. data/test/dummy/node_modules/micromatch/lib/glob.js +193 -0
  2408. data/test/dummy/node_modules/micromatch/lib/utils.js +144 -0
  2409. data/test/dummy/node_modules/micromatch/package.json +164 -0
  2410. data/test/dummy/node_modules/miller-rabin/README.md +26 -0
  2411. data/test/dummy/node_modules/miller-rabin/bin/miller-rabin +29 -0
  2412. data/test/dummy/node_modules/miller-rabin/lib/mr.js +113 -0
  2413. data/test/dummy/node_modules/miller-rabin/package.json +89 -0
  2414. data/test/dummy/node_modules/miller-rabin/test/api-test.js +18 -0
  2415. data/test/dummy/node_modules/minimalistic-assert/index.js +11 -0
  2416. data/test/dummy/node_modules/minimalistic-assert/package.json +70 -0
  2417. data/test/dummy/node_modules/minimalistic-assert/readme.md +4 -0
  2418. data/test/dummy/node_modules/minimatch/LICENSE +15 -0
  2419. data/test/dummy/node_modules/minimatch/README.md +216 -0
  2420. data/test/dummy/node_modules/minimatch/minimatch.js +912 -0
  2421. data/test/dummy/node_modules/minimatch/package.json +85 -0
  2422. data/test/dummy/node_modules/minimist/LICENSE +18 -0
  2423. data/test/dummy/node_modules/minimist/example/parse.js +2 -0
  2424. data/test/dummy/node_modules/minimist/index.js +236 -0
  2425. data/test/dummy/node_modules/minimist/package.json +97 -0
  2426. data/test/dummy/node_modules/minimist/readme.markdown +91 -0
  2427. data/test/dummy/node_modules/minimist/test/all_bool.js +32 -0
  2428. data/test/dummy/node_modules/minimist/test/bool.js +166 -0
  2429. data/test/dummy/node_modules/minimist/test/dash.js +31 -0
  2430. data/test/dummy/node_modules/minimist/test/default_bool.js +35 -0
  2431. data/test/dummy/node_modules/minimist/test/dotted.js +22 -0
  2432. data/test/dummy/node_modules/minimist/test/kv_short.js +16 -0
  2433. data/test/dummy/node_modules/minimist/test/long.js +31 -0
  2434. data/test/dummy/node_modules/minimist/test/num.js +36 -0
  2435. data/test/dummy/node_modules/minimist/test/parse.js +197 -0
  2436. data/test/dummy/node_modules/minimist/test/parse_modified.js +9 -0
  2437. data/test/dummy/node_modules/minimist/test/short.js +67 -0
  2438. data/test/dummy/node_modules/minimist/test/stop_early.js +15 -0
  2439. data/test/dummy/node_modules/minimist/test/unknown.js +102 -0
  2440. data/test/dummy/node_modules/minimist/test/whitespace.js +8 -0
  2441. data/test/dummy/node_modules/module-deps/LICENSE +18 -0
  2442. data/test/dummy/node_modules/module-deps/bin/cmd.js +28 -0
  2443. data/test/dummy/node_modules/module-deps/bin/usage.txt +9 -0
  2444. data/test/dummy/node_modules/module-deps/example/deps.js +6 -0
  2445. data/test/dummy/node_modules/module-deps/example/files/bar.js +3 -0
  2446. data/test/dummy/node_modules/module-deps/example/files/foo.js +5 -0
  2447. data/test/dummy/node_modules/module-deps/example/files/main.js +2 -0
  2448. data/test/dummy/node_modules/module-deps/example/files/xyz.js +2 -0
  2449. data/test/dummy/node_modules/module-deps/index.js +562 -0
  2450. data/test/dummy/node_modules/module-deps/package.json +118 -0
  2451. data/test/dummy/node_modules/module-deps/readme.markdown +239 -0
  2452. data/test/dummy/node_modules/module-deps/test/bundle.js +23 -0
  2453. data/test/dummy/node_modules/module-deps/test/cache.js +50 -0
  2454. data/test/dummy/node_modules/module-deps/test/cache_expose.js +54 -0
  2455. data/test/dummy/node_modules/module-deps/test/cache_partial.js +47 -0
  2456. data/test/dummy/node_modules/module-deps/test/cache_partial_expose.js +104 -0
  2457. data/test/dummy/node_modules/module-deps/test/cycle/bar.js +3 -0
  2458. data/test/dummy/node_modules/module-deps/test/cycle/foo.js +4 -0
  2459. data/test/dummy/node_modules/module-deps/test/cycle/main.js +4 -0
  2460. data/test/dummy/node_modules/module-deps/test/cycle.js +19 -0
  2461. data/test/dummy/node_modules/module-deps/test/deps.js +49 -0
  2462. data/test/dummy/node_modules/module-deps/test/dotdot/abc/index.js +2 -0
  2463. data/test/dummy/node_modules/module-deps/test/dotdot/index.js +1 -0
  2464. data/test/dummy/node_modules/module-deps/test/dotdot.js +20 -0
  2465. data/test/dummy/node_modules/module-deps/test/expose/bar.js +1 -0
  2466. data/test/dummy/node_modules/module-deps/test/expose/foo.js +1 -0
  2467. data/test/dummy/node_modules/module-deps/test/expose/lib/abc.js +1 -0
  2468. data/test/dummy/node_modules/module-deps/test/expose/lib/xyz.js +2 -0
  2469. data/test/dummy/node_modules/module-deps/test/expose/main.js +3 -0
  2470. data/test/dummy/node_modules/module-deps/test/expose.js +41 -0
  2471. data/test/dummy/node_modules/module-deps/test/file_cache.js +58 -0
  2472. data/test/dummy/node_modules/module-deps/test/files/bar.js +3 -0
  2473. data/test/dummy/node_modules/module-deps/test/files/extra.js +1 -0
  2474. data/test/dummy/node_modules/module-deps/test/files/filterable.js +10 -0
  2475. data/test/dummy/node_modules/module-deps/test/files/foo.js +5 -0
  2476. data/test/dummy/node_modules/module-deps/test/files/main.js +2 -0
  2477. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/one.js +1 -0
  2478. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/package.json +3 -0
  2479. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/test.js +1 -0
  2480. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/two.js +1 -0
  2481. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/f.js +1 -0
  2482. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/main.js +7 -0
  2483. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/index.js +1 -0
  2484. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/node_modules/insert-ggg/index.js +8 -0
  2485. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/package.json +6 -0
  2486. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-aaa/index.js +8 -0
  2487. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-bbb/index.js +8 -0
  2488. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/index.js +3 -0
  2489. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/node_modules/insert-mmm/index.js +8 -0
  2490. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/package.json +6 -0
  2491. data/test/dummy/node_modules/module-deps/test/files/tr_global/main.js +1 -0
  2492. data/test/dummy/node_modules/module-deps/test/files/tr_global/package.json +5 -0
  2493. data/test/dummy/node_modules/module-deps/test/files/tr_module/f.js +1 -0
  2494. data/test/dummy/node_modules/module-deps/test/files/tr_module/index.js +8 -0
  2495. data/test/dummy/node_modules/module-deps/test/files/tr_module/main.js +8 -0
  2496. data/test/dummy/node_modules/module-deps/test/files/tr_module/package.json +5 -0
  2497. data/test/dummy/node_modules/module-deps/test/files/tr_module/xxx.js +8 -0
  2498. data/test/dummy/node_modules/module-deps/test/files/tr_no_entry/main.js +1 -0
  2499. data/test/dummy/node_modules/module-deps/test/files/tr_rel/package.json +5 -0
  2500. data/test/dummy/node_modules/module-deps/test/files/tr_rel/subdir/main.js +1 -0
  2501. data/test/dummy/node_modules/module-deps/test/files/tr_rel/xxx.js +8 -0
  2502. data/test/dummy/node_modules/module-deps/test/files/tr_sh/f.js +1 -0
  2503. data/test/dummy/node_modules/module-deps/test/files/tr_sh/main.js +7 -0
  2504. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/index.js +1 -0
  2505. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/package.json +6 -0
  2506. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/tr_g.js +7 -0
  2507. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/m/index.js +3 -0
  2508. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_a.js +7 -0
  2509. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_b.js +7 -0
  2510. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/f.js +3 -0
  2511. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/main.js +3 -0
  2512. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/index.js +3 -0
  2513. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/lib/decrement.js +1 -0
  2514. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/node_modules/insert-ggg/index.js +8 -0
  2515. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/package.json +6 -0
  2516. data/test/dummy/node_modules/module-deps/test/files/unicode/bar.js +3 -0
  2517. data/test/dummy/node_modules/module-deps/test/files/unicode/foo.js +5 -0
  2518. data/test/dummy/node_modules/module-deps/test/files/unicode/main.js +2 -0
  2519. data/test/dummy/node_modules/module-deps/test/files/xyz.js +2 -0
  2520. data/test/dummy/node_modules/module-deps/test/filter.js +36 -0
  2521. data/test/dummy/node_modules/module-deps/test/ignore_missing/main.js +1 -0
  2522. data/test/dummy/node_modules/module-deps/test/ignore_missing/other.js +1 -0
  2523. data/test/dummy/node_modules/module-deps/test/ignore_missing.js +60 -0
  2524. data/test/dummy/node_modules/module-deps/test/ignore_missing_cache.js +52 -0
  2525. data/test/dummy/node_modules/module-deps/test/node_modules/insert-www/index.js +8 -0
  2526. data/test/dummy/node_modules/module-deps/test/noparse.js +43 -0
  2527. data/test/dummy/node_modules/module-deps/test/noparse_row.js +39 -0
  2528. data/test/dummy/node_modules/module-deps/test/pkg/main.js +2 -0
  2529. data/test/dummy/node_modules/module-deps/test/pkg/package.json +4 -0
  2530. data/test/dummy/node_modules/module-deps/test/pkg.js +20 -0
  2531. data/test/dummy/node_modules/module-deps/test/pkg_filter.js +26 -0
  2532. data/test/dummy/node_modules/module-deps/test/row_expose.js +24 -0
  2533. data/test/dummy/node_modules/module-deps/test/row_expose_name_is_file_transform.js +32 -0
  2534. data/test/dummy/node_modules/module-deps/test/row_expose_transform.js +31 -0
  2535. data/test/dummy/node_modules/module-deps/test/source.js +61 -0
  2536. data/test/dummy/node_modules/module-deps/test/tr_2dep_module.js +23 -0
  2537. data/test/dummy/node_modules/module-deps/test/tr_err.js +21 -0
  2538. data/test/dummy/node_modules/module-deps/test/tr_fn.js +32 -0
  2539. data/test/dummy/node_modules/module-deps/test/tr_global.js +29 -0
  2540. data/test/dummy/node_modules/module-deps/test/tr_module.js +23 -0
  2541. data/test/dummy/node_modules/module-deps/test/tr_no_entry.js +31 -0
  2542. data/test/dummy/node_modules/module-deps/test/tr_opts/main.js +1 -0
  2543. data/test/dummy/node_modules/module-deps/test/tr_opts/package.json +6 -0
  2544. data/test/dummy/node_modules/module-deps/test/tr_opts.js +21 -0
  2545. data/test/dummy/node_modules/module-deps/test/tr_rel.js +24 -0
  2546. data/test/dummy/node_modules/module-deps/test/tr_sh.js +23 -0
  2547. data/test/dummy/node_modules/module-deps/test/tr_whole_package.js +22 -0
  2548. data/test/dummy/node_modules/module-deps/test/tr_write/main.js +1 -0
  2549. data/test/dummy/node_modules/module-deps/test/tr_write.js +32 -0
  2550. data/test/dummy/node_modules/module-deps/test/undef_file.js +49 -0
  2551. data/test/dummy/node_modules/module-deps/test/unicode.js +49 -0
  2552. data/test/dummy/node_modules/nan/CHANGELOG.md +396 -0
  2553. data/test/dummy/node_modules/nan/LICENSE.md +13 -0
  2554. data/test/dummy/node_modules/nan/appveyor.yml +38 -0
  2555. data/test/dummy/node_modules/nan/doc/asyncworker.md +97 -0
  2556. data/test/dummy/node_modules/nan/doc/buffers.md +54 -0
  2557. data/test/dummy/node_modules/nan/doc/callback.md +52 -0
  2558. data/test/dummy/node_modules/nan/doc/converters.md +41 -0
  2559. data/test/dummy/node_modules/nan/doc/errors.md +226 -0
  2560. data/test/dummy/node_modules/nan/doc/maybe_types.md +512 -0
  2561. data/test/dummy/node_modules/nan/doc/methods.md +656 -0
  2562. data/test/dummy/node_modules/nan/doc/new.md +147 -0
  2563. data/test/dummy/node_modules/nan/doc/node_misc.md +63 -0
  2564. data/test/dummy/node_modules/nan/doc/object_wrappers.md +263 -0
  2565. data/test/dummy/node_modules/nan/doc/persistent.md +295 -0
  2566. data/test/dummy/node_modules/nan/doc/scopes.md +73 -0
  2567. data/test/dummy/node_modules/nan/doc/script.md +38 -0
  2568. data/test/dummy/node_modules/nan/doc/string_bytes.md +62 -0
  2569. data/test/dummy/node_modules/nan/doc/v8_internals.md +199 -0
  2570. data/test/dummy/node_modules/nan/doc/v8_misc.md +85 -0
  2571. data/test/dummy/node_modules/nan/include_dirs.js +1 -0
  2572. data/test/dummy/node_modules/nan/nan.h +2237 -0
  2573. data/test/dummy/node_modules/nan/nan_callbacks.h +88 -0
  2574. data/test/dummy/node_modules/nan/nan_callbacks_12_inl.h +512 -0
  2575. data/test/dummy/node_modules/nan/nan_callbacks_pre_12_inl.h +506 -0
  2576. data/test/dummy/node_modules/nan/nan_converters.h +64 -0
  2577. data/test/dummy/node_modules/nan/nan_converters_43_inl.h +42 -0
  2578. data/test/dummy/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  2579. data/test/dummy/node_modules/nan/nan_implementation_12_inl.h +404 -0
  2580. data/test/dummy/node_modules/nan/nan_implementation_pre_12_inl.h +264 -0
  2581. data/test/dummy/node_modules/nan/nan_maybe_43_inl.h +231 -0
  2582. data/test/dummy/node_modules/nan/nan_maybe_pre_43_inl.h +303 -0
  2583. data/test/dummy/node_modules/nan/nan_new.h +340 -0
  2584. data/test/dummy/node_modules/nan/nan_object_wrap.h +155 -0
  2585. data/test/dummy/node_modules/nan/nan_persistent_12_inl.h +129 -0
  2586. data/test/dummy/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  2587. data/test/dummy/node_modules/nan/nan_string_bytes.h +305 -0
  2588. data/test/dummy/node_modules/nan/nan_typedarray_contents.h +87 -0
  2589. data/test/dummy/node_modules/nan/nan_weak.h +422 -0
  2590. data/test/dummy/node_modules/nan/package.json +121 -0
  2591. data/test/dummy/node_modules/nan/tools/1to2.js +412 -0
  2592. data/test/dummy/node_modules/nan/tools/README.md +14 -0
  2593. data/test/dummy/node_modules/nan/tools/package.json +19 -0
  2594. data/test/dummy/node_modules/normalize-path/LICENSE +21 -0
  2595. data/test/dummy/node_modules/normalize-path/README.md +75 -0
  2596. data/test/dummy/node_modules/normalize-path/index.js +17 -0
  2597. data/test/dummy/node_modules/normalize-path/package.json +118 -0
  2598. data/test/dummy/node_modules/object-keys/CHANGELOG.md +203 -0
  2599. data/test/dummy/node_modules/object-keys/LICENSE +21 -0
  2600. data/test/dummy/node_modules/object-keys/README.md +76 -0
  2601. data/test/dummy/node_modules/object-keys/index.js +128 -0
  2602. data/test/dummy/node_modules/object-keys/isArguments.js +17 -0
  2603. data/test/dummy/node_modules/object-keys/package.json +141 -0
  2604. data/test/dummy/node_modules/object-keys/test/index.js +5 -0
  2605. data/test/dummy/node_modules/object.omit/LICENSE +21 -0
  2606. data/test/dummy/node_modules/object.omit/README.md +104 -0
  2607. data/test/dummy/node_modules/object.omit/index.js +40 -0
  2608. data/test/dummy/node_modules/object.omit/package.json +105 -0
  2609. data/test/dummy/node_modules/once/LICENSE +15 -0
  2610. data/test/dummy/node_modules/once/README.md +51 -0
  2611. data/test/dummy/node_modules/once/once.js +21 -0
  2612. data/test/dummy/node_modules/once/package.json +89 -0
  2613. data/test/dummy/node_modules/os-browserify/LICENSE +21 -0
  2614. data/test/dummy/node_modules/os-browserify/README.md +2 -0
  2615. data/test/dummy/node_modules/os-browserify/browser.js +45 -0
  2616. data/test/dummy/node_modules/os-browserify/main.js +1 -0
  2617. data/test/dummy/node_modules/os-browserify/package.json +67 -0
  2618. data/test/dummy/node_modules/outpipe/LICENSE +18 -0
  2619. data/test/dummy/node_modules/outpipe/bin/echo.js +2 -0
  2620. data/test/dummy/node_modules/outpipe/example/input/x.js +4 -0
  2621. data/test/dummy/node_modules/outpipe/example/input/y.js +5 -0
  2622. data/test/dummy/node_modules/outpipe/example/input/z.js +2 -0
  2623. data/test/dummy/node_modules/outpipe/example/watch.js +19 -0
  2624. data/test/dummy/node_modules/outpipe/index.js +34 -0
  2625. data/test/dummy/node_modules/outpipe/package.json +91 -0
  2626. data/test/dummy/node_modules/outpipe/readme.markdown +117 -0
  2627. data/test/dummy/node_modules/outpipe/test/cmd.js +19 -0
  2628. data/test/dummy/node_modules/outpipe/test/outfile.js +19 -0
  2629. data/test/dummy/node_modules/pako/Gruntfile.js +82 -0
  2630. data/test/dummy/node_modules/pako/HISTORY.md +69 -0
  2631. data/test/dummy/node_modules/pako/LICENSE +21 -0
  2632. data/test/dummy/node_modules/pako/README.md +175 -0
  2633. data/test/dummy/node_modules/pako/bower.json +23 -0
  2634. data/test/dummy/node_modules/pako/dist/pako.js +6433 -0
  2635. data/test/dummy/node_modules/pako/dist/pako.min.js +3 -0
  2636. data/test/dummy/node_modules/pako/dist/pako_deflate.js +3762 -0
  2637. data/test/dummy/node_modules/pako/dist/pako_deflate.min.js +2 -0
  2638. data/test/dummy/node_modules/pako/dist/pako_inflate.js +3071 -0
  2639. data/test/dummy/node_modules/pako/dist/pako_inflate.min.js +2 -0
  2640. data/test/dummy/node_modules/pako/doc/index.html +1639 -0
  2641. data/test/dummy/node_modules/pako/index.js +14 -0
  2642. data/test/dummy/node_modules/pako/lib/deflate.js +376 -0
  2643. data/test/dummy/node_modules/pako/lib/inflate.js +400 -0
  2644. data/test/dummy/node_modules/pako/lib/utils/common.js +102 -0
  2645. data/test/dummy/node_modules/pako/lib/utils/strings.js +185 -0
  2646. data/test/dummy/node_modules/pako/lib/zlib/adler32.js +32 -0
  2647. data/test/dummy/node_modules/pako/lib/zlib/constants.js +47 -0
  2648. data/test/dummy/node_modules/pako/lib/zlib/crc32.js +41 -0
  2649. data/test/dummy/node_modules/pako/lib/zlib/deflate.js +1765 -0
  2650. data/test/dummy/node_modules/pako/lib/zlib/gzheader.js +40 -0
  2651. data/test/dummy/node_modules/pako/lib/zlib/inffast.js +326 -0
  2652. data/test/dummy/node_modules/pako/lib/zlib/inflate.js +1503 -0
  2653. data/test/dummy/node_modules/pako/lib/zlib/inftrees.js +327 -0
  2654. data/test/dummy/node_modules/pako/lib/zlib/messages.js +13 -0
  2655. data/test/dummy/node_modules/pako/lib/zlib/trees.js +1199 -0
  2656. data/test/dummy/node_modules/pako/lib/zlib/zstream.js +29 -0
  2657. data/test/dummy/node_modules/pako/package.json +101 -0
  2658. data/test/dummy/node_modules/parents/LICENSE +18 -0
  2659. data/test/dummy/node_modules/parents/example/dirname.js +3 -0
  2660. data/test/dummy/node_modules/parents/example/win32.js +5 -0
  2661. data/test/dummy/node_modules/parents/index.js +48 -0
  2662. data/test/dummy/node_modules/parents/package.json +91 -0
  2663. data/test/dummy/node_modules/parents/readme.markdown +75 -0
  2664. data/test/dummy/node_modules/parents/test/dirname.js +20 -0
  2665. data/test/dummy/node_modules/parents/test/win32.js +34 -0
  2666. data/test/dummy/node_modules/parse-asn1/README.md +8 -0
  2667. data/test/dummy/node_modules/parse-asn1/aesid.json +13 -0
  2668. data/test/dummy/node_modules/parse-asn1/asn1.js +117 -0
  2669. data/test/dummy/node_modules/parse-asn1/fixProc.js +30 -0
  2670. data/test/dummy/node_modules/parse-asn1/index.js +101 -0
  2671. data/test/dummy/node_modules/parse-asn1/package.json +97 -0
  2672. data/test/dummy/node_modules/parse-asn1/test/1024.priv +16 -0
  2673. data/test/dummy/node_modules/parse-asn1/test/1024.pub +6 -0
  2674. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.priv +18 -0
  2675. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.pub +12 -0
  2676. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.priv +20 -0
  2677. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.pub +20 -0
  2678. data/test/dummy/node_modules/parse-asn1/test/ec.pass.priv +7 -0
  2679. data/test/dummy/node_modules/parse-asn1/test/ec.priv +5 -0
  2680. data/test/dummy/node_modules/parse-asn1/test/ec.pub +4 -0
  2681. data/test/dummy/node_modules/parse-asn1/test/index.js +92 -0
  2682. data/test/dummy/node_modules/parse-asn1/test/pass.1024.priv +18 -0
  2683. data/test/dummy/node_modules/parse-asn1/test/pass.1024.pub +6 -0
  2684. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.priv +11 -0
  2685. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.pub +12 -0
  2686. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.priv +18 -0
  2687. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.pub +6 -0
  2688. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.priv +30 -0
  2689. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.pub +9 -0
  2690. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.priv +15 -0
  2691. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.pub +12 -0
  2692. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.priv +15 -0
  2693. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.pub +5 -0
  2694. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.priv +27 -0
  2695. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.pub +8 -0
  2696. data/test/dummy/node_modules/parse-asn1/test/vector.js +7 -0
  2697. data/test/dummy/node_modules/parse-asn1/test/vector.priv +12 -0
  2698. data/test/dummy/node_modules/parse-asn1/test/vector2.priv +19 -0
  2699. data/test/dummy/node_modules/parse-glob/LICENSE +21 -0
  2700. data/test/dummy/node_modules/parse-glob/README.md +115 -0
  2701. data/test/dummy/node_modules/parse-glob/index.js +156 -0
  2702. data/test/dummy/node_modules/parse-glob/package.json +116 -0
  2703. data/test/dummy/node_modules/path-browserify/LICENSE +18 -0
  2704. data/test/dummy/node_modules/path-browserify/index.js +224 -0
  2705. data/test/dummy/node_modules/path-browserify/package.json +78 -0
  2706. data/test/dummy/node_modules/path-browserify/readme.markdown +3 -0
  2707. data/test/dummy/node_modules/path-is-absolute/index.js +20 -0
  2708. data/test/dummy/node_modules/path-is-absolute/license +21 -0
  2709. data/test/dummy/node_modules/path-is-absolute/package.json +98 -0
  2710. data/test/dummy/node_modules/path-is-absolute/readme.md +51 -0
  2711. data/test/dummy/node_modules/path-platform/LICENSE +3 -0
  2712. data/test/dummy/node_modules/path-platform/README.md +5 -0
  2713. data/test/dummy/node_modules/path-platform/package.json +79 -0
  2714. data/test/dummy/node_modules/path-platform/path.js +643 -0
  2715. data/test/dummy/node_modules/pbkdf2/LICENSE +21 -0
  2716. data/test/dummy/node_modules/pbkdf2/README.md +24 -0
  2717. data/test/dummy/node_modules/pbkdf2/async-shim.js +19 -0
  2718. data/test/dummy/node_modules/pbkdf2/browser.js +80 -0
  2719. data/test/dummy/node_modules/pbkdf2/index.js +92 -0
  2720. data/test/dummy/node_modules/pbkdf2/package.json +116 -0
  2721. data/test/dummy/node_modules/pbkdf2/test/fixtures.json +171 -0
  2722. data/test/dummy/node_modules/pbkdf2/test/index.html +13 -0
  2723. data/test/dummy/node_modules/pbkdf2/test/index.js +93 -0
  2724. data/test/dummy/node_modules/preserve/LICENSE +24 -0
  2725. data/test/dummy/node_modules/preserve/README.md +90 -0
  2726. data/test/dummy/node_modules/preserve/index.js +54 -0
  2727. data/test/dummy/node_modules/preserve/package.json +96 -0
  2728. data/test/dummy/node_modules/preserve/test.js +48 -0
  2729. data/test/dummy/node_modules/private/LICENSE +20 -0
  2730. data/test/dummy/node_modules/private/README.md +246 -0
  2731. data/test/dummy/node_modules/private/package.json +85 -0
  2732. data/test/dummy/node_modules/private/private.js +129 -0
  2733. data/test/dummy/node_modules/private/test/run.js +68 -0
  2734. data/test/dummy/node_modules/process/LICENSE +22 -0
  2735. data/test/dummy/node_modules/process/README.md +26 -0
  2736. data/test/dummy/node_modules/process/browser.js +91 -0
  2737. data/test/dummy/node_modules/process/index.js +2 -0
  2738. data/test/dummy/node_modules/process/package.json +87 -0
  2739. data/test/dummy/node_modules/process/test.js +66 -0
  2740. data/test/dummy/node_modules/process-nextick-args/index.js +20 -0
  2741. data/test/dummy/node_modules/process-nextick-args/license.md +19 -0
  2742. data/test/dummy/node_modules/process-nextick-args/package.json +73 -0
  2743. data/test/dummy/node_modules/process-nextick-args/readme.md +18 -0
  2744. data/test/dummy/node_modules/process-nextick-args/test.js +24 -0
  2745. data/test/dummy/node_modules/public-encrypt/browser.js +10 -0
  2746. data/test/dummy/node_modules/public-encrypt/index.js +18 -0
  2747. data/test/dummy/node_modules/public-encrypt/mgf.js +16 -0
  2748. data/test/dummy/node_modules/public-encrypt/package.json +97 -0
  2749. data/test/dummy/node_modules/public-encrypt/privateDecrypt.js +108 -0
  2750. data/test/dummy/node_modules/public-encrypt/publicEncrypt.js +95 -0
  2751. data/test/dummy/node_modules/public-encrypt/readme.md +6 -0
  2752. data/test/dummy/node_modules/public-encrypt/test/1024.priv +16 -0
  2753. data/test/dummy/node_modules/public-encrypt/test/1024.pub +6 -0
  2754. data/test/dummy/node_modules/public-encrypt/test/ec.pass.priv +7 -0
  2755. data/test/dummy/node_modules/public-encrypt/test/ec.priv +5 -0
  2756. data/test/dummy/node_modules/public-encrypt/test/ec.pub +4 -0
  2757. data/test/dummy/node_modules/public-encrypt/test/index.js +117 -0
  2758. data/test/dummy/node_modules/public-encrypt/test/nodeTests.js +51 -0
  2759. data/test/dummy/node_modules/public-encrypt/test/pass.1024.priv +18 -0
  2760. data/test/dummy/node_modules/public-encrypt/test/pass.1024.pub +6 -0
  2761. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.priv +15 -0
  2762. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.pub +5 -0
  2763. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.priv +27 -0
  2764. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.pub +8 -0
  2765. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.priv +30 -0
  2766. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.pub +9 -0
  2767. data/test/dummy/node_modules/public-encrypt/test/test_cert.pem +20 -0
  2768. data/test/dummy/node_modules/public-encrypt/test/test_key.pem +15 -0
  2769. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey.pem +15 -0
  2770. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey_encrypted.pem +18 -0
  2771. data/test/dummy/node_modules/public-encrypt/test/test_rsa_pubkey.pem +6 -0
  2772. data/test/dummy/node_modules/public-encrypt/withPublic.js +10 -0
  2773. data/test/dummy/node_modules/public-encrypt/xor.js +8 -0
  2774. data/test/dummy/node_modules/punycode/LICENSE-MIT.txt +20 -0
  2775. data/test/dummy/node_modules/punycode/README.md +176 -0
  2776. data/test/dummy/node_modules/punycode/package.json +119 -0
  2777. data/test/dummy/node_modules/punycode/punycode.js +533 -0
  2778. data/test/dummy/node_modules/querystring/History.md +20 -0
  2779. data/test/dummy/node_modules/querystring/License.md +19 -0
  2780. data/test/dummy/node_modules/querystring/Readme.md +15 -0
  2781. data/test/dummy/node_modules/querystring/decode.js +80 -0
  2782. data/test/dummy/node_modules/querystring/encode.js +64 -0
  2783. data/test/dummy/node_modules/querystring/index.js +4 -0
  2784. data/test/dummy/node_modules/querystring/package.json +122 -0
  2785. data/test/dummy/node_modules/querystring/test/common-index.js +3 -0
  2786. data/test/dummy/node_modules/querystring/test/index.js +210 -0
  2787. data/test/dummy/node_modules/querystring/test/tap-index.js +3 -0
  2788. data/test/dummy/node_modules/querystring-es3/History.md +20 -0
  2789. data/test/dummy/node_modules/querystring-es3/License.md +19 -0
  2790. data/test/dummy/node_modules/querystring-es3/Readme.md +15 -0
  2791. data/test/dummy/node_modules/querystring-es3/decode.js +84 -0
  2792. data/test/dummy/node_modules/querystring-es3/encode.js +85 -0
  2793. data/test/dummy/node_modules/querystring-es3/index.js +4 -0
  2794. data/test/dummy/node_modules/querystring-es3/package.json +124 -0
  2795. data/test/dummy/node_modules/querystring-es3/test/common-index.js +3 -0
  2796. data/test/dummy/node_modules/querystring-es3/test/index.js +210 -0
  2797. data/test/dummy/node_modules/querystring-es3/test/tap-index.js +3 -0
  2798. data/test/dummy/node_modules/randomatic/LICENSE +21 -0
  2799. data/test/dummy/node_modules/randomatic/README.md +132 -0
  2800. data/test/dummy/node_modules/randomatic/index.js +83 -0
  2801. data/test/dummy/node_modules/randomatic/package.json +108 -0
  2802. data/test/dummy/node_modules/randombytes/README.md +14 -0
  2803. data/test/dummy/node_modules/randombytes/browser.js +36 -0
  2804. data/test/dummy/node_modules/randombytes/index.js +1 -0
  2805. data/test/dummy/node_modules/randombytes/package.json +105 -0
  2806. data/test/dummy/node_modules/randombytes/test.js +56 -0
  2807. data/test/dummy/node_modules/read-only-stream/LICENSE +18 -0
  2808. data/test/dummy/node_modules/read-only-stream/example/main.js +3 -0
  2809. data/test/dummy/node_modules/read-only-stream/example/wrap.js +8 -0
  2810. data/test/dummy/node_modules/read-only-stream/index.js +30 -0
  2811. data/test/dummy/node_modules/read-only-stream/package.json +86 -0
  2812. data/test/dummy/node_modules/read-only-stream/readme.markdown +60 -0
  2813. data/test/dummy/node_modules/read-only-stream/test/error.js +15 -0
  2814. data/test/dummy/node_modules/read-only-stream/test/ro.js +22 -0
  2815. data/test/dummy/node_modules/read-only-stream/test/streams1.js +21 -0
  2816. data/test/dummy/node_modules/readable-stream/LICENSE +18 -0
  2817. data/test/dummy/node_modules/readable-stream/README.md +36 -0
  2818. data/test/dummy/node_modules/readable-stream/doc/stream.markdown +1761 -0
  2819. data/test/dummy/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  2820. data/test/dummy/node_modules/readable-stream/duplex.js +1 -0
  2821. data/test/dummy/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  2822. data/test/dummy/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  2823. data/test/dummy/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  2824. data/test/dummy/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  2825. data/test/dummy/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  2826. data/test/dummy/node_modules/readable-stream/node_modules/isarray/Makefile +6 -0
  2827. data/test/dummy/node_modules/readable-stream/node_modules/isarray/README.md +60 -0
  2828. data/test/dummy/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  2829. data/test/dummy/node_modules/readable-stream/node_modules/isarray/index.js +5 -0
  2830. data/test/dummy/node_modules/readable-stream/node_modules/isarray/package.json +96 -0
  2831. data/test/dummy/node_modules/readable-stream/node_modules/isarray/test.js +20 -0
  2832. data/test/dummy/node_modules/readable-stream/package.json +129 -0
  2833. data/test/dummy/node_modules/readable-stream/passthrough.js +1 -0
  2834. data/test/dummy/node_modules/readable-stream/readable.js +18 -0
  2835. data/test/dummy/node_modules/readable-stream/transform.js +1 -0
  2836. data/test/dummy/node_modules/readable-stream/writable.js +1 -0
  2837. data/test/dummy/node_modules/readdirp/LICENSE +18 -0
  2838. data/test/dummy/node_modules/readdirp/README.md +233 -0
  2839. data/test/dummy/node_modules/readdirp/examples/Readme.md +37 -0
  2840. data/test/dummy/node_modules/readdirp/examples/callback-api.js +10 -0
  2841. data/test/dummy/node_modules/readdirp/examples/grep.js +71 -0
  2842. data/test/dummy/node_modules/readdirp/examples/package.json +9 -0
  2843. data/test/dummy/node_modules/readdirp/examples/stream-api-pipe.js +19 -0
  2844. data/test/dummy/node_modules/readdirp/examples/stream-api.js +15 -0
  2845. data/test/dummy/node_modules/readdirp/node_modules/minimatch/LICENSE +15 -0
  2846. data/test/dummy/node_modules/readdirp/node_modules/minimatch/README.md +216 -0
  2847. data/test/dummy/node_modules/readdirp/node_modules/minimatch/browser.js +1159 -0
  2848. data/test/dummy/node_modules/readdirp/node_modules/minimatch/minimatch.js +912 -0
  2849. data/test/dummy/node_modules/readdirp/node_modules/minimatch/package.json +88 -0
  2850. data/test/dummy/node_modules/readdirp/package.json +101 -0
  2851. data/test/dummy/node_modules/readdirp/readdirp.js +288 -0
  2852. data/test/dummy/node_modules/readdirp/stream-api.js +100 -0
  2853. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1 +0 -0
  2854. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2 +0 -0
  2855. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3 +0 -0
  2856. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1 +0 -0
  2857. data/test/dummy/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1 +0 -0
  2858. data/test/dummy/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2 +0 -0
  2859. data/test/dummy/node_modules/readdirp/test/bed/root_file1.ext1 +0 -0
  2860. data/test/dummy/node_modules/readdirp/test/bed/root_file2.ext2 +0 -0
  2861. data/test/dummy/node_modules/readdirp/test/bed/root_file3.ext3 +0 -0
  2862. data/test/dummy/node_modules/readdirp/test/readdirp-stream.js +310 -0
  2863. data/test/dummy/node_modules/readdirp/test/readdirp.js +289 -0
  2864. data/test/dummy/node_modules/recast/LICENSE +20 -0
  2865. data/test/dummy/node_modules/recast/README.md +143 -0
  2866. data/test/dummy/node_modules/recast/example/add-braces +44 -0
  2867. data/test/dummy/node_modules/recast/example/generic-identity +17 -0
  2868. data/test/dummy/node_modules/recast/example/identity +8 -0
  2869. data/test/dummy/node_modules/recast/example/to-while +84 -0
  2870. data/test/dummy/node_modules/recast/lib/comments.js +351 -0
  2871. data/test/dummy/node_modules/recast/lib/fast-path.js +477 -0
  2872. data/test/dummy/node_modules/recast/lib/lines.js +878 -0
  2873. data/test/dummy/node_modules/recast/lib/mapping.js +277 -0
  2874. data/test/dummy/node_modules/recast/lib/options.js +95 -0
  2875. data/test/dummy/node_modules/recast/lib/parser.js +152 -0
  2876. data/test/dummy/node_modules/recast/lib/patcher.js +515 -0
  2877. data/test/dummy/node_modules/recast/lib/printer.js +1802 -0
  2878. data/test/dummy/node_modules/recast/lib/types.js +5 -0
  2879. data/test/dummy/node_modules/recast/lib/util.js +283 -0
  2880. data/test/dummy/node_modules/recast/main.js +99 -0
  2881. data/test/dummy/node_modules/recast/package.json +102 -0
  2882. data/test/dummy/node_modules/regex-cache/LICENSE +21 -0
  2883. data/test/dummy/node_modules/regex-cache/README.md +160 -0
  2884. data/test/dummy/node_modules/regex-cache/index.js +69 -0
  2885. data/test/dummy/node_modules/regex-cache/package.json +123 -0
  2886. data/test/dummy/node_modules/repeat-element/LICENSE +21 -0
  2887. data/test/dummy/node_modules/repeat-element/README.md +71 -0
  2888. data/test/dummy/node_modules/repeat-element/index.js +18 -0
  2889. data/test/dummy/node_modules/repeat-element/package.json +94 -0
  2890. data/test/dummy/node_modules/repeat-string/LICENSE +21 -0
  2891. data/test/dummy/node_modules/repeat-string/README.md +118 -0
  2892. data/test/dummy/node_modules/repeat-string/index.js +68 -0
  2893. data/test/dummy/node_modules/repeat-string/package.json +129 -0
  2894. data/test/dummy/node_modules/resolve/LICENSE +18 -0
  2895. data/test/dummy/node_modules/resolve/example/async.js +5 -0
  2896. data/test/dummy/node_modules/resolve/example/sync.js +3 -0
  2897. data/test/dummy/node_modules/resolve/index.js +5 -0
  2898. data/test/dummy/node_modules/resolve/lib/async.js +192 -0
  2899. data/test/dummy/node_modules/resolve/lib/caller.js +8 -0
  2900. data/test/dummy/node_modules/resolve/lib/core.js +4 -0
  2901. data/test/dummy/node_modules/resolve/lib/core.json +38 -0
  2902. data/test/dummy/node_modules/resolve/lib/node-modules-paths.js +38 -0
  2903. data/test/dummy/node_modules/resolve/lib/sync.js +81 -0
  2904. data/test/dummy/node_modules/resolve/package.json +84 -0
  2905. data/test/dummy/node_modules/resolve/readme.markdown +148 -0
  2906. data/test/dummy/node_modules/resolve/test/core.js +12 -0
  2907. data/test/dummy/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  2908. data/test/dummy/node_modules/resolve/test/dotdot/index.js +1 -0
  2909. data/test/dummy/node_modules/resolve/test/dotdot.js +29 -0
  2910. data/test/dummy/node_modules/resolve/test/faulty_basedir.js +17 -0
  2911. data/test/dummy/node_modules/resolve/test/filter.js +18 -0
  2912. data/test/dummy/node_modules/resolve/test/filter_sync.js +15 -0
  2913. data/test/dummy/node_modules/resolve/test/mock.js +142 -0
  2914. data/test/dummy/node_modules/resolve/test/mock_sync.js +68 -0
  2915. data/test/dummy/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  2916. data/test/dummy/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  2917. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  2918. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  2919. data/test/dummy/node_modules/resolve/test/module_dir.js +56 -0
  2920. data/test/dummy/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  2921. data/test/dummy/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  2922. data/test/dummy/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  2923. data/test/dummy/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  2924. data/test/dummy/node_modules/resolve/test/node_path.js +48 -0
  2925. data/test/dummy/node_modules/resolve/test/nonstring.js +9 -0
  2926. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  2927. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js +0 -0
  2928. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/deeper/ref.js +0 -0
  2929. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json +4 -0
  2930. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js +0 -0
  2931. data/test/dummy/node_modules/resolve/test/pathfilter.js +35 -0
  2932. data/test/dummy/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  2933. data/test/dummy/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  2934. data/test/dummy/node_modules/resolve/test/precedence/aaa.js +1 -0
  2935. data/test/dummy/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  2936. data/test/dummy/node_modules/resolve/test/precedence/bbb.js +1 -0
  2937. data/test/dummy/node_modules/resolve/test/precedence.js +23 -0
  2938. data/test/dummy/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
  2939. data/test/dummy/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  2940. data/test/dummy/node_modules/resolve/test/resolver/baz/package.json +3 -0
  2941. data/test/dummy/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  2942. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js +1 -0
  2943. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json +3 -0
  2944. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
  2945. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
  2946. data/test/dummy/node_modules/resolve/test/resolver/cup.coffee +1 -0
  2947. data/test/dummy/node_modules/resolve/test/resolver/foo.js +1 -0
  2948. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  2949. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  2950. data/test/dummy/node_modules/resolve/test/resolver/mug.coffee +0 -0
  2951. data/test/dummy/node_modules/resolve/test/resolver/mug.js +0 -0
  2952. data/test/dummy/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  2953. data/test/dummy/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  2954. data/test/dummy/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js +0 -0
  2955. data/test/dummy/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  2956. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/main.js +6 -0
  2957. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js +1 -0
  2958. data/test/dummy/node_modules/resolve/test/resolver.js +281 -0
  2959. data/test/dummy/node_modules/resolve/test/resolver_sync.js +180 -0
  2960. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json +1 -0
  2961. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/package.json +1 -0
  2962. data/test/dummy/node_modules/resolve/test/subdirs.js +13 -0
  2963. data/test/dummy/node_modules/ripemd160/CHANGELOG.md +36 -0
  2964. data/test/dummy/node_modules/ripemd160/README.md +100 -0
  2965. data/test/dummy/node_modules/ripemd160/lib/ripemd160.js +210 -0
  2966. data/test/dummy/node_modules/ripemd160/package.json +106 -0
  2967. data/test/dummy/node_modules/sha.js/LICENSE +22 -0
  2968. data/test/dummy/node_modules/sha.js/README.md +54 -0
  2969. data/test/dummy/node_modules/sha.js/bin.js +43 -0
  2970. data/test/dummy/node_modules/sha.js/hash.js +69 -0
  2971. data/test/dummy/node_modules/sha.js/hexpp.js +26 -0
  2972. data/test/dummy/node_modules/sha.js/index.js +15 -0
  2973. data/test/dummy/node_modules/sha.js/package.json +95 -0
  2974. data/test/dummy/node_modules/sha.js/sha.js +93 -0
  2975. data/test/dummy/node_modules/sha.js/sha1.js +98 -0
  2976. data/test/dummy/node_modules/sha.js/sha224.js +52 -0
  2977. data/test/dummy/node_modules/sha.js/sha256.js +134 -0
  2978. data/test/dummy/node_modules/sha.js/sha384.js +56 -0
  2979. data/test/dummy/node_modules/sha.js/sha512.js +259 -0
  2980. data/test/dummy/node_modules/sha.js/test/hash.js +86 -0
  2981. data/test/dummy/node_modules/sha.js/test/test.js +85 -0
  2982. data/test/dummy/node_modules/sha.js/test/vectors.js +76 -0
  2983. data/test/dummy/node_modules/shasum/LICENSE +22 -0
  2984. data/test/dummy/node_modules/shasum/README.md +15 -0
  2985. data/test/dummy/node_modules/shasum/browser.js +13 -0
  2986. data/test/dummy/node_modules/shasum/index.js +13 -0
  2987. data/test/dummy/node_modules/shasum/package.json +79 -0
  2988. data/test/dummy/node_modules/shasum/test/index.js +18 -0
  2989. data/test/dummy/node_modules/shell-quote/LICENSE +24 -0
  2990. data/test/dummy/node_modules/shell-quote/example/env.js +3 -0
  2991. data/test/dummy/node_modules/shell-quote/example/op.js +3 -0
  2992. data/test/dummy/node_modules/shell-quote/example/parse.js +3 -0
  2993. data/test/dummy/node_modules/shell-quote/example/quote.js +3 -0
  2994. data/test/dummy/node_modules/shell-quote/index.js +182 -0
  2995. data/test/dummy/node_modules/shell-quote/package.json +108 -0
  2996. data/test/dummy/node_modules/shell-quote/readme.markdown +128 -0
  2997. data/test/dummy/node_modules/shell-quote/test/env.js +39 -0
  2998. data/test/dummy/node_modules/shell-quote/test/env_fn.js +19 -0
  2999. data/test/dummy/node_modules/shell-quote/test/op.js +67 -0
  3000. data/test/dummy/node_modules/shell-quote/test/parse.js +23 -0
  3001. data/test/dummy/node_modules/shell-quote/test/quote.js +32 -0
  3002. data/test/dummy/node_modules/shell-quote/test/set.js +29 -0
  3003. data/test/dummy/node_modules/source-map/README.md +729 -0
  3004. data/test/dummy/node_modules/source-map/dist/source-map.debug.js +3006 -0
  3005. data/test/dummy/node_modules/source-map/dist/source-map.js +3005 -0
  3006. data/test/dummy/node_modules/source-map/dist/source-map.min.js +2 -0
  3007. data/test/dummy/node_modules/source-map/dist/source-map.min.js.map +1 -0
  3008. data/test/dummy/node_modules/source-map/lib/array-set.js +104 -0
  3009. data/test/dummy/node_modules/source-map/lib/base64-vlq.js +141 -0
  3010. data/test/dummy/node_modules/source-map/lib/base64.js +68 -0
  3011. data/test/dummy/node_modules/source-map/lib/binary-search.js +112 -0
  3012. data/test/dummy/node_modules/source-map/lib/mapping-list.js +80 -0
  3013. data/test/dummy/node_modules/source-map/lib/quick-sort.js +115 -0
  3014. data/test/dummy/node_modules/source-map/lib/source-map-consumer.js +1082 -0
  3015. data/test/dummy/node_modules/source-map/lib/source-map-generator.js +396 -0
  3016. data/test/dummy/node_modules/source-map/lib/source-node.js +408 -0
  3017. data/test/dummy/node_modules/source-map/lib/util.js +369 -0
  3018. data/test/dummy/node_modules/source-map/package.json +242 -0
  3019. data/test/dummy/node_modules/source-map/source-map.js +8 -0
  3020. data/test/dummy/node_modules/stream-browserify/LICENSE +18 -0
  3021. data/test/dummy/node_modules/stream-browserify/index.js +127 -0
  3022. data/test/dummy/node_modules/stream-browserify/package.json +110 -0
  3023. data/test/dummy/node_modules/stream-browserify/readme.markdown +25 -0
  3024. data/test/dummy/node_modules/stream-browserify/test/buf.js +32 -0
  3025. data/test/dummy/node_modules/stream-combiner2/LICENSE +22 -0
  3026. data/test/dummy/node_modules/stream-combiner2/README.md +37 -0
  3027. data/test/dummy/node_modules/stream-combiner2/index.js +68 -0
  3028. data/test/dummy/node_modules/stream-combiner2/package.json +79 -0
  3029. data/test/dummy/node_modules/stream-combiner2/test/index.js +98 -0
  3030. data/test/dummy/node_modules/stream-http/LICENSE +24 -0
  3031. data/test/dummy/node_modules/stream-http/README.md +124 -0
  3032. data/test/dummy/node_modules/stream-http/ie8-polyfill.js +168 -0
  3033. data/test/dummy/node_modules/stream-http/index.js +79 -0
  3034. data/test/dummy/node_modules/stream-http/lib/capability.js +40 -0
  3035. data/test/dummy/node_modules/stream-http/lib/request.js +278 -0
  3036. data/test/dummy/node_modules/stream-http/lib/response.js +178 -0
  3037. data/test/dummy/node_modules/stream-http/package.json +103 -0
  3038. data/test/dummy/node_modules/stream-http/test/browser/abort.js +55 -0
  3039. data/test/dummy/node_modules/stream-http/test/browser/auth.js +22 -0
  3040. data/test/dummy/node_modules/stream-http/test/browser/binary-streaming.js +71 -0
  3041. data/test/dummy/node_modules/stream-http/test/browser/binary.js +32 -0
  3042. data/test/dummy/node_modules/stream-http/test/browser/cookie.js +25 -0
  3043. data/test/dummy/node_modules/stream-http/test/browser/error.js.disabled +12 -0
  3044. data/test/dummy/node_modules/stream-http/test/browser/headers.js +75 -0
  3045. data/test/dummy/node_modules/stream-http/test/browser/lib/webworker-worker.js +20 -0
  3046. data/test/dummy/node_modules/stream-http/test/browser/package.json +5 -0
  3047. data/test/dummy/node_modules/stream-http/test/browser/post-binary.js +42 -0
  3048. data/test/dummy/node_modules/stream-http/test/browser/post-text.js +48 -0
  3049. data/test/dummy/node_modules/stream-http/test/browser/text-streaming.js +43 -0
  3050. data/test/dummy/node_modules/stream-http/test/browser/text.js +22 -0
  3051. data/test/dummy/node_modules/stream-http/test/browser/webworker.js +32 -0
  3052. data/test/dummy/node_modules/stream-http/test/node/http-browserify.js +133 -0
  3053. data/test/dummy/node_modules/stream-http/test/server/index.js +115 -0
  3054. data/test/dummy/node_modules/stream-http/test/server/static/basic.txt +19 -0
  3055. data/test/dummy/node_modules/stream-http/test/server/static/browserify.png +0 -0
  3056. data/test/dummy/node_modules/stream-http/test/server/static/test-polyfill.js +9 -0
  3057. data/test/dummy/node_modules/stream-splicer/LICENSE +18 -0
  3058. data/test/dummy/node_modules/stream-splicer/example/header.js +22 -0
  3059. data/test/dummy/node_modules/stream-splicer/index.js +196 -0
  3060. data/test/dummy/node_modules/stream-splicer/package.json +87 -0
  3061. data/test/dummy/node_modules/stream-splicer/readme.markdown +139 -0
  3062. data/test/dummy/node_modules/stream-splicer/test/combiner.js +31 -0
  3063. data/test/dummy/node_modules/stream-splicer/test/combiner_stream.js +29 -0
  3064. data/test/dummy/node_modules/stream-splicer/test/empty.js +17 -0
  3065. data/test/dummy/node_modules/stream-splicer/test/empty_no_data.js +13 -0
  3066. data/test/dummy/node_modules/stream-splicer/test/get.js +41 -0
  3067. data/test/dummy/node_modules/stream-splicer/test/multipush.js +31 -0
  3068. data/test/dummy/node_modules/stream-splicer/test/multiunshift.js +31 -0
  3069. data/test/dummy/node_modules/stream-splicer/test/nested.js +36 -0
  3070. data/test/dummy/node_modules/stream-splicer/test/nested_middle.js +42 -0
  3071. data/test/dummy/node_modules/stream-splicer/test/pop.js +46 -0
  3072. data/test/dummy/node_modules/stream-splicer/test/push.js +57 -0
  3073. data/test/dummy/node_modules/stream-splicer/test/shift.js +46 -0
  3074. data/test/dummy/node_modules/stream-splicer/test/splice.js +58 -0
  3075. data/test/dummy/node_modules/stream-splicer/test/unshift.js +46 -0
  3076. data/test/dummy/node_modules/string_decoder/LICENSE +20 -0
  3077. data/test/dummy/node_modules/string_decoder/README.md +7 -0
  3078. data/test/dummy/node_modules/string_decoder/index.js +221 -0
  3079. data/test/dummy/node_modules/string_decoder/package.json +83 -0
  3080. data/test/dummy/node_modules/subarg/LICENSE +18 -0
  3081. data/test/dummy/node_modules/subarg/example/show.js +3 -0
  3082. data/test/dummy/node_modules/subarg/index.js +35 -0
  3083. data/test/dummy/node_modules/subarg/package.json +105 -0
  3084. data/test/dummy/node_modules/subarg/readme.markdown +55 -0
  3085. data/test/dummy/node_modules/subarg/test/arg.js +31 -0
  3086. data/test/dummy/node_modules/subarg/test/recursive.js +24 -0
  3087. data/test/dummy/node_modules/syntax-error/LICENSE +18 -0
  3088. data/test/dummy/node_modules/syntax-error/example/check.js +12 -0
  3089. data/test/dummy/node_modules/syntax-error/example/src.js +9 -0
  3090. data/test/dummy/node_modules/syntax-error/index.js +59 -0
  3091. data/test/dummy/node_modules/syntax-error/node_modules/acorn/AUTHORS +43 -0
  3092. data/test/dummy/node_modules/syntax-error/node_modules/acorn/LICENSE +19 -0
  3093. data/test/dummy/node_modules/syntax-error/node_modules/acorn/README.md +396 -0
  3094. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/acorn +71 -0
  3095. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/build-acorn.js +82 -0
  3096. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  3097. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/update_authors.sh +6 -0
  3098. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn.js +3340 -0
  3099. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn_loose.js +1300 -0
  3100. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/walk.js +377 -0
  3101. data/test/dummy/node_modules/syntax-error/node_modules/acorn/package.json +213 -0
  3102. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/bin/acorn.js +59 -0
  3103. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/expression.js +707 -0
  3104. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/identifier.js +90 -0
  3105. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/index.js +67 -0
  3106. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/location.js +24 -0
  3107. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/locutil.js +42 -0
  3108. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  3109. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/expression.js +501 -0
  3110. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/index.js +50 -0
  3111. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/parseutil.js +1 -0
  3112. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/state.js +160 -0
  3113. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/statement.js +420 -0
  3114. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/tokenize.js +108 -0
  3115. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/lval.js +215 -0
  3116. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/node.js +50 -0
  3117. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/options.js +121 -0
  3118. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/parseutil.js +102 -0
  3119. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/state.js +104 -0
  3120. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/statement.js +626 -0
  3121. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokencontext.js +109 -0
  3122. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokenize.js +682 -0
  3123. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokentype.js +147 -0
  3124. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/util.js +9 -0
  3125. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/walk/index.js +340 -0
  3126. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/whitespace.js +12 -0
  3127. data/test/dummy/node_modules/syntax-error/package.json +100 -0
  3128. data/test/dummy/node_modules/syntax-error/readme.markdown +87 -0
  3129. data/test/dummy/node_modules/syntax-error/test/check.js +17 -0
  3130. data/test/dummy/node_modules/syntax-error/test/html.js +16 -0
  3131. data/test/dummy/node_modules/syntax-error/test/ok.js +13 -0
  3132. data/test/dummy/node_modules/syntax-error/test/run.js +12 -0
  3133. data/test/dummy/node_modules/syntax-error/test/run2.js +12 -0
  3134. data/test/dummy/node_modules/syntax-error/test/shebang.js +13 -0
  3135. data/test/dummy/node_modules/syntax-error/test/sources/check.js +9 -0
  3136. data/test/dummy/node_modules/syntax-error/test/sources/ok.js +1 -0
  3137. data/test/dummy/node_modules/syntax-error/test/sources/run.js +1 -0
  3138. data/test/dummy/node_modules/syntax-error/test/sources/run2.js +3 -0
  3139. data/test/dummy/node_modules/syntax-error/test/sources/shebang.js +2 -0
  3140. data/test/dummy/node_modules/syntax-error/test/sources/yield.js +13 -0
  3141. data/test/dummy/node_modules/syntax-error/test/yield.js +13 -0
  3142. data/test/dummy/node_modules/through/LICENSE.APACHE2 +15 -0
  3143. data/test/dummy/node_modules/through/LICENSE.MIT +24 -0
  3144. data/test/dummy/node_modules/through/index.js +108 -0
  3145. data/test/dummy/node_modules/through/package.json +92 -0
  3146. data/test/dummy/node_modules/through/readme.markdown +64 -0
  3147. data/test/dummy/node_modules/through/test/async.js +28 -0
  3148. data/test/dummy/node_modules/through/test/auto-destroy.js +30 -0
  3149. data/test/dummy/node_modules/through/test/buffering.js +71 -0
  3150. data/test/dummy/node_modules/through/test/end.js +45 -0
  3151. data/test/dummy/node_modules/through/test/index.js +133 -0
  3152. data/test/dummy/node_modules/through2/LICENSE +39 -0
  3153. data/test/dummy/node_modules/through2/README.md +133 -0
  3154. data/test/dummy/node_modules/through2/node_modules/isarray/Makefile +6 -0
  3155. data/test/dummy/node_modules/through2/node_modules/isarray/README.md +60 -0
  3156. data/test/dummy/node_modules/through2/node_modules/isarray/component.json +19 -0
  3157. data/test/dummy/node_modules/through2/node_modules/isarray/index.js +5 -0
  3158. data/test/dummy/node_modules/through2/node_modules/isarray/package.json +96 -0
  3159. data/test/dummy/node_modules/through2/node_modules/isarray/test.js +20 -0
  3160. data/test/dummy/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
  3161. data/test/dummy/node_modules/through2/node_modules/readable-stream/README.md +36 -0
  3162. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/stream.markdown +1760 -0
  3163. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  3164. data/test/dummy/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
  3165. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  3166. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  3167. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  3168. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  3169. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  3170. data/test/dummy/node_modules/through2/node_modules/readable-stream/package.json +105 -0
  3171. data/test/dummy/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
  3172. data/test/dummy/node_modules/through2/node_modules/readable-stream/readable.js +12 -0
  3173. data/test/dummy/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
  3174. data/test/dummy/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
  3175. data/test/dummy/node_modules/through2/package.json +107 -0
  3176. data/test/dummy/node_modules/through2/through2.js +96 -0
  3177. data/test/dummy/node_modules/timers-browserify/CHANGELOG.md +58 -0
  3178. data/test/dummy/node_modules/timers-browserify/LICENSE.md +46 -0
  3179. data/test/dummy/node_modules/timers-browserify/README.md +40 -0
  3180. data/test/dummy/node_modules/timers-browserify/example/enroll/build.sh +3 -0
  3181. data/test/dummy/node_modules/timers-browserify/example/enroll/index.html +8 -0
  3182. data/test/dummy/node_modules/timers-browserify/example/enroll/js/browserify.js +233 -0
  3183. data/test/dummy/node_modules/timers-browserify/example/enroll/js/main.js +14 -0
  3184. data/test/dummy/node_modules/timers-browserify/example/enroll/server.js +11 -0
  3185. data/test/dummy/node_modules/timers-browserify/main.js +76 -0
  3186. data/test/dummy/node_modules/timers-browserify/package.json +126 -0
  3187. data/test/dummy/node_modules/to-arraybuffer/LICENSE +24 -0
  3188. data/test/dummy/node_modules/to-arraybuffer/README.md +27 -0
  3189. data/test/dummy/node_modules/to-arraybuffer/index.js +27 -0
  3190. data/test/dummy/node_modules/to-arraybuffer/package.json +85 -0
  3191. data/test/dummy/node_modules/to-arraybuffer/test.js +57 -0
  3192. data/test/dummy/node_modules/tty-browserify/LICENSE +18 -0
  3193. data/test/dummy/node_modules/tty-browserify/index.js +11 -0
  3194. data/test/dummy/node_modules/tty-browserify/package.json +78 -0
  3195. data/test/dummy/node_modules/tty-browserify/readme.markdown +1 -0
  3196. data/test/dummy/node_modules/typedarray/LICENSE +35 -0
  3197. data/test/dummy/node_modules/typedarray/example/tarray.js +4 -0
  3198. data/test/dummy/node_modules/typedarray/index.js +630 -0
  3199. data/test/dummy/node_modules/typedarray/package.json +105 -0
  3200. data/test/dummy/node_modules/typedarray/readme.markdown +61 -0
  3201. data/test/dummy/node_modules/typedarray/test/server/undef_globals.js +19 -0
  3202. data/test/dummy/node_modules/typedarray/test/tarray.js +10 -0
  3203. data/test/dummy/node_modules/umd/README.md +82 -0
  3204. data/test/dummy/node_modules/umd/bin/cli.js +43 -0
  3205. data/test/dummy/node_modules/umd/index.js +78 -0
  3206. data/test/dummy/node_modules/umd/package.json +95 -0
  3207. data/test/dummy/node_modules/unreachable-branch-transform/README.md +72 -0
  3208. data/test/dummy/node_modules/unreachable-branch-transform/index.js +59 -0
  3209. data/test/dummy/node_modules/unreachable-branch-transform/package.json +94 -0
  3210. data/test/dummy/node_modules/unreachable-branch-transform/unreachableBranchTransformer.js +97 -0
  3211. data/test/dummy/node_modules/url/LICENSE +21 -0
  3212. data/test/dummy/node_modules/url/README.md +108 -0
  3213. data/test/dummy/node_modules/url/node_modules/punycode/LICENSE-MIT.txt +20 -0
  3214. data/test/dummy/node_modules/url/node_modules/punycode/README.md +176 -0
  3215. data/test/dummy/node_modules/url/node_modules/punycode/package.json +107 -0
  3216. data/test/dummy/node_modules/url/node_modules/punycode/punycode.js +530 -0
  3217. data/test/dummy/node_modules/url/package.json +80 -0
  3218. data/test/dummy/node_modules/url/test.js +1599 -0
  3219. data/test/dummy/node_modules/url/url.js +732 -0
  3220. data/test/dummy/node_modules/url/util.js +16 -0
  3221. data/test/dummy/node_modules/util/LICENSE +18 -0
  3222. data/test/dummy/node_modules/util/README.md +15 -0
  3223. data/test/dummy/node_modules/util/package.json +81 -0
  3224. data/test/dummy/node_modules/util/support/isBuffer.js +3 -0
  3225. data/test/dummy/node_modules/util/support/isBufferBrowser.js +6 -0
  3226. data/test/dummy/node_modules/util/test/browser/inspect.js +41 -0
  3227. data/test/dummy/node_modules/util/test/browser/is.js +91 -0
  3228. data/test/dummy/node_modules/util/test/node/debug.js +86 -0
  3229. data/test/dummy/node_modules/util/test/node/format.js +77 -0
  3230. data/test/dummy/node_modules/util/test/node/inspect.js +195 -0
  3231. data/test/dummy/node_modules/util/test/node/log.js +58 -0
  3232. data/test/dummy/node_modules/util/test/node/util.js +83 -0
  3233. data/test/dummy/node_modules/util/util.js +586 -0
  3234. data/test/dummy/node_modules/util-deprecate/History.md +16 -0
  3235. data/test/dummy/node_modules/util-deprecate/LICENSE +24 -0
  3236. data/test/dummy/node_modules/util-deprecate/README.md +53 -0
  3237. data/test/dummy/node_modules/util-deprecate/browser.js +67 -0
  3238. data/test/dummy/node_modules/util-deprecate/node.js +6 -0
  3239. data/test/dummy/node_modules/util-deprecate/package.json +83 -0
  3240. data/test/dummy/node_modules/vm-browserify/LICENSE +18 -0
  3241. data/test/dummy/node_modules/vm-browserify/example/run/bundle.js +473 -0
  3242. data/test/dummy/node_modules/vm-browserify/example/run/entry.js +6 -0
  3243. data/test/dummy/node_modules/vm-browserify/example/run/index.html +9 -0
  3244. data/test/dummy/node_modules/vm-browserify/example/run/server.js +6 -0
  3245. data/test/dummy/node_modules/vm-browserify/index.js +138 -0
  3246. data/test/dummy/node_modules/vm-browserify/package.json +96 -0
  3247. data/test/dummy/node_modules/vm-browserify/readme.markdown +67 -0
  3248. data/test/dummy/node_modules/vm-browserify/test/vm.js +35 -0
  3249. data/test/dummy/node_modules/watchify/LICENSE +18 -0
  3250. data/test/dummy/node_modules/watchify/bin/args.js +16 -0
  3251. data/test/dummy/node_modules/watchify/bin/cmd.js +68 -0
  3252. data/test/dummy/node_modules/watchify/example/files/main.js +2 -0
  3253. data/test/dummy/node_modules/watchify/example/files/one.js +3 -0
  3254. data/test/dummy/node_modules/watchify/example/files/two.js +1 -0
  3255. data/test/dummy/node_modules/watchify/index.js +165 -0
  3256. data/test/dummy/node_modules/watchify/package.json +111 -0
  3257. data/test/dummy/node_modules/watchify/readme.markdown +226 -0
  3258. data/test/dummy/node_modules/watchify/test/api.js +44 -0
  3259. data/test/dummy/node_modules/watchify/test/api_brfs.js +53 -0
  3260. data/test/dummy/node_modules/watchify/test/api_ignore_watch.js +60 -0
  3261. data/test/dummy/node_modules/watchify/test/api_ignore_watch_default.js +60 -0
  3262. data/test/dummy/node_modules/watchify/test/api_ignore_watch_multiple.js +60 -0
  3263. data/test/dummy/node_modules/watchify/test/api_implicit_cache.js +44 -0
  3264. data/test/dummy/node_modules/watchify/test/bin.js +52 -0
  3265. data/test/dummy/node_modules/watchify/test/bin_brfs.js +62 -0
  3266. data/test/dummy/node_modules/watchify/test/bin_ignore_watch.js +71 -0
  3267. data/test/dummy/node_modules/watchify/test/bin_ignore_watch_default.js +71 -0
  3268. data/test/dummy/node_modules/watchify/test/bin_ignore_watch_multiple.js +72 -0
  3269. data/test/dummy/node_modules/watchify/test/bin_pipe.js +56 -0
  3270. data/test/dummy/node_modules/watchify/test/bin_plugins_pipelining_multiple_errors.js +56 -0
  3271. data/test/dummy/node_modules/watchify/test/bin_standalone.js +52 -0
  3272. data/test/dummy/node_modules/watchify/test/errors.js +56 -0
  3273. data/test/dummy/node_modules/watchify/test/errors_transform.js +83 -0
  3274. data/test/dummy/node_modules/watchify/test/expose.js +72 -0
  3275. data/test/dummy/node_modules/watchify/test/many.js +101 -0
  3276. data/test/dummy/node_modules/watchify/test/many_immediate.js +99 -0
  3277. data/test/dummy/node_modules/watchify/test/zzz.js +10 -0
  3278. data/test/dummy/node_modules/wrappy/LICENSE +15 -0
  3279. data/test/dummy/node_modules/wrappy/README.md +36 -0
  3280. data/test/dummy/node_modules/wrappy/package.json +78 -0
  3281. data/test/dummy/node_modules/wrappy/test/basic.js +51 -0
  3282. data/test/dummy/node_modules/wrappy/wrappy.js +33 -0
  3283. data/test/dummy/node_modules/xtend/LICENCE +19 -0
  3284. data/test/dummy/node_modules/xtend/Makefile +4 -0
  3285. data/test/dummy/node_modules/xtend/README.md +32 -0
  3286. data/test/dummy/node_modules/xtend/immutable.js +19 -0
  3287. data/test/dummy/node_modules/xtend/mutable.js +17 -0
  3288. data/test/dummy/node_modules/xtend/package.json +115 -0
  3289. data/test/dummy/node_modules/xtend/test.js +83 -0
  3290. data/test/dummy/package.json +16 -0
  3291. data/test/dummy/public/404.html +67 -0
  3292. data/test/dummy/public/422.html +67 -0
  3293. data/test/dummy/public/500.html +66 -0
  3294. data/test/dummy/public/favicon.ico +0 -0
  3295. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-o/-oGwsmoED7FhsnbNDNwcTTteQvlbz-1VlFE5r5SckBA.cache +1 -0
  3296. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xzgg23D0Fjd2URLPZsw-cz0moJJ_UTK91raBLnaTms.cache +0 -0
  3297. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0T/0T1MHI5D1uU0usyPDGnBbeYxhVQNi7xcOm_dcpVdDz0.cache +1 -0
  3298. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1C/1CTNbWEzOEeKLAM04HKSC0frL8DB--8V-u1Z1dwubis.cache +2 -0
  3299. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1G/1GMeThvFGAPkgFRVLS0A0aCcYeUjeQ812CErmw29lhc.cache +1 -0
  3300. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1W/1W_jC2izQTZB80Jz9cqI-ZA8Q5404rKo0rDiXT6pyr0.cache +1 -0
  3301. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1y/1yWAWPbnk7v_KFEcnQXR24rexLnBN3TKJmcHz9cUgtE.cache +0 -0
  3302. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1y/1ytTRlj_doPKSf37QpkQoaBPnCjViBRjQzn-K33N0RE.cache +1 -0
  3303. data/test/dummy/tmp/cache/assets/sprockets/v3.0/28/28AQEUK_z51aMqaQktotLgk1EJl_J0osXkBQG8nv734.cache +1 -0
  3304. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2F/2FXAncroIYCxLSOYXSLp-mhRrd92wPdqrAAajO_muW4.cache +1 -0
  3305. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2M/2M70sHX7UHiSdlFV1IwsyvgpkNutcGgqb8xSspO2Xwg.cache +0 -0
  3306. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2U/2UdeWj23mfTMDgZN83Pxds4ZJjkVyby2tEyidUxlcpg.cache +0 -0
  3307. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2q/2qTH4ROw7lpwRUwiQBnu9WRdMbgiDHkWr5QGBS4MZBE.cache +1 -0
  3308. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3f/3fIP3rRWCmy8nku15janoFvYjpSH-gxQh2kr0wJRfcU.cache +1 -0
  3309. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3h/3hNMHCANib7hGcZimVtw9fqlKba7j4zP91_IEFEUdno.cache +2 -0
  3310. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4I/4IHPxfLLqnhY36gdRmtSFkWYiawbn4uMxNPLP3xnQe8.cache +1 -0
  3311. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4e/4eTw2V8GjmBr-1wvLE9Zzh3XFtQI5hDMD9qX5QALOBY.cache +1 -0
  3312. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4o/4ombhIKJPpLS3j9K3oY7hKJ49pw_71dxQ8LgJNNgIFQ.cache +1 -0
  3313. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  3314. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5le4DculpQJ2ycky3PMljl8ShEfd6Mx3OsZ6vZsgIto.cache +0 -0
  3315. data/test/dummy/tmp/cache/assets/sprockets/v3.0/62/62Kg2wvzJXu-q0ymvrItPrB9Q--CLLAC6SEjd6g74lc.cache +1 -0
  3316. data/test/dummy/tmp/cache/assets/sprockets/v3.0/67/677WI5Mqbdg3dwlTwugSiYu8x3M4mHBlgLKvsHP2Z7I.cache +0 -0
  3317. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6A/6AbdujJ_7IBtGrNb7o4tRAD4XhW7AUddARigLQlBaQw.cache +1 -0
  3318. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Q/6Q-4g6-L2KWSZ3bmx0tggt1KhIwmZxHeJrchrwYg4AQ.cache +1 -0
  3319. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6v/6vZuEXThthctuw4_MrmwizfH1STATSfPDpm-h1hDHwM.cache +0 -0
  3320. data/test/dummy/tmp/cache/assets/sprockets/v3.0/70/707QxGBmtwkz0ax6G2zWTSk5KNbpkAuS5q-Jb9RC4aU.cache +1 -0
  3321. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7H/7HRIgBLpey9TZ4qe9CY89lER8HNhVB0cjlz5eZdu9CQ.cache +1 -0
  3322. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8J/8J0eNW8CIrQoMKXG9-CGEXyRUn6Gbre-KBS_kAIvS-U.cache +1 -0
  3323. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8N/8Nv07i91aaxvqlxXISKaZoBqHvcLCJBF8NUwd2VTdJk.cache +1 -0
  3324. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B2/B2qFoFRh8kpMTC8gkv5N13NHJ3L9NV-0_vl3sC5-x_w.cache +1 -0
  3325. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BC/BCdR-E9OXnj9lwDHAlKUFySrv7YOFy_-_xXG1pOLUQ8.cache +0 -0
  3326. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BM/BMvp0d8hNLlz9IB2axdS80D7Di4-gaTIVN3mpKWdNQw.cache +1 -0
  3327. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BR/BRII8jYm88YaY_j67VxirVrD6yvF28TVkZbtMUhLGCg.cache +3 -0
  3328. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BZ/BZNOigM6frhiGdxZuB2w2S6E4OZMui6dyQyHG6lvrsY.cache +0 -0
  3329. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bf/BfVd0Db3otlRlNy91JxVcKkQWwyHrO5e4KiMva5Fle8.cache +0 -0
  3330. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C4/C4yiibIGgaeZAVb7MUEIZ7ReUuxiVhpaz3fjUixKPZ4.cache +0 -0
  3331. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CY/CYrZBmHdeD3suhCFCPZQ4mcIyLXhwZ_RjaO18hqt8RA.cache +1 -0
  3332. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cc/CcbURITLxEFw-Hj0MeKBtseGpehBoxrGuZsVC2aqvsI.cache +1 -0
  3333. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cg/CgCEnHXAmzJdqvpprhFloxCMIpf3GIbHBw8x7AP5QmA.cache +1 -0
  3334. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ch/Ch2bQFHkYziI9Erdkuj8uoPJyw0W2aA5prtYAqlccww.cache +1 -0
  3335. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +0 -0
  3336. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dd/Dd5SNmaitiYv1i85eR4fMMn8U4eDZW8dLAdjlUoveVk.cache +1 -0
  3337. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E3/E3PGV-EHbdgytztS6aIodaUxIjBKEozvhb7OWpyTHj0.cache +0 -0
  3338. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E4/E4Qr2ISm83HFsIQnBi32nNUnOha1zu8GzgRdsENtN-E.cache +0 -0
  3339. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ED/EDMmqav5qwaX53k7p9wJnePjeZ7b_i5xHMAx8E2XoCU.cache +0 -0
  3340. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ED/ed-CxD158cujF_2SfTt-qNG6mXxO-lg5Bz8R3S4i3CM.cache +0 -0
  3341. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EE/EEC4W-d67sYYaXRuN_CPOlQPcQZh0lRDZ8v0eZ2HB5k.cache +1 -0
  3342. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ei/Ei9RwfAHDDbaTDnFp5UR9Wx3IaBLhEsJdAvcbxkuaMA.cache +2 -0
  3343. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/Erm-aKaNgB0tcsTKg0KvSuQoWAWxPBS36qtg8MwhLcQ.cache +0 -0
  3344. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/eR2wQCBaaOa9Bd18JSY0d7SaptjuAm7rC_GHxMvBR38.cache +0 -0
  3345. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FB/FBJvMbKJWr4fqIEI--QPdkwiP9cGgxCOcYuAAF0WlDM.cache +0 -0
  3346. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FH/FHsrfVlSPP0eySEDeUHcCzH7jK3zJy95BS7BXdMazuQ.cache +1 -0
  3347. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FX/FX-5pUWfGgoJd2h4XnifVCYWwG5jmENGfUV1cNMnQlQ.cache +1 -0
  3348. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G1/G1LupDraM99hvtHYG7WE3Yx3Dq4soCOCjrYateZ5rkw.cache +1 -0
  3349. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G3/G3IyzwSTT-PDJgNJQlycSbleR64OEGNaWCjEu94Mge4.cache +1 -0
  3350. data/test/dummy/tmp/cache/assets/sprockets/v3.0/GO/GOGZJvK3DfVJrEpCxhQ8JKUqdX5MwyfUeXTghwiqgd4.cache +2 -0
  3351. data/test/dummy/tmp/cache/assets/sprockets/v3.0/GR/GRl6HEX8FOaFQe4f85N5-eyzvpMZyzDm38oAi2PAftw.cache +1 -0
  3352. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G_/G_xzVJE17FIAM5r-Z3Jm7ijeKBX6sxzivkxGN8WUaFE.cache +0 -0
  3353. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gp/GpwGZSYjuSCgh4VO8ZK1IqUsPj1xZfEaDEARe4yKJYs.cache +1 -0
  3354. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H0/H0aw7dFi66LCe_sp6w6n2QLOeVk8YjkOADP2YoQ-RGw.cache +0 -0
  3355. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ii/Ii27XzcU3aygpprdhW83NjUzo1TTEoptuqipf5m3nj0.cache +0 -0
  3356. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JD/JDFa4nA6PyC0HzQ0m8DCZoLc_jA255lfwRhMVWeKSpc.cache +1 -0
  3357. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JN/JNWCNiollNBbP6M-3ahd4oqOZVJ6ASPH30lju91Ab9E.cache +0 -0
  3358. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JN/jNOmcfOJ3Aajda3krgNu-QaFM6roZYLoE6CVQT1Elm4.cache +0 -0
  3359. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K3/K32DeLXUd7pGb8zNsSm-Q1t87CldA2zm05hDPD35CCg.cache +1 -0
  3360. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K9/K9ZheMi0hi4DNLzmDMRnv9A_lOVz33kNImc16Now42o.cache +1 -0
  3361. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KO/KOegh_TQB4Tzdd3v-xqH93vGa3V74zHzwV4AVWb29t8.cache +1 -0
  3362. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kg/Kg-x5n8i2vJFjIlJjJOlCm4Q25v-4Od0h1YEdUhdGrw.cache +3 -0
  3363. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kr/KrkjbBFE0mqAZzcgFLIp0xZfLvyp0S33jjbAgImdEbA.cache +1 -0
  3364. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kr/krW6duuEvorLAsp1iSId4S6rAWNliU5R0SCgyWA6Hlg.cache +1 -0
  3365. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LR/LRl-827CKV2LMeOgp-1cCdNPsuTQeqY2d4zIcmaTbgc.cache +1 -0
  3366. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lg/Lgy-n6ZX0Jrs2S9jQvGXOcIkhg1wIQvADBBl7nt4IUM.cache +1 -0
  3367. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Md/Md4DjPjZ5AsWma7rKT6g_5PwT6KNvjqCI83wyWdivAY.cache +1 -0
  3368. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mn/MnjTyMnZ8hq48sK3kqeEV5HntHOzj5l9byZntXcymv0.cache +0 -0
  3369. data/test/dummy/tmp/cache/assets/sprockets/v3.0/My/My-gJn8h5jXtY1Apc8MKm2-HQyJ9bYzPVA2SsYFMlk4.cache +2 -0
  3370. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NK/NKF9odlZM3nINhAjq9aZ9t_Gaya8a0NAV7Lf9BLUWOI.cache +1 -0
  3371. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NV/NVTgol3wufMoq9DekcTmOC0kAlRjJEVjMje8Ad9TzKs.cache +0 -0
  3372. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NZ/NZWHq8mjbWIQjWtIS5ssE8XxECO0WWbxy77K_f71yJ0.cache +0 -0
  3373. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nn/NnUCa7jNYx9HCmEB7E7WPWT00DwaM4IYICy1Ju1jjcs.cache +1 -0
  3374. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OA/OApH3PYH-ibNr0BhsNDyI5GMepjx7m6VRi-AIm-mx_U.cache +1 -0
  3375. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  3376. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Or/Ori7DoN_oUPJhv5ILW1Df8hnTZ16MmxZ5lauVX5QGBQ.cache +3 -0
  3377. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P-/P-jLPpVIFLWWoJ1LwGDV0h1kE0-fMYmRBMX1JWNxsj0.cache +1 -0
  3378. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PV/PVtQYPUcj0hhzP900u1AdXBY7CneDNs1j_LFaSMbDf8.cache +1 -0
  3379. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PZ/PZobPcXCbpM9MJ8WnUyBrnPWkCTMPJuEKlePnEXm0v0.cache +3 -0
  3380. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pb/PbP8T5HsLnpAYmWRIsHnOuel85RJ5dAapBz1E7wyFPQ.cache +1 -0
  3381. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Py/PyAATStNO87RSWlrulPb8bkE1ZyCV2Klj8dsF3Lj-qw.cache +1 -0
  3382. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q6/Q63H6CMNHL_FTlto__Gx5ui5qR6LeEuMgri6tH46MxU.cache +0 -0
  3383. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QC/QCSYs1T2oBVcQgCi-uHpbQV4djrEXrWXJqlbrAsJ0U8.cache +1 -0
  3384. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QF/QFqhjGMviIEKNIXi5XNCW7bjzsQyZj-eC3aQXs86gAw.cache +0 -0
  3385. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QQ/QQiJnGn6sN0rLBn5t9fYVpx2vyEuz7zyyaw7VNeD9VQ.cache +1 -0
  3386. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qz/Qz_mGtVrxTgxlKmsfyA9PdtIyGXD8PTNm1x4qDGFhAk.cache +1 -0
  3387. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RW/RWJlNRqVXFEKiVu2YskLVphB4BcvQc6b1TJgp7i9JqQ.cache +1 -0
  3388. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R_/R_cJA2DObH51sEin_bJSM8zoSIQPfaPcrq1slMF0TMc.cache +0 -0
  3389. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rm/RmzpcWhuAgqgWXDxHU2T0_ic-a8qNcu4Tyc2Zn7w9Xg.cache +1 -0
  3390. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ry/RylJg0JPQJXRr4twCMefa5PFOfdETIva1_3ZmUgOsEA.cache +3 -0
  3391. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sm/SmiulCacWOpHZ8xOwhiJduBGopLZ2vVY5V5m5EPcksQ.cache +1 -0
  3392. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TU/TUfbVHVTUUpiD3hYtN6S1Uw81rl7YUXSHuwh9-9PJ_8.cache +1 -0
  3393. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tp/Tpd6vyyM1vD5-9Ce-ePSh24_P4yLkUkC55bMsG5xjIQ.cache +1 -0
  3394. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tz/TzB2Z-l3FHDCsSTHhxBZcacEH2JV38DeeJDDNCXMgzg.cache +2 -0
  3395. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UA/UA-qkOf3H5oWyJsQi40wLTNgjFtFyv8U0nFDkKwkico.cache +1 -0
  3396. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UM/UMKVtYUkwZ27qFoNKuod6Y9I3rvdKhI-UERSCwSBZSI.cache +1 -0
  3397. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vj/VjaurJ8UtnIDtVWJhegY2Eohw75HQ00nl-E4hdrtDtg.cache +2 -0
  3398. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ww/WwUhCL9cc-VXW-owoqL7uGiiIxPOl3PxtZ3-VOOtHPU.cache +0 -0
  3399. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xh/XhQfyjbVraCPRWoGUpzQ67BacxPZrgdjezAVUIbZyiE.cache +0 -0
  3400. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YL/YL16HsDS7EotD-QHclLmmDdwVua5_8stL4UHL_S8Edw.cache +0 -0
  3401. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zs/Zs90wzhgMjvsuhGd93f0bARG16x5iHaN2P7Ri6gYDxI.cache +0 -0
  3402. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvxoBbzc5ML9c2gNOUHuo_Yh_XCVDD6hdlQC4EOK08c.cache +2 -0
  3403. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_C/_CBvBsem1WftcNDXywJQTvacRKqSSCNaeLjxtMszXTw.cache +1 -0
  3404. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_T/_TWKvK8ZgHNO0wyZimjRvJujWlXeE3l_SzNv9h0ZS64.cache +1 -0
  3405. data/test/dummy/tmp/cache/assets/sprockets/v3.0/__/__gV64dNSJLa3_ku1f4nBdLvl2wdtUke7hQ-_3WZ3FA.cache +3 -0
  3406. data/test/dummy/tmp/cache/assets/sprockets/v3.0/a5/a5ifa3BpZrLxpQ1VOJ7XXyRt00NcM2r3viSERmC5TzU.cache +1 -0
  3407. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aF/aFASUWtaGG_6pgjH7mM2-0b57x1NJ5xVnuiCbkg-y4U.cache +1 -0
  3408. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ai/aicXEDbiX-HblesG9oy7Em8kya_wKzov8E6V3B5i5yE.cache +1 -0
  3409. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bH/bHfdlHn48CnO-0gvgn_2418PvVkMCtYJh9ePTAKIHW4.cache +3 -0
  3410. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bU/bU6D4LRdFumZVMG5Dh25kryxNiQ_qUMzChPQnwkR6gc.cache +1 -0
  3411. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cN/cNP8A30uBN8UbbwKzaAl_nAyT2uueRoHuqk8qSRelag.cache +0 -0
  3412. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dF/dF0Kzd__Y7Pj3kIjFV6j0_JRaAPoxftwwxMhF7mHfEM.cache +1 -0
  3413. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/E094nc9b8pOh-uQ_w7-aIyKNwl0I4absnCnBkjRWhCg.cache +2 -0
  3414. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/E0sRsnXfHcO2jE2-fAOLdcE9L9rr90hUK4NNABb9yns.cache +1 -0
  3415. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/e0kERao1gQwBqMimluxGtYwm3ZLM0chstZnPIJa1yIg.cache +0 -0
  3416. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ey/eyCOrasesbHgtHvQ_0aH5iIM4O2SMWXWRTgOarUD2-U.cache +0 -0
  3417. data/test/dummy/tmp/cache/assets/sprockets/v3.0/f9/f9UxqJv7R-OWdlkaDwJnhUyXOZs360QA5LZofXD1k_4.cache +1 -0
  3418. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fj/fj8nNZVvl_-4vFqwHw-1R0qnYhj5Wrl8CF5xQ3XLlTM.cache +1 -0
  3419. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h1/h1n1wPuR4vmcG_LWwZw1JFFj8pB_FO8ukitYCGYaNwA.cache +1 -0
  3420. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hr/hrT3s4KsN3XGw5KK1RPU2OM3SFbQm0_3-eG-H6Rw8PQ.cache +2 -0
  3421. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hs/hsFeX5jhqtYjKoACvbKZySbi31pV34OAYeIoNkwJnmQ.cache +0 -0
  3422. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kv/kvgE_VMBnJOTjQR2lW5JaEuyi5nq4zZh5sNo91aZgKo.cache +0 -0
  3423. data/test/dummy/tmp/cache/assets/sprockets/v3.0/l5/l5Xze7AlkL4jHn8VuPP9quYDvGn6zu6icAJ4Y5JoUvk.cache +1 -0
  3424. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lq/lqZ_GbiNP9bKepOfzlixV1DjyVbLK3gJ-vpr4auIo1s.cache +0 -0
  3425. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mB/mBzbEBpyOh63AWbplaLwXqpZrEyCNukOe_mrdgrRYv8.cache +1 -0
  3426. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mP/mPAo62vdIcJqthSbWd7uu9Lhc6iw3Pj6DW4FJVW9DTg.cache +1 -0
  3427. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mz/mzTl0oStlLeu8M8mKD2Z4AFiODBhxuhhEwmvkQMjJ08.cache +1 -0
  3428. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nO/nOt4q6V1_87ssVAW-m8C69Eh94D1KUAB9Y2wzugjLiU.cache +0 -0
  3429. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ns/nskEglj51iHgLa4OP6X8J2MFTFYQYbfd_q2XtE4lEl8.cache +1 -0
  3430. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oG/oGWcd1-UwcQ_o1WhfMgPOS2LSHHJpsdM47HAzzW6C1g.cache +2 -0
  3431. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oH/oH-xf1jGG4CDfcKXEYhXcVZFh0jVKrRUBi8FHBmvvt8.cache +1 -0
  3432. data/test/dummy/tmp/cache/assets/sprockets/v3.0/op/opx0JXoesV3avTZAsu7AOHd2DYaFLvCdf1JsrIV1wPA.cache +1 -0
  3433. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ox/oxjmRgM9onS8LyF5LBuUNfBKubL6B5YoDfFR0gOr28U.cache +3 -0
  3434. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pF/pFqWuHO8WYdWAvyfmTzV3s2UZ0n5iKWo4ApZkKN7edA.cache +1 -0
  3435. data/test/dummy/tmp/cache/assets/sprockets/v3.0/q5/q5pnTDF_y3yRL2BGVHTvyj0YOqoF0QVDRNiV285RCY4.cache +0 -0
  3436. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qI/qIyi5uni1Pz200-4stFdM3l8cEgrNsZWNLzXDLCl9eQ.cache +3 -0
  3437. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qb/QBkdwyB7zjwdZUj9sbBIOXVY04LbXdJlV8TBu3B-Olc.cache +1 -0
  3438. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qb/qbq8JkwipRuk5VXl0qoAAf47gVCBrrG88zqsfMlukaM.cache +0 -0
  3439. data/test/dummy/tmp/cache/assets/sprockets/v3.0/r4/r4NzIjLpPuYA_rdfKUv96ek1tSfqwCLgf1gYq7NZsEI.cache +0 -0
  3440. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rR/rR10ov9tKHLBylV4izJo6YuyoP0z5Q5NkI-Dm7VqsEY.cache +1 -0
  3441. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sB/Sb1lx6nwCyXjhouZu0dyxA_1G8Eycg7mY_Pb9oUi_0I.cache +0 -0
  3442. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sB/sBvb--C3JlNzvEBHStXpTyZbFGPXSGCYNuHgy0-ykvU.cache +1 -0
  3443. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sR/sRQIZqHpZKVOoPCOxxFzLe5f2_utSzB4s7Hfpm3dcRg.cache +1 -0
  3444. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjvi7CnvzGlBxEMhFCvIqksxGk63hjabDLz_BY9_OdA.cache +1 -0
  3445. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t4/t4fcagjEnZvr4FqbN8NWQ0fN54Xql4w68LhX5UkbsG8.cache +1 -0
  3446. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t5/t5OykmAd3cRqor0IR-ireyJfVAkxtiH5sK7xd6dNMAA.cache +1 -0
  3447. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/UWZGINKb14yUU5rrjm_s0cCCwrTIbkcklU3U28UZmSw.cache +1 -0
  3448. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/uWvI_8xvoF_n11od9qHySuJONzNnAhObsFvQpVwo-qM.cache +0 -0
  3449. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ue/ue7R-WZnj5LK5it5v8BtfFZoTuNIhLm7blvmf-rl__M.cache +0 -0
  3450. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v2/v2PGvxFKaF5jLYBgjCWTo5cXupjO4cdfal1HMK0bPU0.cache +0 -0
  3451. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vIJiFzpvwlUEdD9m1ICA8u4LqA2tFHtNSAQBWBfElTE.cache +1 -0
  3452. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vIVnpzXv-OjJZQRIxrXL3XM-KL8scQB8y1wlOCZNaXE.cache +1 -0
  3453. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vidEGcw2IvnQuDUCJWa-9MG87z1zA_30L9NzzVZhPWk.cache +1 -0
  3454. data/test/dummy/tmp/cache/assets/sprockets/v3.0/va/vaoKLTYGLHne0QKH4QJZjtUSYTKWMpIT83VgVeV1_fs.cache +0 -0
  3455. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vp/vpXStc2VTFJWy6rAuA9lbTLXEz2YxqsgLtx7Kg1Qe14.cache +2 -0
  3456. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wF/wFVGkMJ0wGwAwSBHDTd22b3R6zCsvpOHXfVDdNpOSxw.cache +0 -0
  3457. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wj/wj2pEMeqS73098tu8FGXM5qWkQ3qxdrPxeOHYypions.cache +1 -0
  3458. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wq/wqi8hbHyhhjFDnZiZzzAvpzJxSj2b0wsnPLp9CTFgGc.cache +1 -0
  3459. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIG5pl58VKvsIX8ryyQh1FowgxdEAGypI0klYMiVJeo.cache +0 -0
  3460. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yG/yGgJE8XGt2975Q1fHG9TfIuWv40au3QRmVfob7P1qkU.cache +1 -0
  3461. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yO/yOeZoI5mixFBK-adbMt2isNXxjM-0iGPuMv1owgaUdI.cache +0 -0
  3462. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yS/ySNeoxoSHQZ4H0K7Bf9gQ1d20t8NIi30To1s9OL-haA.cache +1 -0
  3463. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zI/zIbGJnyvo82IdqN3qeDlUhCkOWl-pQrNMkZNIdhRlkc.cache +1 -0
  3464. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zM/zMmNV8qLYtC5Kc4wv-ahWM_JnjWAUPw6eFv37DtOtB0.cache +1 -0
  3465. data/test/dummy/tmp/cache/brwy_rails/application.bundle.js +7 -0
  3466. data/test/test_helper.rb +20 -0
  3467. metadata +6994 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///source-map.min.js","webpack:///webpack/bootstrap a7d787c028005295f8d2","webpack:///./source-map.js","webpack:///./lib/source-map-generator.js","webpack:///./lib/base64-vlq.js","webpack:///./lib/base64.js","webpack:///./lib/util.js","webpack:///./lib/array-set.js","webpack:///./lib/mapping-list.js","webpack:///./lib/source-map-consumer.js","webpack:///./lib/binary-search.js","webpack:///./lib/quick-sort.js","webpack:///./lib/source-node.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","SourceMapGenerator","SourceMapConsumer","SourceNode","aArgs","_file","util","getArg","_sourceRoot","_skipValidation","_sources","ArraySet","_names","_mappings","MappingList","_sourcesContents","base64VLQ","prototype","_version","fromSourceMap","aSourceMapConsumer","sourceRoot","generator","file","eachMapping","mapping","newMapping","generated","line","generatedLine","column","generatedColumn","source","relative","original","originalLine","originalColumn","name","addMapping","sources","forEach","sourceFile","content","sourceContentFor","setSourceContent","_validateMapping","has","add","aSourceFile","aSourceContent","toSetString","Object","keys","length","applySourceMap","aSourceMapPath","Error","newSources","newNames","unsortedForEach","originalPositionFor","join","aGenerated","aOriginal","aSource","aName","JSON","stringify","_serializeMappings","nameIdx","sourceIdx","previousGeneratedColumn","previousGeneratedLine","previousOriginalColumn","previousOriginalLine","previousName","previousSource","result","mappings","toArray","i","len","compareByGeneratedPositionsInflated","encode","indexOf","_generateSourcesContent","aSources","aSourceRoot","map","key","hasOwnProperty","toJSON","version","names","sourcesContent","toString","toVLQSigned","aValue","fromVLQSigned","isNegative","shifted","base64","VLQ_BASE_SHIFT","VLQ_BASE","VLQ_BASE_MASK","VLQ_CONTINUATION_BIT","digit","encoded","vlq","decode","aStr","aIndex","aOutParam","continuation","strLen","shift","charCodeAt","charAt","value","rest","intToCharMap","split","number","TypeError","charCode","bigA","bigZ","littleA","littleZ","zero","nine","plus","slash","littleOffset","numberOffset","aDefaultValue","arguments","urlParse","aUrl","match","urlRegexp","scheme","auth","host","port","path","urlGenerate","aParsedUrl","url","normalize","aPath","part","isAbsolute","parts","up","splice","aRoot","aPathUrl","aRootUrl","dataUrlRegexp","joined","replace","level","index","lastIndexOf","slice","Array","substr","fromSetString","compareByOriginalPositions","mappingA","mappingB","onlyCompareOriginal","cmp","compareByGeneratedPositionsDeflated","onlyCompareGenerated","strcmp","aStr1","aStr2","_array","_set","fromArray","aArray","aAllowDuplicates","set","size","getOwnPropertyNames","sStr","isDuplicate","idx","push","at","aIdx","generatedPositionAfter","lineA","lineB","columnA","columnB","_sorted","_last","aCallback","aThisArg","aMapping","sort","aSourceMap","sourceMap","parse","sections","IndexedSourceMapConsumer","BasicSourceMapConsumer","Mapping","lastOffset","_sections","s","offset","offsetLine","offsetColumn","generatedOffset","consumer","binarySearch","quickSort","__generatedMappings","defineProperty","get","_parseMappings","__originalMappings","_charIsMappingSeparator","GENERATED_ORDER","ORIGINAL_ORDER","GREATEST_LOWER_BOUND","LEAST_UPPER_BOUND","aContext","aOrder","context","order","_generatedMappings","_originalMappings","allGeneratedPositionsFor","needle","_findMapping","undefined","lastColumn","create","smc","generatedMappings","destGeneratedMappings","destOriginalMappings","srcMapping","destMapping","str","segment","end","cachedSegments","temp","originalMappings","aNeedle","aMappings","aLineName","aColumnName","aComparator","aBias","search","computeColumnSpans","nextMapping","lastGeneratedColumn","Infinity","hasContentsOfAllSources","some","sc","nullOnMissing","fileUriAbsPath","generatedPositionFor","constructor","j","sectionIndex","section","bias","every","generatedPosition","ret","sectionMappings","adjustedMapping","recursiveSearch","aLow","aHigh","aHaystack","aCompare","mid","Math","floor","swap","ary","x","y","randomIntInRange","low","high","round","random","doQuickSort","comparator","r","pivotIndex","pivot","q","aLine","aColumn","aChunks","children","sourceContents","isSourceNode","REGEX_NEWLINE","NEWLINE_CODE","fromStringWithSourceMap","aGeneratedCode","aRelativePath","addMappingWithCode","code","node","remainingLines","shiftNextLine","lineContents","newLine","lastGeneratedLine","lastMapping","nextLine","aChunk","isArray","chunk","prepend","unshift","walk","aFn","aSep","newChildren","replaceRight","aPattern","aReplacement","lastChild","walkSourceContents","toStringWithSourceMap","sourceMappingActive","lastOriginalSource","lastOriginalLine","lastOriginalColumn","lastOriginalName","sourceContent"],"mappings":"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","file":"source-map.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"sourceMap\"] = factory();\n\telse\n\t\troot[\"sourceMap\"] = factory();\n})(this, function() {\nreturn \n\n\n/** WEBPACK FOOTER **\n ** webpack/universalModuleDefinition\n **/","(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"sourceMap\"] = factory();\n\telse\n\t\troot[\"sourceMap\"] = factory();\n})(this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/*\n\t * Copyright 2009-2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE.txt or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\texports.SourceMapGenerator = __webpack_require__(1).SourceMapGenerator;\n\texports.SourceMapConsumer = __webpack_require__(7).SourceMapConsumer;\n\texports.SourceNode = __webpack_require__(10).SourceNode;\n\n\n/***/ },\n/* 1 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var base64VLQ = __webpack_require__(2);\n\t var util = __webpack_require__(4);\n\t var ArraySet = __webpack_require__(5).ArraySet;\n\t var MappingList = __webpack_require__(6).MappingList;\n\t\n\t /**\n\t * An instance of the SourceMapGenerator represents a source map which is\n\t * being built incrementally. You may pass an object with the following\n\t * properties:\n\t *\n\t * - file: The filename of the generated source.\n\t * - sourceRoot: A root for all relative URLs in this source map.\n\t */\n\t function SourceMapGenerator(aArgs) {\n\t if (!aArgs) {\n\t aArgs = {};\n\t }\n\t this._file = util.getArg(aArgs, 'file', null);\n\t this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);\n\t this._skipValidation = util.getArg(aArgs, 'skipValidation', false);\n\t this._sources = new ArraySet();\n\t this._names = new ArraySet();\n\t this._mappings = new MappingList();\n\t this._sourcesContents = null;\n\t }\n\t\n\t SourceMapGenerator.prototype._version = 3;\n\t\n\t /**\n\t * Creates a new SourceMapGenerator based on a SourceMapConsumer\n\t *\n\t * @param aSourceMapConsumer The SourceMap.\n\t */\n\t SourceMapGenerator.fromSourceMap =\n\t function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) {\n\t var sourceRoot = aSourceMapConsumer.sourceRoot;\n\t var generator = new SourceMapGenerator({\n\t file: aSourceMapConsumer.file,\n\t sourceRoot: sourceRoot\n\t });\n\t aSourceMapConsumer.eachMapping(function (mapping) {\n\t var newMapping = {\n\t generated: {\n\t line: mapping.generatedLine,\n\t column: mapping.generatedColumn\n\t }\n\t };\n\t\n\t if (mapping.source != null) {\n\t newMapping.source = mapping.source;\n\t if (sourceRoot != null) {\n\t newMapping.source = util.relative(sourceRoot, newMapping.source);\n\t }\n\t\n\t newMapping.original = {\n\t line: mapping.originalLine,\n\t column: mapping.originalColumn\n\t };\n\t\n\t if (mapping.name != null) {\n\t newMapping.name = mapping.name;\n\t }\n\t }\n\t\n\t generator.addMapping(newMapping);\n\t });\n\t aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t if (content != null) {\n\t generator.setSourceContent(sourceFile, content);\n\t }\n\t });\n\t return generator;\n\t };\n\t\n\t /**\n\t * Add a single mapping from original source line and column to the generated\n\t * source's line and column for this source map being created. The mapping\n\t * object should have the following properties:\n\t *\n\t * - generated: An object with the generated line and column positions.\n\t * - original: An object with the original line and column positions.\n\t * - source: The original source file (relative to the sourceRoot).\n\t * - name: An optional original token name for this mapping.\n\t */\n\t SourceMapGenerator.prototype.addMapping =\n\t function SourceMapGenerator_addMapping(aArgs) {\n\t var generated = util.getArg(aArgs, 'generated');\n\t var original = util.getArg(aArgs, 'original', null);\n\t var source = util.getArg(aArgs, 'source', null);\n\t var name = util.getArg(aArgs, 'name', null);\n\t\n\t if (!this._skipValidation) {\n\t this._validateMapping(generated, original, source, name);\n\t }\n\t\n\t if (source != null && !this._sources.has(source)) {\n\t this._sources.add(source);\n\t }\n\t\n\t if (name != null && !this._names.has(name)) {\n\t this._names.add(name);\n\t }\n\t\n\t this._mappings.add({\n\t generatedLine: generated.line,\n\t generatedColumn: generated.column,\n\t originalLine: original != null && original.line,\n\t originalColumn: original != null && original.column,\n\t source: source,\n\t name: name\n\t });\n\t };\n\t\n\t /**\n\t * Set the source content for a source file.\n\t */\n\t SourceMapGenerator.prototype.setSourceContent =\n\t function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {\n\t var source = aSourceFile;\n\t if (this._sourceRoot != null) {\n\t source = util.relative(this._sourceRoot, source);\n\t }\n\t\n\t if (aSourceContent != null) {\n\t // Add the source content to the _sourcesContents map.\n\t // Create a new _sourcesContents map if the property is null.\n\t if (!this._sourcesContents) {\n\t this._sourcesContents = {};\n\t }\n\t this._sourcesContents[util.toSetString(source)] = aSourceContent;\n\t } else if (this._sourcesContents) {\n\t // Remove the source file from the _sourcesContents map.\n\t // If the _sourcesContents map is empty, set the property to null.\n\t delete this._sourcesContents[util.toSetString(source)];\n\t if (Object.keys(this._sourcesContents).length === 0) {\n\t this._sourcesContents = null;\n\t }\n\t }\n\t };\n\t\n\t /**\n\t * Applies the mappings of a sub-source-map for a specific source file to the\n\t * source map being generated. Each mapping to the supplied source file is\n\t * rewritten using the supplied source map. Note: The resolution for the\n\t * resulting mappings is the minimium of this map and the supplied map.\n\t *\n\t * @param aSourceMapConsumer The source map to be applied.\n\t * @param aSourceFile Optional. The filename of the source file.\n\t * If omitted, SourceMapConsumer's file property will be used.\n\t * @param aSourceMapPath Optional. The dirname of the path to the source map\n\t * to be applied. If relative, it is relative to the SourceMapConsumer.\n\t * This parameter is needed when the two source maps aren't in the same\n\t * directory, and the source map to be applied contains relative source\n\t * paths. If so, those relative source paths need to be rewritten\n\t * relative to the SourceMapGenerator.\n\t */\n\t SourceMapGenerator.prototype.applySourceMap =\n\t function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {\n\t var sourceFile = aSourceFile;\n\t // If aSourceFile is omitted, we will use the file property of the SourceMap\n\t if (aSourceFile == null) {\n\t if (aSourceMapConsumer.file == null) {\n\t throw new Error(\n\t 'SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' +\n\t 'or the source map\\'s \"file\" property. Both were omitted.'\n\t );\n\t }\n\t sourceFile = aSourceMapConsumer.file;\n\t }\n\t var sourceRoot = this._sourceRoot;\n\t // Make \"sourceFile\" relative if an absolute Url is passed.\n\t if (sourceRoot != null) {\n\t sourceFile = util.relative(sourceRoot, sourceFile);\n\t }\n\t // Applying the SourceMap can add and remove items from the sources and\n\t // the names array.\n\t var newSources = new ArraySet();\n\t var newNames = new ArraySet();\n\t\n\t // Find mappings for the \"sourceFile\"\n\t this._mappings.unsortedForEach(function (mapping) {\n\t if (mapping.source === sourceFile && mapping.originalLine != null) {\n\t // Check if it can be mapped by the source map, then update the mapping.\n\t var original = aSourceMapConsumer.originalPositionFor({\n\t line: mapping.originalLine,\n\t column: mapping.originalColumn\n\t });\n\t if (original.source != null) {\n\t // Copy mapping\n\t mapping.source = original.source;\n\t if (aSourceMapPath != null) {\n\t mapping.source = util.join(aSourceMapPath, mapping.source)\n\t }\n\t if (sourceRoot != null) {\n\t mapping.source = util.relative(sourceRoot, mapping.source);\n\t }\n\t mapping.originalLine = original.line;\n\t mapping.originalColumn = original.column;\n\t if (original.name != null) {\n\t mapping.name = original.name;\n\t }\n\t }\n\t }\n\t\n\t var source = mapping.source;\n\t if (source != null && !newSources.has(source)) {\n\t newSources.add(source);\n\t }\n\t\n\t var name = mapping.name;\n\t if (name != null && !newNames.has(name)) {\n\t newNames.add(name);\n\t }\n\t\n\t }, this);\n\t this._sources = newSources;\n\t this._names = newNames;\n\t\n\t // Copy sourcesContents of applied map.\n\t aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t if (content != null) {\n\t if (aSourceMapPath != null) {\n\t sourceFile = util.join(aSourceMapPath, sourceFile);\n\t }\n\t if (sourceRoot != null) {\n\t sourceFile = util.relative(sourceRoot, sourceFile);\n\t }\n\t this.setSourceContent(sourceFile, content);\n\t }\n\t }, this);\n\t };\n\t\n\t /**\n\t * A mapping can have one of the three levels of data:\n\t *\n\t * 1. Just the generated position.\n\t * 2. The Generated position, original position, and original source.\n\t * 3. Generated and original position, original source, as well as a name\n\t * token.\n\t *\n\t * To maintain consistency, we validate that any new mapping being added falls\n\t * in to one of these categories.\n\t */\n\t SourceMapGenerator.prototype._validateMapping =\n\t function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource,\n\t aName) {\n\t if (aGenerated && 'line' in aGenerated && 'column' in aGenerated\n\t && aGenerated.line > 0 && aGenerated.column >= 0\n\t && !aOriginal && !aSource && !aName) {\n\t // Case 1.\n\t return;\n\t }\n\t else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated\n\t && aOriginal && 'line' in aOriginal && 'column' in aOriginal\n\t && aGenerated.line > 0 && aGenerated.column >= 0\n\t && aOriginal.line > 0 && aOriginal.column >= 0\n\t && aSource) {\n\t // Cases 2 and 3.\n\t return;\n\t }\n\t else {\n\t throw new Error('Invalid mapping: ' + JSON.stringify({\n\t generated: aGenerated,\n\t source: aSource,\n\t original: aOriginal,\n\t name: aName\n\t }));\n\t }\n\t };\n\t\n\t /**\n\t * Serialize the accumulated mappings in to the stream of base 64 VLQs\n\t * specified by the source map format.\n\t */\n\t SourceMapGenerator.prototype._serializeMappings =\n\t function SourceMapGenerator_serializeMappings() {\n\t var previousGeneratedColumn = 0;\n\t var previousGeneratedLine = 1;\n\t var previousOriginalColumn = 0;\n\t var previousOriginalLine = 0;\n\t var previousName = 0;\n\t var previousSource = 0;\n\t var result = '';\n\t var mapping;\n\t var nameIdx;\n\t var sourceIdx;\n\t\n\t var mappings = this._mappings.toArray();\n\t for (var i = 0, len = mappings.length; i < len; i++) {\n\t mapping = mappings[i];\n\t\n\t if (mapping.generatedLine !== previousGeneratedLine) {\n\t previousGeneratedColumn = 0;\n\t while (mapping.generatedLine !== previousGeneratedLine) {\n\t result += ';';\n\t previousGeneratedLine++;\n\t }\n\t }\n\t else {\n\t if (i > 0) {\n\t if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {\n\t continue;\n\t }\n\t result += ',';\n\t }\n\t }\n\t\n\t result += base64VLQ.encode(mapping.generatedColumn\n\t - previousGeneratedColumn);\n\t previousGeneratedColumn = mapping.generatedColumn;\n\t\n\t if (mapping.source != null) {\n\t sourceIdx = this._sources.indexOf(mapping.source);\n\t result += base64VLQ.encode(sourceIdx - previousSource);\n\t previousSource = sourceIdx;\n\t\n\t // lines are stored 0-based in SourceMap spec version 3\n\t result += base64VLQ.encode(mapping.originalLine - 1\n\t - previousOriginalLine);\n\t previousOriginalLine = mapping.originalLine - 1;\n\t\n\t result += base64VLQ.encode(mapping.originalColumn\n\t - previousOriginalColumn);\n\t previousOriginalColumn = mapping.originalColumn;\n\t\n\t if (mapping.name != null) {\n\t nameIdx = this._names.indexOf(mapping.name);\n\t result += base64VLQ.encode(nameIdx - previousName);\n\t previousName = nameIdx;\n\t }\n\t }\n\t }\n\t\n\t return result;\n\t };\n\t\n\t SourceMapGenerator.prototype._generateSourcesContent =\n\t function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {\n\t return aSources.map(function (source) {\n\t if (!this._sourcesContents) {\n\t return null;\n\t }\n\t if (aSourceRoot != null) {\n\t source = util.relative(aSourceRoot, source);\n\t }\n\t var key = util.toSetString(source);\n\t return Object.prototype.hasOwnProperty.call(this._sourcesContents,\n\t key)\n\t ? this._sourcesContents[key]\n\t : null;\n\t }, this);\n\t };\n\t\n\t /**\n\t * Externalize the source map.\n\t */\n\t SourceMapGenerator.prototype.toJSON =\n\t function SourceMapGenerator_toJSON() {\n\t var map = {\n\t version: this._version,\n\t sources: this._sources.toArray(),\n\t names: this._names.toArray(),\n\t mappings: this._serializeMappings()\n\t };\n\t if (this._file != null) {\n\t map.file = this._file;\n\t }\n\t if (this._sourceRoot != null) {\n\t map.sourceRoot = this._sourceRoot;\n\t }\n\t if (this._sourcesContents) {\n\t map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);\n\t }\n\t\n\t return map;\n\t };\n\t\n\t /**\n\t * Render the source map being generated to a string.\n\t */\n\t SourceMapGenerator.prototype.toString =\n\t function SourceMapGenerator_toString() {\n\t return JSON.stringify(this.toJSON());\n\t };\n\t\n\t exports.SourceMapGenerator = SourceMapGenerator;\n\t}\n\n\n/***/ },\n/* 2 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t *\n\t * Based on the Base 64 VLQ implementation in Closure Compiler:\n\t * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java\n\t *\n\t * Copyright 2011 The Closure Compiler Authors. All rights reserved.\n\t * Redistribution and use in source and binary forms, with or without\n\t * modification, are permitted provided that the following conditions are\n\t * met:\n\t *\n\t * * Redistributions of source code must retain the above copyright\n\t * notice, this list of conditions and the following disclaimer.\n\t * * Redistributions in binary form must reproduce the above\n\t * copyright notice, this list of conditions and the following\n\t * disclaimer in the documentation and/or other materials provided\n\t * with the distribution.\n\t * * Neither the name of Google Inc. nor the names of its\n\t * contributors may be used to endorse or promote products derived\n\t * from this software without specific prior written permission.\n\t *\n\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\t * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\t * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\t * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\t * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\t * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\t * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\t * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\t * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\t * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t */\n\t{\n\t var base64 = __webpack_require__(3);\n\t\n\t // A single base 64 digit can contain 6 bits of data. For the base 64 variable\n\t // length quantities we use in the source map spec, the first bit is the sign,\n\t // the next four bits are the actual value, and the 6th bit is the\n\t // continuation bit. The continuation bit tells us whether there are more\n\t // digits in this value following this digit.\n\t //\n\t // Continuation\n\t // | Sign\n\t // | |\n\t // V V\n\t // 101011\n\t\n\t var VLQ_BASE_SHIFT = 5;\n\t\n\t // binary: 100000\n\t var VLQ_BASE = 1 << VLQ_BASE_SHIFT;\n\t\n\t // binary: 011111\n\t var VLQ_BASE_MASK = VLQ_BASE - 1;\n\t\n\t // binary: 100000\n\t var VLQ_CONTINUATION_BIT = VLQ_BASE;\n\t\n\t /**\n\t * Converts from a two-complement value to a value where the sign bit is\n\t * placed in the least significant bit. For example, as decimals:\n\t * 1 becomes 2 (10 binary), -1 becomes 3 (11 binary)\n\t * 2 becomes 4 (100 binary), -2 becomes 5 (101 binary)\n\t */\n\t function toVLQSigned(aValue) {\n\t return aValue < 0\n\t ? ((-aValue) << 1) + 1\n\t : (aValue << 1) + 0;\n\t }\n\t\n\t /**\n\t * Converts to a two-complement value from a value where the sign bit is\n\t * placed in the least significant bit. For example, as decimals:\n\t * 2 (10 binary) becomes 1, 3 (11 binary) becomes -1\n\t * 4 (100 binary) becomes 2, 5 (101 binary) becomes -2\n\t */\n\t function fromVLQSigned(aValue) {\n\t var isNegative = (aValue & 1) === 1;\n\t var shifted = aValue >> 1;\n\t return isNegative\n\t ? -shifted\n\t : shifted;\n\t }\n\t\n\t /**\n\t * Returns the base 64 VLQ encoded value.\n\t */\n\t exports.encode = function base64VLQ_encode(aValue) {\n\t var encoded = \"\";\n\t var digit;\n\t\n\t var vlq = toVLQSigned(aValue);\n\t\n\t do {\n\t digit = vlq & VLQ_BASE_MASK;\n\t vlq >>>= VLQ_BASE_SHIFT;\n\t if (vlq > 0) {\n\t // There are still more digits in this value, so we must make sure the\n\t // continuation bit is marked.\n\t digit |= VLQ_CONTINUATION_BIT;\n\t }\n\t encoded += base64.encode(digit);\n\t } while (vlq > 0);\n\t\n\t return encoded;\n\t };\n\t\n\t /**\n\t * Decodes the next base 64 VLQ value from the given string and returns the\n\t * value and the rest of the string via the out parameter.\n\t */\n\t exports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {\n\t var strLen = aStr.length;\n\t var result = 0;\n\t var shift = 0;\n\t var continuation, digit;\n\t\n\t do {\n\t if (aIndex >= strLen) {\n\t throw new Error(\"Expected more digits in base 64 VLQ value.\");\n\t }\n\t\n\t digit = base64.decode(aStr.charCodeAt(aIndex++));\n\t if (digit === -1) {\n\t throw new Error(\"Invalid base64 digit: \" + aStr.charAt(aIndex - 1));\n\t }\n\t\n\t continuation = !!(digit & VLQ_CONTINUATION_BIT);\n\t digit &= VLQ_BASE_MASK;\n\t result = result + (digit << shift);\n\t shift += VLQ_BASE_SHIFT;\n\t } while (continuation);\n\t\n\t aOutParam.value = fromVLQSigned(result);\n\t aOutParam.rest = aIndex;\n\t };\n\t}\n\n\n/***/ },\n/* 3 */\n/***/ function(module, exports) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');\n\t\n\t /**\n\t * Encode an integer in the range of 0 to 63 to a single base 64 digit.\n\t */\n\t exports.encode = function (number) {\n\t if (0 <= number && number < intToCharMap.length) {\n\t return intToCharMap[number];\n\t }\n\t throw new TypeError(\"Must be between 0 and 63: \" + number);\n\t };\n\t\n\t /**\n\t * Decode a single base 64 character code digit to an integer. Returns -1 on\n\t * failure.\n\t */\n\t exports.decode = function (charCode) {\n\t var bigA = 65; // 'A'\n\t var bigZ = 90; // 'Z'\n\t\n\t var littleA = 97; // 'a'\n\t var littleZ = 122; // 'z'\n\t\n\t var zero = 48; // '0'\n\t var nine = 57; // '9'\n\t\n\t var plus = 43; // '+'\n\t var slash = 47; // '/'\n\t\n\t var littleOffset = 26;\n\t var numberOffset = 52;\n\t\n\t // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ\n\t if (bigA <= charCode && charCode <= bigZ) {\n\t return (charCode - bigA);\n\t }\n\t\n\t // 26 - 51: abcdefghijklmnopqrstuvwxyz\n\t if (littleA <= charCode && charCode <= littleZ) {\n\t return (charCode - littleA + littleOffset);\n\t }\n\t\n\t // 52 - 61: 0123456789\n\t if (zero <= charCode && charCode <= nine) {\n\t return (charCode - zero + numberOffset);\n\t }\n\t\n\t // 62: +\n\t if (charCode == plus) {\n\t return 62;\n\t }\n\t\n\t // 63: /\n\t if (charCode == slash) {\n\t return 63;\n\t }\n\t\n\t // Invalid base64 digit.\n\t return -1;\n\t };\n\t}\n\n\n/***/ },\n/* 4 */\n/***/ function(module, exports) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t /**\n\t * This is a helper function for getting values from parameter/options\n\t * objects.\n\t *\n\t * @param args The object we are extracting values from\n\t * @param name The name of the property we are getting.\n\t * @param defaultValue An optional value to return if the property is missing\n\t * from the object. If this is not specified and the property is missing, an\n\t * error will be thrown.\n\t */\n\t function getArg(aArgs, aName, aDefaultValue) {\n\t if (aName in aArgs) {\n\t return aArgs[aName];\n\t } else if (arguments.length === 3) {\n\t return aDefaultValue;\n\t } else {\n\t throw new Error('\"' + aName + '\" is a required argument.');\n\t }\n\t }\n\t exports.getArg = getArg;\n\t\n\t var urlRegexp = /^(?:([\\w+\\-.]+):)?\\/\\/(?:(\\w+:\\w+)@)?([\\w.]*)(?::(\\d+))?(\\S*)$/;\n\t var dataUrlRegexp = /^data:.+\\,.+$/;\n\t\n\t function urlParse(aUrl) {\n\t var match = aUrl.match(urlRegexp);\n\t if (!match) {\n\t return null;\n\t }\n\t return {\n\t scheme: match[1],\n\t auth: match[2],\n\t host: match[3],\n\t port: match[4],\n\t path: match[5]\n\t };\n\t }\n\t exports.urlParse = urlParse;\n\t\n\t function urlGenerate(aParsedUrl) {\n\t var url = '';\n\t if (aParsedUrl.scheme) {\n\t url += aParsedUrl.scheme + ':';\n\t }\n\t url += '//';\n\t if (aParsedUrl.auth) {\n\t url += aParsedUrl.auth + '@';\n\t }\n\t if (aParsedUrl.host) {\n\t url += aParsedUrl.host;\n\t }\n\t if (aParsedUrl.port) {\n\t url += \":\" + aParsedUrl.port\n\t }\n\t if (aParsedUrl.path) {\n\t url += aParsedUrl.path;\n\t }\n\t return url;\n\t }\n\t exports.urlGenerate = urlGenerate;\n\t\n\t /**\n\t * Normalizes a path, or the path portion of a URL:\n\t *\n\t * - Replaces consequtive slashes with one slash.\n\t * - Removes unnecessary '.' parts.\n\t * - Removes unnecessary '<dir>/..' parts.\n\t *\n\t * Based on code in the Node.js 'path' core module.\n\t *\n\t * @param aPath The path or url to normalize.\n\t */\n\t function normalize(aPath) {\n\t var path = aPath;\n\t var url = urlParse(aPath);\n\t if (url) {\n\t if (!url.path) {\n\t return aPath;\n\t }\n\t path = url.path;\n\t }\n\t var isAbsolute = exports.isAbsolute(path);\n\t\n\t var parts = path.split(/\\/+/);\n\t for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {\n\t part = parts[i];\n\t if (part === '.') {\n\t parts.splice(i, 1);\n\t } else if (part === '..') {\n\t up++;\n\t } else if (up > 0) {\n\t if (part === '') {\n\t // The first part is blank if the path is absolute. Trying to go\n\t // above the root is a no-op. Therefore we can remove all '..' parts\n\t // directly after the root.\n\t parts.splice(i + 1, up);\n\t up = 0;\n\t } else {\n\t parts.splice(i, 2);\n\t up--;\n\t }\n\t }\n\t }\n\t path = parts.join('/');\n\t\n\t if (path === '') {\n\t path = isAbsolute ? '/' : '.';\n\t }\n\t\n\t if (url) {\n\t url.path = path;\n\t return urlGenerate(url);\n\t }\n\t return path;\n\t }\n\t exports.normalize = normalize;\n\t\n\t /**\n\t * Joins two paths/URLs.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be joined with the root.\n\t *\n\t * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a\n\t * scheme-relative URL: Then the scheme of aRoot, if any, is prepended\n\t * first.\n\t * - Otherwise aPath is a path. If aRoot is a URL, then its path portion\n\t * is updated with the result and aRoot is returned. Otherwise the result\n\t * is returned.\n\t * - If aPath is absolute, the result is aPath.\n\t * - Otherwise the two paths are joined with a slash.\n\t * - Joining for example 'http://' and 'www.example.com' is also supported.\n\t */\n\t function join(aRoot, aPath) {\n\t if (aRoot === \"\") {\n\t aRoot = \".\";\n\t }\n\t if (aPath === \"\") {\n\t aPath = \".\";\n\t }\n\t var aPathUrl = urlParse(aPath);\n\t var aRootUrl = urlParse(aRoot);\n\t if (aRootUrl) {\n\t aRoot = aRootUrl.path || '/';\n\t }\n\t\n\t // `join(foo, '//www.example.org')`\n\t if (aPathUrl && !aPathUrl.scheme) {\n\t if (aRootUrl) {\n\t aPathUrl.scheme = aRootUrl.scheme;\n\t }\n\t return urlGenerate(aPathUrl);\n\t }\n\t\n\t if (aPathUrl || aPath.match(dataUrlRegexp)) {\n\t return aPath;\n\t }\n\t\n\t // `join('http://', 'www.example.com')`\n\t if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {\n\t aRootUrl.host = aPath;\n\t return urlGenerate(aRootUrl);\n\t }\n\t\n\t var joined = aPath.charAt(0) === '/'\n\t ? aPath\n\t : normalize(aRoot.replace(/\\/+$/, '') + '/' + aPath);\n\t\n\t if (aRootUrl) {\n\t aRootUrl.path = joined;\n\t return urlGenerate(aRootUrl);\n\t }\n\t return joined;\n\t }\n\t exports.join = join;\n\t\n\t exports.isAbsolute = function (aPath) {\n\t return aPath.charAt(0) === '/' || !!aPath.match(urlRegexp);\n\t };\n\t\n\t /**\n\t * Make a path relative to a URL or another path.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be made relative to aRoot.\n\t */\n\t function relative(aRoot, aPath) {\n\t if (aRoot === \"\") {\n\t aRoot = \".\";\n\t }\n\t\n\t aRoot = aRoot.replace(/\\/$/, '');\n\t\n\t // It is possible for the path to be above the root. In this case, simply\n\t // checking whether the root is a prefix of the path won't work. Instead, we\n\t // need to remove components from the root one by one, until either we find\n\t // a prefix that fits, or we run out of components to remove.\n\t var level = 0;\n\t while (aPath.indexOf(aRoot + '/') !== 0) {\n\t var index = aRoot.lastIndexOf(\"/\");\n\t if (index < 0) {\n\t return aPath;\n\t }\n\t\n\t // If the only part of the root that is left is the scheme (i.e. http://,\n\t // file:///, etc.), one or more slashes (/), or simply nothing at all, we\n\t // have exhausted all components, so the path is not relative to the root.\n\t aRoot = aRoot.slice(0, index);\n\t if (aRoot.match(/^([^\\/]+:\\/)?\\/*$/)) {\n\t return aPath;\n\t }\n\t\n\t ++level;\n\t }\n\t\n\t // Make sure we add a \"../\" for each component we removed from the root.\n\t return Array(level + 1).join(\"../\") + aPath.substr(aRoot.length + 1);\n\t }\n\t exports.relative = relative;\n\t\n\t /**\n\t * Because behavior goes wacky when you set `__proto__` on objects, we\n\t * have to prefix all the strings in our set with an arbitrary character.\n\t *\n\t * See https://github.com/mozilla/source-map/pull/31 and\n\t * https://github.com/mozilla/source-map/issues/30\n\t *\n\t * @param String aStr\n\t */\n\t function toSetString(aStr) {\n\t return '$' + aStr;\n\t }\n\t exports.toSetString = toSetString;\n\t\n\t function fromSetString(aStr) {\n\t return aStr.substr(1);\n\t }\n\t exports.fromSetString = fromSetString;\n\t\n\t /**\n\t * Comparator between two mappings where the original positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same original source/line/column, but different generated\n\t * line and column the same. Useful when searching for a mapping with a\n\t * stubbed out mapping.\n\t */\n\t function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {\n\t var cmp = mappingA.source - mappingB.source;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalLine - mappingB.originalLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t if (cmp !== 0 || onlyCompareOriginal) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t return mappingA.name - mappingB.name;\n\t }\n\t exports.compareByOriginalPositions = compareByOriginalPositions;\n\t\n\t /**\n\t * Comparator between two mappings with deflated source and name indices where\n\t * the generated positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same generated line and column, but different\n\t * source/name/original line and column the same. Useful when searching for a\n\t * mapping with a stubbed out mapping.\n\t */\n\t function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {\n\t var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t if (cmp !== 0 || onlyCompareGenerated) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.source - mappingB.source;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalLine - mappingB.originalLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t return mappingA.name - mappingB.name;\n\t }\n\t exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;\n\t\n\t function strcmp(aStr1, aStr2) {\n\t if (aStr1 === aStr2) {\n\t return 0;\n\t }\n\t\n\t if (aStr1 > aStr2) {\n\t return 1;\n\t }\n\t\n\t return -1;\n\t }\n\t\n\t /**\n\t * Comparator between two mappings with inflated source and name strings where\n\t * the generated positions are compared.\n\t */\n\t function compareByGeneratedPositionsInflated(mappingA, mappingB) {\n\t var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = strcmp(mappingA.source, mappingB.source);\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalLine - mappingB.originalLine;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t if (cmp !== 0) {\n\t return cmp;\n\t }\n\t\n\t return strcmp(mappingA.name, mappingB.name);\n\t }\n\t exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;\n\t}\n\n\n/***/ },\n/* 5 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var util = __webpack_require__(4);\n\t\n\t /**\n\t * A data structure which is a combination of an array and a set. Adding a new\n\t * member is O(1), testing for membership is O(1), and finding the index of an\n\t * element is O(1). Removing elements from the set is not supported. Only\n\t * strings are supported for membership.\n\t */\n\t function ArraySet() {\n\t this._array = [];\n\t this._set = {};\n\t }\n\t\n\t /**\n\t * Static method for creating ArraySet instances from an existing array.\n\t */\n\t ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {\n\t var set = new ArraySet();\n\t for (var i = 0, len = aArray.length; i < len; i++) {\n\t set.add(aArray[i], aAllowDuplicates);\n\t }\n\t return set;\n\t };\n\t\n\t /**\n\t * Return how many unique items are in this ArraySet. If duplicates have been\n\t * added, than those do not count towards the size.\n\t *\n\t * @returns Number\n\t */\n\t ArraySet.prototype.size = function ArraySet_size() {\n\t return Object.getOwnPropertyNames(this._set).length;\n\t };\n\t\n\t /**\n\t * Add the given string to this set.\n\t *\n\t * @param String aStr\n\t */\n\t ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {\n\t var sStr = util.toSetString(aStr);\n\t var isDuplicate = this._set.hasOwnProperty(sStr);\n\t var idx = this._array.length;\n\t if (!isDuplicate || aAllowDuplicates) {\n\t this._array.push(aStr);\n\t }\n\t if (!isDuplicate) {\n\t this._set[sStr] = idx;\n\t }\n\t };\n\t\n\t /**\n\t * Is the given string a member of this set?\n\t *\n\t * @param String aStr\n\t */\n\t ArraySet.prototype.has = function ArraySet_has(aStr) {\n\t var sStr = util.toSetString(aStr);\n\t return this._set.hasOwnProperty(sStr);\n\t };\n\t\n\t /**\n\t * What is the index of the given string in the array?\n\t *\n\t * @param String aStr\n\t */\n\t ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {\n\t var sStr = util.toSetString(aStr);\n\t if (this._set.hasOwnProperty(sStr)) {\n\t return this._set[sStr];\n\t }\n\t throw new Error('\"' + aStr + '\" is not in the set.');\n\t };\n\t\n\t /**\n\t * What is the element at the given index?\n\t *\n\t * @param Number aIdx\n\t */\n\t ArraySet.prototype.at = function ArraySet_at(aIdx) {\n\t if (aIdx >= 0 && aIdx < this._array.length) {\n\t return this._array[aIdx];\n\t }\n\t throw new Error('No element indexed by ' + aIdx);\n\t };\n\t\n\t /**\n\t * Returns the array representation of this set (which has the proper indices\n\t * indicated by indexOf). Note that this is a copy of the internal array used\n\t * for storing the members so that no one can mess with internal state.\n\t */\n\t ArraySet.prototype.toArray = function ArraySet_toArray() {\n\t return this._array.slice();\n\t };\n\t\n\t exports.ArraySet = ArraySet;\n\t}\n\n\n/***/ },\n/* 6 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2014 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var util = __webpack_require__(4);\n\t\n\t /**\n\t * Determine whether mappingB is after mappingA with respect to generated\n\t * position.\n\t */\n\t function generatedPositionAfter(mappingA, mappingB) {\n\t // Optimized for most common case\n\t var lineA = mappingA.generatedLine;\n\t var lineB = mappingB.generatedLine;\n\t var columnA = mappingA.generatedColumn;\n\t var columnB = mappingB.generatedColumn;\n\t return lineB > lineA || lineB == lineA && columnB >= columnA ||\n\t util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;\n\t }\n\t\n\t /**\n\t * A data structure to provide a sorted view of accumulated mappings in a\n\t * performance conscious manner. It trades a neglibable overhead in general\n\t * case for a large speedup in case of mappings being added in order.\n\t */\n\t function MappingList() {\n\t this._array = [];\n\t this._sorted = true;\n\t // Serves as infimum\n\t this._last = {generatedLine: -1, generatedColumn: 0};\n\t }\n\t\n\t /**\n\t * Iterate through internal items. This method takes the same arguments that\n\t * `Array.prototype.forEach` takes.\n\t *\n\t * NOTE: The order of the mappings is NOT guaranteed.\n\t */\n\t MappingList.prototype.unsortedForEach =\n\t function MappingList_forEach(aCallback, aThisArg) {\n\t this._array.forEach(aCallback, aThisArg);\n\t };\n\t\n\t /**\n\t * Add the given source mapping.\n\t *\n\t * @param Object aMapping\n\t */\n\t MappingList.prototype.add = function MappingList_add(aMapping) {\n\t if (generatedPositionAfter(this._last, aMapping)) {\n\t this._last = aMapping;\n\t this._array.push(aMapping);\n\t } else {\n\t this._sorted = false;\n\t this._array.push(aMapping);\n\t }\n\t };\n\t\n\t /**\n\t * Returns the flat, sorted array of mappings. The mappings are sorted by\n\t * generated position.\n\t *\n\t * WARNING: This method returns internal data without copying, for\n\t * performance. The return value must NOT be mutated, and should be treated as\n\t * an immutable borrow. If you want to take ownership, you must make your own\n\t * copy.\n\t */\n\t MappingList.prototype.toArray = function MappingList_toArray() {\n\t if (!this._sorted) {\n\t this._array.sort(util.compareByGeneratedPositionsInflated);\n\t this._sorted = true;\n\t }\n\t return this._array;\n\t };\n\t\n\t exports.MappingList = MappingList;\n\t}\n\n\n/***/ },\n/* 7 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var util = __webpack_require__(4);\n\t var binarySearch = __webpack_require__(8);\n\t var ArraySet = __webpack_require__(5).ArraySet;\n\t var base64VLQ = __webpack_require__(2);\n\t var quickSort = __webpack_require__(9).quickSort;\n\t\n\t function SourceMapConsumer(aSourceMap) {\n\t var sourceMap = aSourceMap;\n\t if (typeof aSourceMap === 'string') {\n\t sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t }\n\t\n\t return sourceMap.sections != null\n\t ? new IndexedSourceMapConsumer(sourceMap)\n\t : new BasicSourceMapConsumer(sourceMap);\n\t }\n\t\n\t SourceMapConsumer.fromSourceMap = function(aSourceMap) {\n\t return BasicSourceMapConsumer.fromSourceMap(aSourceMap);\n\t }\n\t\n\t /**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\t SourceMapConsumer.prototype._version = 3;\n\t\n\t // `__generatedMappings` and `__originalMappings` are arrays that hold the\n\t // parsed mapping coordinates from the source map's \"mappings\" attribute. They\n\t // are lazily instantiated, accessed via the `_generatedMappings` and\n\t // `_originalMappings` getters respectively, and we only parse the mappings\n\t // and create these arrays once queried for a source location. We jump through\n\t // these hoops because there can be many thousands of mappings, and parsing\n\t // them is expensive, so we only want to do it if we must.\n\t //\n\t // Each object in the arrays is of the form:\n\t //\n\t // {\n\t // generatedLine: The line number in the generated code,\n\t // generatedColumn: The column number in the generated code,\n\t // source: The path to the original source file that generated this\n\t // chunk of code,\n\t // originalLine: The line number in the original source that\n\t // corresponds to this chunk of generated code,\n\t // originalColumn: The column number in the original source that\n\t // corresponds to this chunk of generated code,\n\t // name: The name of the original symbol which generated this chunk of\n\t // code.\n\t // }\n\t //\n\t // All properties except for `generatedLine` and `generatedColumn` can be\n\t // `null`.\n\t //\n\t // `_generatedMappings` is ordered by the generated positions.\n\t //\n\t // `_originalMappings` is ordered by the original positions.\n\t\n\t SourceMapConsumer.prototype.__generatedMappings = null;\n\t Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {\n\t get: function () {\n\t if (!this.__generatedMappings) {\n\t this._parseMappings(this._mappings, this.sourceRoot);\n\t }\n\t\n\t return this.__generatedMappings;\n\t }\n\t });\n\t\n\t SourceMapConsumer.prototype.__originalMappings = null;\n\t Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {\n\t get: function () {\n\t if (!this.__originalMappings) {\n\t this._parseMappings(this._mappings, this.sourceRoot);\n\t }\n\t\n\t return this.__originalMappings;\n\t }\n\t });\n\t\n\t SourceMapConsumer.prototype._charIsMappingSeparator =\n\t function SourceMapConsumer_charIsMappingSeparator(aStr, index) {\n\t var c = aStr.charAt(index);\n\t return c === \";\" || c === \",\";\n\t };\n\t\n\t /**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\t SourceMapConsumer.prototype._parseMappings =\n\t function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t throw new Error(\"Subclasses must implement _parseMappings\");\n\t };\n\t\n\t SourceMapConsumer.GENERATED_ORDER = 1;\n\t SourceMapConsumer.ORIGINAL_ORDER = 2;\n\t\n\t SourceMapConsumer.GREATEST_LOWER_BOUND = 1;\n\t SourceMapConsumer.LEAST_UPPER_BOUND = 2;\n\t\n\t /**\n\t * Iterate over each mapping between an original source/line/column and a\n\t * generated line/column in this source map.\n\t *\n\t * @param Function aCallback\n\t * The function that is called with each mapping.\n\t * @param Object aContext\n\t * Optional. If specified, this object will be the value of `this` every\n\t * time that `aCallback` is called.\n\t * @param aOrder\n\t * Either `SourceMapConsumer.GENERATED_ORDER` or\n\t * `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to\n\t * iterate over the mappings sorted by the generated file's line/column\n\t * order or the original's source/line/column order, respectively. Defaults to\n\t * `SourceMapConsumer.GENERATED_ORDER`.\n\t */\n\t SourceMapConsumer.prototype.eachMapping =\n\t function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {\n\t var context = aContext || null;\n\t var order = aOrder || SourceMapConsumer.GENERATED_ORDER;\n\t\n\t var mappings;\n\t switch (order) {\n\t case SourceMapConsumer.GENERATED_ORDER:\n\t mappings = this._generatedMappings;\n\t break;\n\t case SourceMapConsumer.ORIGINAL_ORDER:\n\t mappings = this._originalMappings;\n\t break;\n\t default:\n\t throw new Error(\"Unknown order of iteration.\");\n\t }\n\t\n\t var sourceRoot = this.sourceRoot;\n\t mappings.map(function (mapping) {\n\t var source = mapping.source === null ? null : this._sources.at(mapping.source);\n\t if (source != null && sourceRoot != null) {\n\t source = util.join(sourceRoot, source);\n\t }\n\t return {\n\t source: source,\n\t generatedLine: mapping.generatedLine,\n\t generatedColumn: mapping.generatedColumn,\n\t originalLine: mapping.originalLine,\n\t originalColumn: mapping.originalColumn,\n\t name: mapping.name === null ? null : this._names.at(mapping.name)\n\t };\n\t }, this).forEach(aCallback, context);\n\t };\n\t\n\t /**\n\t * Returns all generated line and column information for the original source,\n\t * line, and column provided. If no column is provided, returns all mappings\n\t * corresponding to a either the line we are searching for or the next\n\t * closest line that has any mappings. Otherwise, returns all mappings\n\t * corresponding to the given line and either the column we are searching for\n\t * or the next closest column that has any offsets.\n\t *\n\t * The only argument is an object with the following properties:\n\t *\n\t * - source: The filename of the original source.\n\t * - line: The line number in the original source.\n\t * - column: Optional. the column number in the original source.\n\t *\n\t * and an array of objects is returned, each with the following properties:\n\t *\n\t * - line: The line number in the generated source, or null.\n\t * - column: The column number in the generated source, or null.\n\t */\n\t SourceMapConsumer.prototype.allGeneratedPositionsFor =\n\t function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {\n\t var line = util.getArg(aArgs, 'line');\n\t\n\t // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping\n\t // returns the index of the closest mapping less than the needle. By\n\t // setting needle.originalColumn to 0, we thus find the last mapping for\n\t // the given line, provided such a mapping exists.\n\t var needle = {\n\t source: util.getArg(aArgs, 'source'),\n\t originalLine: line,\n\t originalColumn: util.getArg(aArgs, 'column', 0)\n\t };\n\t\n\t if (this.sourceRoot != null) {\n\t needle.source = util.relative(this.sourceRoot, needle.source);\n\t }\n\t if (!this._sources.has(needle.source)) {\n\t return [];\n\t }\n\t needle.source = this._sources.indexOf(needle.source);\n\t\n\t var mappings = [];\n\t\n\t var index = this._findMapping(needle,\n\t this._originalMappings,\n\t \"originalLine\",\n\t \"originalColumn\",\n\t util.compareByOriginalPositions,\n\t binarySearch.LEAST_UPPER_BOUND);\n\t if (index >= 0) {\n\t var mapping = this._originalMappings[index];\n\t\n\t if (aArgs.column === undefined) {\n\t var originalLine = mapping.originalLine;\n\t\n\t // Iterate until either we run out of mappings, or we run into\n\t // a mapping for a different line than the one we found. Since\n\t // mappings are sorted, this is guaranteed to find all mappings for\n\t // the line we found.\n\t while (mapping && mapping.originalLine === originalLine) {\n\t mappings.push({\n\t line: util.getArg(mapping, 'generatedLine', null),\n\t column: util.getArg(mapping, 'generatedColumn', null),\n\t lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t });\n\t\n\t mapping = this._originalMappings[++index];\n\t }\n\t } else {\n\t var originalColumn = mapping.originalColumn;\n\t\n\t // Iterate until either we run out of mappings, or we run into\n\t // a mapping for a different line than the one we were searching for.\n\t // Since mappings are sorted, this is guaranteed to find all mappings for\n\t // the line we are searching for.\n\t while (mapping &&\n\t mapping.originalLine === line &&\n\t mapping.originalColumn == originalColumn) {\n\t mappings.push({\n\t line: util.getArg(mapping, 'generatedLine', null),\n\t column: util.getArg(mapping, 'generatedColumn', null),\n\t lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t });\n\t\n\t mapping = this._originalMappings[++index];\n\t }\n\t }\n\t }\n\t\n\t return mappings;\n\t };\n\t\n\t exports.SourceMapConsumer = SourceMapConsumer;\n\t\n\t /**\n\t * A BasicSourceMapConsumer instance represents a parsed source map which we can\n\t * query for information about the original file positions by giving it a file\n\t * position in the generated source.\n\t *\n\t * The only parameter is the raw source map (either as a JSON string, or\n\t * already parsed to an object). According to the spec, source maps have the\n\t * following attributes:\n\t *\n\t * - version: Which version of the source map spec this map is following.\n\t * - sources: An array of URLs to the original source files.\n\t * - names: An array of identifiers which can be referrenced by individual mappings.\n\t * - sourceRoot: Optional. The URL root from which all sources are relative.\n\t * - sourcesContent: Optional. An array of contents of the original source files.\n\t * - mappings: A string of base64 VLQs which contain the actual mappings.\n\t * - file: Optional. The generated file this source map is associated with.\n\t *\n\t * Here is an example source map, taken from the source map spec[0]:\n\t *\n\t * {\n\t * version : 3,\n\t * file: \"out.js\",\n\t * sourceRoot : \"\",\n\t * sources: [\"foo.js\", \"bar.js\"],\n\t * names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t * mappings: \"AA,AB;;ABCDE;\"\n\t * }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#\n\t */\n\t function BasicSourceMapConsumer(aSourceMap) {\n\t var sourceMap = aSourceMap;\n\t if (typeof aSourceMap === 'string') {\n\t sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t }\n\t\n\t var version = util.getArg(sourceMap, 'version');\n\t var sources = util.getArg(sourceMap, 'sources');\n\t // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which\n\t // requires the array) to play nice here.\n\t var names = util.getArg(sourceMap, 'names', []);\n\t var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);\n\t var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);\n\t var mappings = util.getArg(sourceMap, 'mappings');\n\t var file = util.getArg(sourceMap, 'file', null);\n\t\n\t // Once again, Sass deviates from the spec and supplies the version as a\n\t // string rather than a number, so we use loose equality checking here.\n\t if (version != this._version) {\n\t throw new Error('Unsupported version: ' + version);\n\t }\n\t\n\t sources = sources\n\t // Some source maps produce relative source paths like \"./foo.js\" instead of\n\t // \"foo.js\". Normalize these first so that future comparisons will succeed.\n\t // See bugzil.la/1090768.\n\t .map(util.normalize)\n\t // Always ensure that absolute sources are internally stored relative to\n\t // the source root, if the source root is absolute. Not doing this would\n\t // be particularly problematic when the source root is a prefix of the\n\t // source (valid, but why??). See github issue #199 and bugzil.la/1188982.\n\t .map(function (source) {\n\t return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source)\n\t ? util.relative(sourceRoot, source)\n\t : source;\n\t });\n\t\n\t // Pass `true` below to allow duplicate names and sources. While source maps\n\t // are intended to be compressed and deduplicated, the TypeScript compiler\n\t // sometimes generates source maps with duplicates in them. See Github issue\n\t // #72 and bugzil.la/889492.\n\t this._names = ArraySet.fromArray(names, true);\n\t this._sources = ArraySet.fromArray(sources, true);\n\t\n\t this.sourceRoot = sourceRoot;\n\t this.sourcesContent = sourcesContent;\n\t this._mappings = mappings;\n\t this.file = file;\n\t }\n\t\n\t BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\t BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;\n\t\n\t /**\n\t * Create a BasicSourceMapConsumer from a SourceMapGenerator.\n\t *\n\t * @param SourceMapGenerator aSourceMap\n\t * The source map that will be consumed.\n\t * @returns BasicSourceMapConsumer\n\t */\n\t BasicSourceMapConsumer.fromSourceMap =\n\t function SourceMapConsumer_fromSourceMap(aSourceMap) {\n\t var smc = Object.create(BasicSourceMapConsumer.prototype);\n\t\n\t var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);\n\t var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);\n\t smc.sourceRoot = aSourceMap._sourceRoot;\n\t smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(),\n\t smc.sourceRoot);\n\t smc.file = aSourceMap._file;\n\t\n\t // Because we are modifying the entries (by converting string sources and\n\t // names to indices into the sources and names ArraySets), we have to make\n\t // a copy of the entry or else bad things happen. Shared mutable state\n\t // strikes again! See github issue #191.\n\t\n\t var generatedMappings = aSourceMap._mappings.toArray().slice();\n\t var destGeneratedMappings = smc.__generatedMappings = [];\n\t var destOriginalMappings = smc.__originalMappings = [];\n\t\n\t for (var i = 0, length = generatedMappings.length; i < length; i++) {\n\t var srcMapping = generatedMappings[i];\n\t var destMapping = new Mapping;\n\t destMapping.generatedLine = srcMapping.generatedLine;\n\t destMapping.generatedColumn = srcMapping.generatedColumn;\n\t\n\t if (srcMapping.source) {\n\t destMapping.source = sources.indexOf(srcMapping.source);\n\t destMapping.originalLine = srcMapping.originalLine;\n\t destMapping.originalColumn = srcMapping.originalColumn;\n\t\n\t if (srcMapping.name) {\n\t destMapping.name = names.indexOf(srcMapping.name);\n\t }\n\t\n\t destOriginalMappings.push(destMapping);\n\t }\n\t\n\t destGeneratedMappings.push(destMapping);\n\t }\n\t\n\t quickSort(smc.__originalMappings, util.compareByOriginalPositions);\n\t\n\t return smc;\n\t };\n\t\n\t /**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\t BasicSourceMapConsumer.prototype._version = 3;\n\t\n\t /**\n\t * The list of original sources.\n\t */\n\t Object.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {\n\t get: function () {\n\t return this._sources.toArray().map(function (s) {\n\t return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;\n\t }, this);\n\t }\n\t });\n\t\n\t /**\n\t * Provide the JIT with a nice shape / hidden class.\n\t */\n\t function Mapping() {\n\t this.generatedLine = 0;\n\t this.generatedColumn = 0;\n\t this.source = null;\n\t this.originalLine = null;\n\t this.originalColumn = null;\n\t this.name = null;\n\t }\n\t\n\t /**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\t BasicSourceMapConsumer.prototype._parseMappings =\n\t function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t var generatedLine = 1;\n\t var previousGeneratedColumn = 0;\n\t var previousOriginalLine = 0;\n\t var previousOriginalColumn = 0;\n\t var previousSource = 0;\n\t var previousName = 0;\n\t var length = aStr.length;\n\t var index = 0;\n\t var cachedSegments = {};\n\t var temp = {};\n\t var originalMappings = [];\n\t var generatedMappings = [];\n\t var mapping, str, segment, end, value;\n\t\n\t while (index < length) {\n\t if (aStr.charAt(index) === ';') {\n\t generatedLine++;\n\t index++;\n\t previousGeneratedColumn = 0;\n\t }\n\t else if (aStr.charAt(index) === ',') {\n\t index++;\n\t }\n\t else {\n\t mapping = new Mapping();\n\t mapping.generatedLine = generatedLine;\n\t\n\t // Because each offset is encoded relative to the previous one,\n\t // many segments often have the same encoding. We can exploit this\n\t // fact by caching the parsed variable length fields of each segment,\n\t // allowing us to avoid a second parse if we encounter the same\n\t // segment again.\n\t for (end = index; end < length; end++) {\n\t if (this._charIsMappingSeparator(aStr, end)) {\n\t break;\n\t }\n\t }\n\t str = aStr.slice(index, end);\n\t\n\t segment = cachedSegments[str];\n\t if (segment) {\n\t index += str.length;\n\t } else {\n\t segment = [];\n\t while (index < end) {\n\t base64VLQ.decode(aStr, index, temp);\n\t value = temp.value;\n\t index = temp.rest;\n\t segment.push(value);\n\t }\n\t\n\t if (segment.length === 2) {\n\t throw new Error('Found a source, but no line and column');\n\t }\n\t\n\t if (segment.length === 3) {\n\t throw new Error('Found a source and line, but no column');\n\t }\n\t\n\t cachedSegments[str] = segment;\n\t }\n\t\n\t // Generated column.\n\t mapping.generatedColumn = previousGeneratedColumn + segment[0];\n\t previousGeneratedColumn = mapping.generatedColumn;\n\t\n\t if (segment.length > 1) {\n\t // Original source.\n\t mapping.source = previousSource + segment[1];\n\t previousSource += segment[1];\n\t\n\t // Original line.\n\t mapping.originalLine = previousOriginalLine + segment[2];\n\t previousOriginalLine = mapping.originalLine;\n\t // Lines are stored 0-based\n\t mapping.originalLine += 1;\n\t\n\t // Original column.\n\t mapping.originalColumn = previousOriginalColumn + segment[3];\n\t previousOriginalColumn = mapping.originalColumn;\n\t\n\t if (segment.length > 4) {\n\t // Original name.\n\t mapping.name = previousName + segment[4];\n\t previousName += segment[4];\n\t }\n\t }\n\t\n\t generatedMappings.push(mapping);\n\t if (typeof mapping.originalLine === 'number') {\n\t originalMappings.push(mapping);\n\t }\n\t }\n\t }\n\t\n\t quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t this.__generatedMappings = generatedMappings;\n\t\n\t quickSort(originalMappings, util.compareByOriginalPositions);\n\t this.__originalMappings = originalMappings;\n\t };\n\t\n\t /**\n\t * Find the mapping that best matches the hypothetical \"needle\" mapping that\n\t * we are searching for in the given \"haystack\" of mappings.\n\t */\n\t BasicSourceMapConsumer.prototype._findMapping =\n\t function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName,\n\t aColumnName, aComparator, aBias) {\n\t // To return the position we are searching for, we must first find the\n\t // mapping for the given position and then return the opposite position it\n\t // points to. Because the mappings are sorted, we can use binary search to\n\t // find the best mapping.\n\t\n\t if (aNeedle[aLineName] <= 0) {\n\t throw new TypeError('Line must be greater than or equal to 1, got '\n\t + aNeedle[aLineName]);\n\t }\n\t if (aNeedle[aColumnName] < 0) {\n\t throw new TypeError('Column must be greater than or equal to 0, got '\n\t + aNeedle[aColumnName]);\n\t }\n\t\n\t return binarySearch.search(aNeedle, aMappings, aComparator, aBias);\n\t };\n\t\n\t /**\n\t * Compute the last column for each generated mapping. The last column is\n\t * inclusive.\n\t */\n\t BasicSourceMapConsumer.prototype.computeColumnSpans =\n\t function SourceMapConsumer_computeColumnSpans() {\n\t for (var index = 0; index < this._generatedMappings.length; ++index) {\n\t var mapping = this._generatedMappings[index];\n\t\n\t // Mappings do not contain a field for the last generated columnt. We\n\t // can come up with an optimistic estimate, however, by assuming that\n\t // mappings are contiguous (i.e. given two consecutive mappings, the\n\t // first mapping ends where the second one starts).\n\t if (index + 1 < this._generatedMappings.length) {\n\t var nextMapping = this._generatedMappings[index + 1];\n\t\n\t if (mapping.generatedLine === nextMapping.generatedLine) {\n\t mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;\n\t continue;\n\t }\n\t }\n\t\n\t // The last mapping for each line spans the entire line.\n\t mapping.lastGeneratedColumn = Infinity;\n\t }\n\t };\n\t\n\t /**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t * - line: The line number in the generated source.\n\t * - column: The column number in the generated source.\n\t * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t * closest element that is smaller than or greater than the one we are\n\t * searching for, respectively, if the exact element cannot be found.\n\t * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t * - source: The original source file, or null.\n\t * - line: The line number in the original source, or null.\n\t * - column: The column number in the original source, or null.\n\t * - name: The original identifier, or null.\n\t */\n\t BasicSourceMapConsumer.prototype.originalPositionFor =\n\t function SourceMapConsumer_originalPositionFor(aArgs) {\n\t var needle = {\n\t generatedLine: util.getArg(aArgs, 'line'),\n\t generatedColumn: util.getArg(aArgs, 'column')\n\t };\n\t\n\t var index = this._findMapping(\n\t needle,\n\t this._generatedMappings,\n\t \"generatedLine\",\n\t \"generatedColumn\",\n\t util.compareByGeneratedPositionsDeflated,\n\t util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)\n\t );\n\t\n\t if (index >= 0) {\n\t var mapping = this._generatedMappings[index];\n\t\n\t if (mapping.generatedLine === needle.generatedLine) {\n\t var source = util.getArg(mapping, 'source', null);\n\t if (source !== null) {\n\t source = this._sources.at(source);\n\t if (this.sourceRoot != null) {\n\t source = util.join(this.sourceRoot, source);\n\t }\n\t }\n\t var name = util.getArg(mapping, 'name', null);\n\t if (name !== null) {\n\t name = this._names.at(name);\n\t }\n\t return {\n\t source: source,\n\t line: util.getArg(mapping, 'originalLine', null),\n\t column: util.getArg(mapping, 'originalColumn', null),\n\t name: name\n\t };\n\t }\n\t }\n\t\n\t return {\n\t source: null,\n\t line: null,\n\t column: null,\n\t name: null\n\t };\n\t };\n\t\n\t /**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\t BasicSourceMapConsumer.prototype.hasContentsOfAllSources =\n\t function BasicSourceMapConsumer_hasContentsOfAllSources() {\n\t if (!this.sourcesContent) {\n\t return false;\n\t }\n\t return this.sourcesContent.length >= this._sources.size() &&\n\t !this.sourcesContent.some(function (sc) { return sc == null; });\n\t };\n\t\n\t /**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\t BasicSourceMapConsumer.prototype.sourceContentFor =\n\t function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t if (!this.sourcesContent) {\n\t return null;\n\t }\n\t\n\t if (this.sourceRoot != null) {\n\t aSource = util.relative(this.sourceRoot, aSource);\n\t }\n\t\n\t if (this._sources.has(aSource)) {\n\t return this.sourcesContent[this._sources.indexOf(aSource)];\n\t }\n\t\n\t var url;\n\t if (this.sourceRoot != null\n\t && (url = util.urlParse(this.sourceRoot))) {\n\t // XXX: file:// URIs and absolute paths lead to unexpected behavior for\n\t // many users. We can help them out when they expect file:// URIs to\n\t // behave like it would if they were running a local HTTP server. See\n\t // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.\n\t var fileUriAbsPath = aSource.replace(/^file:\\/\\//, \"\");\n\t if (url.scheme == \"file\"\n\t && this._sources.has(fileUriAbsPath)) {\n\t return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)]\n\t }\n\t\n\t if ((!url.path || url.path == \"/\")\n\t && this._sources.has(\"/\" + aSource)) {\n\t return this.sourcesContent[this._sources.indexOf(\"/\" + aSource)];\n\t }\n\t }\n\t\n\t // This function is used recursively from\n\t // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we\n\t // don't want to throw if we can't find the source - we just want to\n\t // return null, so we provide a flag to exit gracefully.\n\t if (nullOnMissing) {\n\t return null;\n\t }\n\t else {\n\t throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t }\n\t };\n\t\n\t /**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t * - source: The filename of the original source.\n\t * - line: The line number in the original source.\n\t * - column: The column number in the original source.\n\t * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t * closest element that is smaller than or greater than the one we are\n\t * searching for, respectively, if the exact element cannot be found.\n\t * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t * - line: The line number in the generated source, or null.\n\t * - column: The column number in the generated source, or null.\n\t */\n\t BasicSourceMapConsumer.prototype.generatedPositionFor =\n\t function SourceMapConsumer_generatedPositionFor(aArgs) {\n\t var source = util.getArg(aArgs, 'source');\n\t if (this.sourceRoot != null) {\n\t source = util.relative(this.sourceRoot, source);\n\t }\n\t if (!this._sources.has(source)) {\n\t return {\n\t line: null,\n\t column: null,\n\t lastColumn: null\n\t };\n\t }\n\t source = this._sources.indexOf(source);\n\t\n\t var needle = {\n\t source: source,\n\t originalLine: util.getArg(aArgs, 'line'),\n\t originalColumn: util.getArg(aArgs, 'column')\n\t };\n\t\n\t var index = this._findMapping(\n\t needle,\n\t this._originalMappings,\n\t \"originalLine\",\n\t \"originalColumn\",\n\t util.compareByOriginalPositions,\n\t util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)\n\t );\n\t\n\t if (index >= 0) {\n\t var mapping = this._originalMappings[index];\n\t\n\t if (mapping.source === needle.source) {\n\t return {\n\t line: util.getArg(mapping, 'generatedLine', null),\n\t column: util.getArg(mapping, 'generatedColumn', null),\n\t lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t };\n\t }\n\t }\n\t\n\t return {\n\t line: null,\n\t column: null,\n\t lastColumn: null\n\t };\n\t };\n\t\n\t exports.BasicSourceMapConsumer = BasicSourceMapConsumer;\n\t\n\t /**\n\t * An IndexedSourceMapConsumer instance represents a parsed source map which\n\t * we can query for information. It differs from BasicSourceMapConsumer in\n\t * that it takes \"indexed\" source maps (i.e. ones with a \"sections\" field) as\n\t * input.\n\t *\n\t * The only parameter is a raw source map (either as a JSON string, or already\n\t * parsed to an object). According to the spec for indexed source maps, they\n\t * have the following attributes:\n\t *\n\t * - version: Which version of the source map spec this map is following.\n\t * - file: Optional. The generated file this source map is associated with.\n\t * - sections: A list of section definitions.\n\t *\n\t * Each value under the \"sections\" field has two fields:\n\t * - offset: The offset into the original specified at which this section\n\t * begins to apply, defined as an object with a \"line\" and \"column\"\n\t * field.\n\t * - map: A source map definition. This source map could also be indexed,\n\t * but doesn't have to be.\n\t *\n\t * Instead of the \"map\" field, it's also possible to have a \"url\" field\n\t * specifying a URL to retrieve a source map from, but that's currently\n\t * unsupported.\n\t *\n\t * Here's an example source map, taken from the source map spec[0], but\n\t * modified to omit a section which uses the \"url\" field.\n\t *\n\t * {\n\t * version : 3,\n\t * file: \"app.js\",\n\t * sections: [{\n\t * offset: {line:100, column:10},\n\t * map: {\n\t * version : 3,\n\t * file: \"section.js\",\n\t * sources: [\"foo.js\", \"bar.js\"],\n\t * names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t * mappings: \"AAAA,E;;ABCDE;\"\n\t * }\n\t * }],\n\t * }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt\n\t */\n\t function IndexedSourceMapConsumer(aSourceMap) {\n\t var sourceMap = aSourceMap;\n\t if (typeof aSourceMap === 'string') {\n\t sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t }\n\t\n\t var version = util.getArg(sourceMap, 'version');\n\t var sections = util.getArg(sourceMap, 'sections');\n\t\n\t if (version != this._version) {\n\t throw new Error('Unsupported version: ' + version);\n\t }\n\t\n\t this._sources = new ArraySet();\n\t this._names = new ArraySet();\n\t\n\t var lastOffset = {\n\t line: -1,\n\t column: 0\n\t };\n\t this._sections = sections.map(function (s) {\n\t if (s.url) {\n\t // The url field will require support for asynchronicity.\n\t // See https://github.com/mozilla/source-map/issues/16\n\t throw new Error('Support for url field in sections not implemented.');\n\t }\n\t var offset = util.getArg(s, 'offset');\n\t var offsetLine = util.getArg(offset, 'line');\n\t var offsetColumn = util.getArg(offset, 'column');\n\t\n\t if (offsetLine < lastOffset.line ||\n\t (offsetLine === lastOffset.line && offsetColumn < lastOffset.column)) {\n\t throw new Error('Section offsets must be ordered and non-overlapping.');\n\t }\n\t lastOffset = offset;\n\t\n\t return {\n\t generatedOffset: {\n\t // The offset fields are 0-based, but we use 1-based indices when\n\t // encoding/decoding from VLQ.\n\t generatedLine: offsetLine + 1,\n\t generatedColumn: offsetColumn + 1\n\t },\n\t consumer: new SourceMapConsumer(util.getArg(s, 'map'))\n\t }\n\t });\n\t }\n\t\n\t IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\t IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;\n\t\n\t /**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\t IndexedSourceMapConsumer.prototype._version = 3;\n\t\n\t /**\n\t * The list of original sources.\n\t */\n\t Object.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {\n\t get: function () {\n\t var sources = [];\n\t for (var i = 0; i < this._sections.length; i++) {\n\t for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {\n\t sources.push(this._sections[i].consumer.sources[j]);\n\t }\n\t }\n\t return sources;\n\t }\n\t });\n\t\n\t /**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t * - line: The line number in the generated source.\n\t * - column: The column number in the generated source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t * - source: The original source file, or null.\n\t * - line: The line number in the original source, or null.\n\t * - column: The column number in the original source, or null.\n\t * - name: The original identifier, or null.\n\t */\n\t IndexedSourceMapConsumer.prototype.originalPositionFor =\n\t function IndexedSourceMapConsumer_originalPositionFor(aArgs) {\n\t var needle = {\n\t generatedLine: util.getArg(aArgs, 'line'),\n\t generatedColumn: util.getArg(aArgs, 'column')\n\t };\n\t\n\t // Find the section containing the generated position we're trying to map\n\t // to an original position.\n\t var sectionIndex = binarySearch.search(needle, this._sections,\n\t function(needle, section) {\n\t var cmp = needle.generatedLine - section.generatedOffset.generatedLine;\n\t if (cmp) {\n\t return cmp;\n\t }\n\t\n\t return (needle.generatedColumn -\n\t section.generatedOffset.generatedColumn);\n\t });\n\t var section = this._sections[sectionIndex];\n\t\n\t if (!section) {\n\t return {\n\t source: null,\n\t line: null,\n\t column: null,\n\t name: null\n\t };\n\t }\n\t\n\t return section.consumer.originalPositionFor({\n\t line: needle.generatedLine -\n\t (section.generatedOffset.generatedLine - 1),\n\t column: needle.generatedColumn -\n\t (section.generatedOffset.generatedLine === needle.generatedLine\n\t ? section.generatedOffset.generatedColumn - 1\n\t : 0),\n\t bias: aArgs.bias\n\t });\n\t };\n\t\n\t /**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\t IndexedSourceMapConsumer.prototype.hasContentsOfAllSources =\n\t function IndexedSourceMapConsumer_hasContentsOfAllSources() {\n\t return this._sections.every(function (s) {\n\t return s.consumer.hasContentsOfAllSources();\n\t });\n\t };\n\t\n\t /**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\t IndexedSourceMapConsumer.prototype.sourceContentFor =\n\t function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t for (var i = 0; i < this._sections.length; i++) {\n\t var section = this._sections[i];\n\t\n\t var content = section.consumer.sourceContentFor(aSource, true);\n\t if (content) {\n\t return content;\n\t }\n\t }\n\t if (nullOnMissing) {\n\t return null;\n\t }\n\t else {\n\t throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t }\n\t };\n\t\n\t /**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t * - source: The filename of the original source.\n\t * - line: The line number in the original source.\n\t * - column: The column number in the original source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t * - line: The line number in the generated source, or null.\n\t * - column: The column number in the generated source, or null.\n\t */\n\t IndexedSourceMapConsumer.prototype.generatedPositionFor =\n\t function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {\n\t for (var i = 0; i < this._sections.length; i++) {\n\t var section = this._sections[i];\n\t\n\t // Only consider this section if the requested source is in the list of\n\t // sources of the consumer.\n\t if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {\n\t continue;\n\t }\n\t var generatedPosition = section.consumer.generatedPositionFor(aArgs);\n\t if (generatedPosition) {\n\t var ret = {\n\t line: generatedPosition.line +\n\t (section.generatedOffset.generatedLine - 1),\n\t column: generatedPosition.column +\n\t (section.generatedOffset.generatedLine === generatedPosition.line\n\t ? section.generatedOffset.generatedColumn - 1\n\t : 0)\n\t };\n\t return ret;\n\t }\n\t }\n\t\n\t return {\n\t line: null,\n\t column: null\n\t };\n\t };\n\t\n\t /**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\t IndexedSourceMapConsumer.prototype._parseMappings =\n\t function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t this.__generatedMappings = [];\n\t this.__originalMappings = [];\n\t for (var i = 0; i < this._sections.length; i++) {\n\t var section = this._sections[i];\n\t var sectionMappings = section.consumer._generatedMappings;\n\t for (var j = 0; j < sectionMappings.length; j++) {\n\t var mapping = sectionMappings[j];\n\t\n\t var source = section.consumer._sources.at(mapping.source);\n\t if (section.consumer.sourceRoot !== null) {\n\t source = util.join(section.consumer.sourceRoot, source);\n\t }\n\t this._sources.add(source);\n\t source = this._sources.indexOf(source);\n\t\n\t var name = section.consumer._names.at(mapping.name);\n\t this._names.add(name);\n\t name = this._names.indexOf(name);\n\t\n\t // The mappings coming from the consumer for the section have\n\t // generated positions relative to the start of the section, so we\n\t // need to offset them to be relative to the start of the concatenated\n\t // generated file.\n\t var adjustedMapping = {\n\t source: source,\n\t generatedLine: mapping.generatedLine +\n\t (section.generatedOffset.generatedLine - 1),\n\t generatedColumn: mapping.generatedColumn +\n\t (section.generatedOffset.generatedLine === mapping.generatedLine\n\t ? section.generatedOffset.generatedColumn - 1\n\t : 0),\n\t originalLine: mapping.originalLine,\n\t originalColumn: mapping.originalColumn,\n\t name: name\n\t };\n\t\n\t this.__generatedMappings.push(adjustedMapping);\n\t if (typeof adjustedMapping.originalLine === 'number') {\n\t this.__originalMappings.push(adjustedMapping);\n\t }\n\t }\n\t }\n\t\n\t quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t quickSort(this.__originalMappings, util.compareByOriginalPositions);\n\t };\n\t\n\t exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;\n\t}\n\n\n/***/ },\n/* 8 */\n/***/ function(module, exports) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t exports.GREATEST_LOWER_BOUND = 1;\n\t exports.LEAST_UPPER_BOUND = 2;\n\t\n\t /**\n\t * Recursive implementation of binary search.\n\t *\n\t * @param aLow Indices here and lower do not contain the needle.\n\t * @param aHigh Indices here and higher do not contain the needle.\n\t * @param aNeedle The element being searched for.\n\t * @param aHaystack The non-empty array being searched.\n\t * @param aCompare Function which takes two elements and returns -1, 0, or 1.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t * closest element that is smaller than or greater than the one we are\n\t * searching for, respectively, if the exact element cannot be found.\n\t */\n\t function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {\n\t // This function terminates when one of the following is true:\n\t //\n\t // 1. We find the exact element we are looking for.\n\t //\n\t // 2. We did not find the exact element, but we can return the index of\n\t // the next-closest element.\n\t //\n\t // 3. We did not find the exact element, and there is no next-closest\n\t // element than the one we are searching for, so we return -1.\n\t var mid = Math.floor((aHigh - aLow) / 2) + aLow;\n\t var cmp = aCompare(aNeedle, aHaystack[mid], true);\n\t if (cmp === 0) {\n\t // Found the element we are looking for.\n\t return mid;\n\t }\n\t else if (cmp > 0) {\n\t // Our needle is greater than aHaystack[mid].\n\t if (aHigh - mid > 1) {\n\t // The element is in the upper half.\n\t return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);\n\t }\n\t\n\t // The exact needle element was not found in this haystack. Determine if\n\t // we are in termination case (3) or (2) and return the appropriate thing.\n\t if (aBias == exports.LEAST_UPPER_BOUND) {\n\t return aHigh < aHaystack.length ? aHigh : -1;\n\t } else {\n\t return mid;\n\t }\n\t }\n\t else {\n\t // Our needle is less than aHaystack[mid].\n\t if (mid - aLow > 1) {\n\t // The element is in the lower half.\n\t return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);\n\t }\n\t\n\t // we are in termination case (3) or (2) and return the appropriate thing.\n\t if (aBias == exports.LEAST_UPPER_BOUND) {\n\t return mid;\n\t } else {\n\t return aLow < 0 ? -1 : aLow;\n\t }\n\t }\n\t }\n\t\n\t /**\n\t * This is an implementation of binary search which will always try and return\n\t * the index of the closest element if there is no exact hit. This is because\n\t * mappings between original and generated line/col pairs are single points,\n\t * and there is an implicit region between each of them, so a miss just means\n\t * that you aren't on the very start of a region.\n\t *\n\t * @param aNeedle The element you are looking for.\n\t * @param aHaystack The array that is being searched.\n\t * @param aCompare A function which takes the needle and an element in the\n\t * array and returns -1, 0, or 1 depending on whether the needle is less\n\t * than, equal to, or greater than the element, respectively.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t * closest element that is smaller than or greater than the one we are\n\t * searching for, respectively, if the exact element cannot be found.\n\t * Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.\n\t */\n\t exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {\n\t if (aHaystack.length === 0) {\n\t return -1;\n\t }\n\t\n\t var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,\n\t aCompare, aBias || exports.GREATEST_LOWER_BOUND);\n\t if (index < 0) {\n\t return -1;\n\t }\n\t\n\t // We have found either the exact element, or the next-closest element than\n\t // the one we are searching for. However, there may be more than one such\n\t // element. Make sure we always return the smallest of these.\n\t while (index - 1 >= 0) {\n\t if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {\n\t break;\n\t }\n\t --index;\n\t }\n\t\n\t return index;\n\t };\n\t}\n\n\n/***/ },\n/* 9 */\n/***/ function(module, exports) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t // It turns out that some (most?) JavaScript engines don't self-host\n\t // `Array.prototype.sort`. This makes sense because C++ will likely remain\n\t // faster than JS when doing raw CPU-intensive sorting. However, when using a\n\t // custom comparator function, calling back and forth between the VM's C++ and\n\t // JIT'd JS is rather slow *and* loses JIT type information, resulting in\n\t // worse generated code for the comparator function than would be optimal. In\n\t // fact, when sorting with a comparator, these costs outweigh the benefits of\n\t // sorting in C++. By using our own JS-implemented Quick Sort (below), we get\n\t // a ~3500ms mean speed-up in `bench/bench.html`.\n\t\n\t /**\n\t * Swap the elements indexed by `x` and `y` in the array `ary`.\n\t *\n\t * @param {Array} ary\n\t * The array.\n\t * @param {Number} x\n\t * The index of the first item.\n\t * @param {Number} y\n\t * The index of the second item.\n\t */\n\t function swap(ary, x, y) {\n\t var temp = ary[x];\n\t ary[x] = ary[y];\n\t ary[y] = temp;\n\t }\n\t\n\t /**\n\t * Returns a random integer within the range `low .. high` inclusive.\n\t *\n\t * @param {Number} low\n\t * The lower bound on the range.\n\t * @param {Number} high\n\t * The upper bound on the range.\n\t */\n\t function randomIntInRange(low, high) {\n\t return Math.round(low + (Math.random() * (high - low)));\n\t }\n\t\n\t /**\n\t * The Quick Sort algorithm.\n\t *\n\t * @param {Array} ary\n\t * An array to sort.\n\t * @param {function} comparator\n\t * Function to use to compare two items.\n\t * @param {Number} p\n\t * Start index of the array\n\t * @param {Number} r\n\t * End index of the array\n\t */\n\t function doQuickSort(ary, comparator, p, r) {\n\t // If our lower bound is less than our upper bound, we (1) partition the\n\t // array into two pieces and (2) recurse on each half. If it is not, this is\n\t // the empty array and our base case.\n\t\n\t if (p < r) {\n\t // (1) Partitioning.\n\t //\n\t // The partitioning chooses a pivot between `p` and `r` and moves all\n\t // elements that are less than or equal to the pivot to the before it, and\n\t // all the elements that are greater than it after it. The effect is that\n\t // once partition is done, the pivot is in the exact place it will be when\n\t // the array is put in sorted order, and it will not need to be moved\n\t // again. This runs in O(n) time.\n\t\n\t // Always choose a random pivot so that an input array which is reverse\n\t // sorted does not cause O(n^2) running time.\n\t var pivotIndex = randomIntInRange(p, r);\n\t var i = p - 1;\n\t\n\t swap(ary, pivotIndex, r);\n\t var pivot = ary[r];\n\t\n\t // Immediately after `j` is incremented in this loop, the following hold\n\t // true:\n\t //\n\t // * Every element in `ary[p .. i]` is less than or equal to the pivot.\n\t //\n\t // * Every element in `ary[i+1 .. j-1]` is greater than the pivot.\n\t for (var j = p; j < r; j++) {\n\t if (comparator(ary[j], pivot) <= 0) {\n\t i += 1;\n\t swap(ary, i, j);\n\t }\n\t }\n\t\n\t swap(ary, i + 1, j);\n\t var q = i + 1;\n\t\n\t // (2) Recurse on each half.\n\t\n\t doQuickSort(ary, comparator, p, q - 1);\n\t doQuickSort(ary, comparator, q + 1, r);\n\t }\n\t }\n\t\n\t /**\n\t * Sort the given array in-place with the given comparator function.\n\t *\n\t * @param {Array} ary\n\t * An array to sort.\n\t * @param {function} comparator\n\t * Function to use to compare two items.\n\t */\n\t exports.quickSort = function (ary, comparator) {\n\t doQuickSort(ary, comparator, 0, ary.length - 1);\n\t };\n\t}\n\n\n/***/ },\n/* 10 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\t{\n\t var SourceMapGenerator = __webpack_require__(1).SourceMapGenerator;\n\t var util = __webpack_require__(4);\n\t\n\t // Matches a Windows-style `\\r\\n` newline or a `\\n` newline used by all other\n\t // operating systems these days (capturing the result).\n\t var REGEX_NEWLINE = /(\\r?\\n)/;\n\t\n\t // Newline character code for charCodeAt() comparisons\n\t var NEWLINE_CODE = 10;\n\t\n\t // Private symbol for identifying `SourceNode`s when multiple versions of\n\t // the source-map library are loaded. This MUST NOT CHANGE across\n\t // versions!\n\t var isSourceNode = \"$$$isSourceNode$$$\";\n\t\n\t /**\n\t * SourceNodes provide a way to abstract over interpolating/concatenating\n\t * snippets of generated JavaScript source code while maintaining the line and\n\t * column information associated with the original source code.\n\t *\n\t * @param aLine The original line number.\n\t * @param aColumn The original column number.\n\t * @param aSource The original source's filename.\n\t * @param aChunks Optional. An array of strings which are snippets of\n\t * generated JS, or other SourceNodes.\n\t * @param aName The original identifier.\n\t */\n\t function SourceNode(aLine, aColumn, aSource, aChunks, aName) {\n\t this.children = [];\n\t this.sourceContents = {};\n\t this.line = aLine == null ? null : aLine;\n\t this.column = aColumn == null ? null : aColumn;\n\t this.source = aSource == null ? null : aSource;\n\t this.name = aName == null ? null : aName;\n\t this[isSourceNode] = true;\n\t if (aChunks != null) this.add(aChunks);\n\t }\n\t\n\t /**\n\t * Creates a SourceNode from generated code and a SourceMapConsumer.\n\t *\n\t * @param aGeneratedCode The generated code\n\t * @param aSourceMapConsumer The SourceMap for the generated code\n\t * @param aRelativePath Optional. The path that relative sources in the\n\t * SourceMapConsumer should be relative to.\n\t */\n\t SourceNode.fromStringWithSourceMap =\n\t function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {\n\t // The SourceNode we want to fill with the generated code\n\t // and the SourceMap\n\t var node = new SourceNode();\n\t\n\t // All even indices of this array are one line of the generated code,\n\t // while all odd indices are the newlines between two adjacent lines\n\t // (since `REGEX_NEWLINE` captures its match).\n\t // Processed fragments are removed from this array, by calling `shiftNextLine`.\n\t var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);\n\t var shiftNextLine = function() {\n\t var lineContents = remainingLines.shift();\n\t // The last line of a file might not have a newline.\n\t var newLine = remainingLines.shift() || \"\";\n\t return lineContents + newLine;\n\t };\n\t\n\t // We need to remember the position of \"remainingLines\"\n\t var lastGeneratedLine = 1, lastGeneratedColumn = 0;\n\t\n\t // The generate SourceNodes we need a code range.\n\t // To extract it current and last mapping is used.\n\t // Here we store the last mapping.\n\t var lastMapping = null;\n\t\n\t aSourceMapConsumer.eachMapping(function (mapping) {\n\t if (lastMapping !== null) {\n\t // We add the code from \"lastMapping\" to \"mapping\":\n\t // First check if there is a new line in between.\n\t if (lastGeneratedLine < mapping.generatedLine) {\n\t // Associate first line with \"lastMapping\"\n\t addMappingWithCode(lastMapping, shiftNextLine());\n\t lastGeneratedLine++;\n\t lastGeneratedColumn = 0;\n\t // The remaining code is added without mapping\n\t } else {\n\t // There is no new line in between.\n\t // Associate the code between \"lastGeneratedColumn\" and\n\t // \"mapping.generatedColumn\" with \"lastMapping\"\n\t var nextLine = remainingLines[0];\n\t var code = nextLine.substr(0, mapping.generatedColumn -\n\t lastGeneratedColumn);\n\t remainingLines[0] = nextLine.substr(mapping.generatedColumn -\n\t lastGeneratedColumn);\n\t lastGeneratedColumn = mapping.generatedColumn;\n\t addMappingWithCode(lastMapping, code);\n\t // No more remaining code, continue\n\t lastMapping = mapping;\n\t return;\n\t }\n\t }\n\t // We add the generated code until the first mapping\n\t // to the SourceNode without any mapping.\n\t // Each line is added as separate string.\n\t while (lastGeneratedLine < mapping.generatedLine) {\n\t node.add(shiftNextLine());\n\t lastGeneratedLine++;\n\t }\n\t if (lastGeneratedColumn < mapping.generatedColumn) {\n\t var nextLine = remainingLines[0];\n\t node.add(nextLine.substr(0, mapping.generatedColumn));\n\t remainingLines[0] = nextLine.substr(mapping.generatedColumn);\n\t lastGeneratedColumn = mapping.generatedColumn;\n\t }\n\t lastMapping = mapping;\n\t }, this);\n\t // We have processed all mappings.\n\t if (remainingLines.length > 0) {\n\t if (lastMapping) {\n\t // Associate the remaining code in the current line with \"lastMapping\"\n\t addMappingWithCode(lastMapping, shiftNextLine());\n\t }\n\t // and add the remaining lines without any mapping\n\t node.add(remainingLines.join(\"\"));\n\t }\n\t\n\t // Copy sourcesContent into SourceNode\n\t aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t if (content != null) {\n\t if (aRelativePath != null) {\n\t sourceFile = util.join(aRelativePath, sourceFile);\n\t }\n\t node.setSourceContent(sourceFile, content);\n\t }\n\t });\n\t\n\t return node;\n\t\n\t function addMappingWithCode(mapping, code) {\n\t if (mapping === null || mapping.source === undefined) {\n\t node.add(code);\n\t } else {\n\t var source = aRelativePath\n\t ? util.join(aRelativePath, mapping.source)\n\t : mapping.source;\n\t node.add(new SourceNode(mapping.originalLine,\n\t mapping.originalColumn,\n\t source,\n\t code,\n\t mapping.name));\n\t }\n\t }\n\t };\n\t\n\t /**\n\t * Add a chunk of generated JS to this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t * SourceNode, or an array where each member is one of those things.\n\t */\n\t SourceNode.prototype.add = function SourceNode_add(aChunk) {\n\t if (Array.isArray(aChunk)) {\n\t aChunk.forEach(function (chunk) {\n\t this.add(chunk);\n\t }, this);\n\t }\n\t else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t if (aChunk) {\n\t this.children.push(aChunk);\n\t }\n\t }\n\t else {\n\t throw new TypeError(\n\t \"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk\n\t );\n\t }\n\t return this;\n\t };\n\t\n\t /**\n\t * Add a chunk of generated JS to the beginning of this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t * SourceNode, or an array where each member is one of those things.\n\t */\n\t SourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {\n\t if (Array.isArray(aChunk)) {\n\t for (var i = aChunk.length-1; i >= 0; i--) {\n\t this.prepend(aChunk[i]);\n\t }\n\t }\n\t else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t this.children.unshift(aChunk);\n\t }\n\t else {\n\t throw new TypeError(\n\t \"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk\n\t );\n\t }\n\t return this;\n\t };\n\t\n\t /**\n\t * Walk over the tree of JS snippets in this node and its children. The\n\t * walking function is called once for each snippet of JS and is passed that\n\t * snippet and the its original associated source's line/column location.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\t SourceNode.prototype.walk = function SourceNode_walk(aFn) {\n\t var chunk;\n\t for (var i = 0, len = this.children.length; i < len; i++) {\n\t chunk = this.children[i];\n\t if (chunk[isSourceNode]) {\n\t chunk.walk(aFn);\n\t }\n\t else {\n\t if (chunk !== '') {\n\t aFn(chunk, { source: this.source,\n\t line: this.line,\n\t column: this.column,\n\t name: this.name });\n\t }\n\t }\n\t }\n\t };\n\t\n\t /**\n\t * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between\n\t * each of `this.children`.\n\t *\n\t * @param aSep The separator.\n\t */\n\t SourceNode.prototype.join = function SourceNode_join(aSep) {\n\t var newChildren;\n\t var i;\n\t var len = this.children.length;\n\t if (len > 0) {\n\t newChildren = [];\n\t for (i = 0; i < len-1; i++) {\n\t newChildren.push(this.children[i]);\n\t newChildren.push(aSep);\n\t }\n\t newChildren.push(this.children[i]);\n\t this.children = newChildren;\n\t }\n\t return this;\n\t };\n\t\n\t /**\n\t * Call String.prototype.replace on the very right-most source snippet. Useful\n\t * for trimming whitespace from the end of a source node, etc.\n\t *\n\t * @param aPattern The pattern to replace.\n\t * @param aReplacement The thing to replace the pattern with.\n\t */\n\t SourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {\n\t var lastChild = this.children[this.children.length - 1];\n\t if (lastChild[isSourceNode]) {\n\t lastChild.replaceRight(aPattern, aReplacement);\n\t }\n\t else if (typeof lastChild === 'string') {\n\t this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);\n\t }\n\t else {\n\t this.children.push(''.replace(aPattern, aReplacement));\n\t }\n\t return this;\n\t };\n\t\n\t /**\n\t * Set the source content for a source file. This will be added to the SourceMapGenerator\n\t * in the sourcesContent field.\n\t *\n\t * @param aSourceFile The filename of the source file\n\t * @param aSourceContent The content of the source file\n\t */\n\t SourceNode.prototype.setSourceContent =\n\t function SourceNode_setSourceContent(aSourceFile, aSourceContent) {\n\t this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;\n\t };\n\t\n\t /**\n\t * Walk over the tree of SourceNodes. The walking function is called for each\n\t * source file content and is passed the filename and source content.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\t SourceNode.prototype.walkSourceContents =\n\t function SourceNode_walkSourceContents(aFn) {\n\t for (var i = 0, len = this.children.length; i < len; i++) {\n\t if (this.children[i][isSourceNode]) {\n\t this.children[i].walkSourceContents(aFn);\n\t }\n\t }\n\t\n\t var sources = Object.keys(this.sourceContents);\n\t for (var i = 0, len = sources.length; i < len; i++) {\n\t aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);\n\t }\n\t };\n\t\n\t /**\n\t * Return the string representation of this source node. Walks over the tree\n\t * and concatenates all the various snippets together to one string.\n\t */\n\t SourceNode.prototype.toString = function SourceNode_toString() {\n\t var str = \"\";\n\t this.walk(function (chunk) {\n\t str += chunk;\n\t });\n\t return str;\n\t };\n\t\n\t /**\n\t * Returns the string representation of this source node along with a source\n\t * map.\n\t */\n\t SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {\n\t var generated = {\n\t code: \"\",\n\t line: 1,\n\t column: 0\n\t };\n\t var map = new SourceMapGenerator(aArgs);\n\t var sourceMappingActive = false;\n\t var lastOriginalSource = null;\n\t var lastOriginalLine = null;\n\t var lastOriginalColumn = null;\n\t var lastOriginalName = null;\n\t this.walk(function (chunk, original) {\n\t generated.code += chunk;\n\t if (original.source !== null\n\t && original.line !== null\n\t && original.column !== null) {\n\t if(lastOriginalSource !== original.source\n\t || lastOriginalLine !== original.line\n\t || lastOriginalColumn !== original.column\n\t || lastOriginalName !== original.name) {\n\t map.addMapping({\n\t source: original.source,\n\t original: {\n\t line: original.line,\n\t column: original.column\n\t },\n\t generated: {\n\t line: generated.line,\n\t column: generated.column\n\t },\n\t name: original.name\n\t });\n\t }\n\t lastOriginalSource = original.source;\n\t lastOriginalLine = original.line;\n\t lastOriginalColumn = original.column;\n\t lastOriginalName = original.name;\n\t sourceMappingActive = true;\n\t } else if (sourceMappingActive) {\n\t map.addMapping({\n\t generated: {\n\t line: generated.line,\n\t column: generated.column\n\t }\n\t });\n\t lastOriginalSource = null;\n\t sourceMappingActive = false;\n\t }\n\t for (var idx = 0, length = chunk.length; idx < length; idx++) {\n\t if (chunk.charCodeAt(idx) === NEWLINE_CODE) {\n\t generated.line++;\n\t generated.column = 0;\n\t // Mappings end at eol\n\t if (idx + 1 === length) {\n\t lastOriginalSource = null;\n\t sourceMappingActive = false;\n\t } else if (sourceMappingActive) {\n\t map.addMapping({\n\t source: original.source,\n\t original: {\n\t line: original.line,\n\t column: original.column\n\t },\n\t generated: {\n\t line: generated.line,\n\t column: generated.column\n\t },\n\t name: original.name\n\t });\n\t }\n\t } else {\n\t generated.column++;\n\t }\n\t }\n\t });\n\t this.walkSourceContents(function (sourceFile, sourceContent) {\n\t map.setSourceContent(sourceFile, sourceContent);\n\t });\n\t\n\t return { code: generated.code, map: map };\n\t };\n\t\n\t exports.SourceNode = SourceNode;\n\t}\n\n\n/***/ }\n/******/ ])\n});\n;\n\n\n/** WEBPACK FOOTER **\n ** source-map.min.js\n **/"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap a7d787c028005295f8d2\n **/","/*\n * Copyright 2009-2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE.txt or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\nexports.SourceMapGenerator = require('./lib/source-map-generator').SourceMapGenerator;\nexports.SourceMapConsumer = require('./lib/source-map-consumer').SourceMapConsumer;\nexports.SourceNode = require('./lib/source-node').SourceNode;\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./source-map.js\n ** module id = 0\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var base64VLQ = require('./base64-vlq');\n var util = require('./util');\n var ArraySet = require('./array-set').ArraySet;\n var MappingList = require('./mapping-list').MappingList;\n\n /**\n * An instance of the SourceMapGenerator represents a source map which is\n * being built incrementally. You may pass an object with the following\n * properties:\n *\n * - file: The filename of the generated source.\n * - sourceRoot: A root for all relative URLs in this source map.\n */\n function SourceMapGenerator(aArgs) {\n if (!aArgs) {\n aArgs = {};\n }\n this._file = util.getArg(aArgs, 'file', null);\n this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);\n this._skipValidation = util.getArg(aArgs, 'skipValidation', false);\n this._sources = new ArraySet();\n this._names = new ArraySet();\n this._mappings = new MappingList();\n this._sourcesContents = null;\n }\n\n SourceMapGenerator.prototype._version = 3;\n\n /**\n * Creates a new SourceMapGenerator based on a SourceMapConsumer\n *\n * @param aSourceMapConsumer The SourceMap.\n */\n SourceMapGenerator.fromSourceMap =\n function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) {\n var sourceRoot = aSourceMapConsumer.sourceRoot;\n var generator = new SourceMapGenerator({\n file: aSourceMapConsumer.file,\n sourceRoot: sourceRoot\n });\n aSourceMapConsumer.eachMapping(function (mapping) {\n var newMapping = {\n generated: {\n line: mapping.generatedLine,\n column: mapping.generatedColumn\n }\n };\n\n if (mapping.source != null) {\n newMapping.source = mapping.source;\n if (sourceRoot != null) {\n newMapping.source = util.relative(sourceRoot, newMapping.source);\n }\n\n newMapping.original = {\n line: mapping.originalLine,\n column: mapping.originalColumn\n };\n\n if (mapping.name != null) {\n newMapping.name = mapping.name;\n }\n }\n\n generator.addMapping(newMapping);\n });\n aSourceMapConsumer.sources.forEach(function (sourceFile) {\n var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n if (content != null) {\n generator.setSourceContent(sourceFile, content);\n }\n });\n return generator;\n };\n\n /**\n * Add a single mapping from original source line and column to the generated\n * source's line and column for this source map being created. The mapping\n * object should have the following properties:\n *\n * - generated: An object with the generated line and column positions.\n * - original: An object with the original line and column positions.\n * - source: The original source file (relative to the sourceRoot).\n * - name: An optional original token name for this mapping.\n */\n SourceMapGenerator.prototype.addMapping =\n function SourceMapGenerator_addMapping(aArgs) {\n var generated = util.getArg(aArgs, 'generated');\n var original = util.getArg(aArgs, 'original', null);\n var source = util.getArg(aArgs, 'source', null);\n var name = util.getArg(aArgs, 'name', null);\n\n if (!this._skipValidation) {\n this._validateMapping(generated, original, source, name);\n }\n\n if (source != null && !this._sources.has(source)) {\n this._sources.add(source);\n }\n\n if (name != null && !this._names.has(name)) {\n this._names.add(name);\n }\n\n this._mappings.add({\n generatedLine: generated.line,\n generatedColumn: generated.column,\n originalLine: original != null && original.line,\n originalColumn: original != null && original.column,\n source: source,\n name: name\n });\n };\n\n /**\n * Set the source content for a source file.\n */\n SourceMapGenerator.prototype.setSourceContent =\n function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {\n var source = aSourceFile;\n if (this._sourceRoot != null) {\n source = util.relative(this._sourceRoot, source);\n }\n\n if (aSourceContent != null) {\n // Add the source content to the _sourcesContents map.\n // Create a new _sourcesContents map if the property is null.\n if (!this._sourcesContents) {\n this._sourcesContents = {};\n }\n this._sourcesContents[util.toSetString(source)] = aSourceContent;\n } else if (this._sourcesContents) {\n // Remove the source file from the _sourcesContents map.\n // If the _sourcesContents map is empty, set the property to null.\n delete this._sourcesContents[util.toSetString(source)];\n if (Object.keys(this._sourcesContents).length === 0) {\n this._sourcesContents = null;\n }\n }\n };\n\n /**\n * Applies the mappings of a sub-source-map for a specific source file to the\n * source map being generated. Each mapping to the supplied source file is\n * rewritten using the supplied source map. Note: The resolution for the\n * resulting mappings is the minimium of this map and the supplied map.\n *\n * @param aSourceMapConsumer The source map to be applied.\n * @param aSourceFile Optional. The filename of the source file.\n * If omitted, SourceMapConsumer's file property will be used.\n * @param aSourceMapPath Optional. The dirname of the path to the source map\n * to be applied. If relative, it is relative to the SourceMapConsumer.\n * This parameter is needed when the two source maps aren't in the same\n * directory, and the source map to be applied contains relative source\n * paths. If so, those relative source paths need to be rewritten\n * relative to the SourceMapGenerator.\n */\n SourceMapGenerator.prototype.applySourceMap =\n function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {\n var sourceFile = aSourceFile;\n // If aSourceFile is omitted, we will use the file property of the SourceMap\n if (aSourceFile == null) {\n if (aSourceMapConsumer.file == null) {\n throw new Error(\n 'SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' +\n 'or the source map\\'s \"file\" property. Both were omitted.'\n );\n }\n sourceFile = aSourceMapConsumer.file;\n }\n var sourceRoot = this._sourceRoot;\n // Make \"sourceFile\" relative if an absolute Url is passed.\n if (sourceRoot != null) {\n sourceFile = util.relative(sourceRoot, sourceFile);\n }\n // Applying the SourceMap can add and remove items from the sources and\n // the names array.\n var newSources = new ArraySet();\n var newNames = new ArraySet();\n\n // Find mappings for the \"sourceFile\"\n this._mappings.unsortedForEach(function (mapping) {\n if (mapping.source === sourceFile && mapping.originalLine != null) {\n // Check if it can be mapped by the source map, then update the mapping.\n var original = aSourceMapConsumer.originalPositionFor({\n line: mapping.originalLine,\n column: mapping.originalColumn\n });\n if (original.source != null) {\n // Copy mapping\n mapping.source = original.source;\n if (aSourceMapPath != null) {\n mapping.source = util.join(aSourceMapPath, mapping.source)\n }\n if (sourceRoot != null) {\n mapping.source = util.relative(sourceRoot, mapping.source);\n }\n mapping.originalLine = original.line;\n mapping.originalColumn = original.column;\n if (original.name != null) {\n mapping.name = original.name;\n }\n }\n }\n\n var source = mapping.source;\n if (source != null && !newSources.has(source)) {\n newSources.add(source);\n }\n\n var name = mapping.name;\n if (name != null && !newNames.has(name)) {\n newNames.add(name);\n }\n\n }, this);\n this._sources = newSources;\n this._names = newNames;\n\n // Copy sourcesContents of applied map.\n aSourceMapConsumer.sources.forEach(function (sourceFile) {\n var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n if (content != null) {\n if (aSourceMapPath != null) {\n sourceFile = util.join(aSourceMapPath, sourceFile);\n }\n if (sourceRoot != null) {\n sourceFile = util.relative(sourceRoot, sourceFile);\n }\n this.setSourceContent(sourceFile, content);\n }\n }, this);\n };\n\n /**\n * A mapping can have one of the three levels of data:\n *\n * 1. Just the generated position.\n * 2. The Generated position, original position, and original source.\n * 3. Generated and original position, original source, as well as a name\n * token.\n *\n * To maintain consistency, we validate that any new mapping being added falls\n * in to one of these categories.\n */\n SourceMapGenerator.prototype._validateMapping =\n function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource,\n aName) {\n if (aGenerated && 'line' in aGenerated && 'column' in aGenerated\n && aGenerated.line > 0 && aGenerated.column >= 0\n && !aOriginal && !aSource && !aName) {\n // Case 1.\n return;\n }\n else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated\n && aOriginal && 'line' in aOriginal && 'column' in aOriginal\n && aGenerated.line > 0 && aGenerated.column >= 0\n && aOriginal.line > 0 && aOriginal.column >= 0\n && aSource) {\n // Cases 2 and 3.\n return;\n }\n else {\n throw new Error('Invalid mapping: ' + JSON.stringify({\n generated: aGenerated,\n source: aSource,\n original: aOriginal,\n name: aName\n }));\n }\n };\n\n /**\n * Serialize the accumulated mappings in to the stream of base 64 VLQs\n * specified by the source map format.\n */\n SourceMapGenerator.prototype._serializeMappings =\n function SourceMapGenerator_serializeMappings() {\n var previousGeneratedColumn = 0;\n var previousGeneratedLine = 1;\n var previousOriginalColumn = 0;\n var previousOriginalLine = 0;\n var previousName = 0;\n var previousSource = 0;\n var result = '';\n var mapping;\n var nameIdx;\n var sourceIdx;\n\n var mappings = this._mappings.toArray();\n for (var i = 0, len = mappings.length; i < len; i++) {\n mapping = mappings[i];\n\n if (mapping.generatedLine !== previousGeneratedLine) {\n previousGeneratedColumn = 0;\n while (mapping.generatedLine !== previousGeneratedLine) {\n result += ';';\n previousGeneratedLine++;\n }\n }\n else {\n if (i > 0) {\n if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {\n continue;\n }\n result += ',';\n }\n }\n\n result += base64VLQ.encode(mapping.generatedColumn\n - previousGeneratedColumn);\n previousGeneratedColumn = mapping.generatedColumn;\n\n if (mapping.source != null) {\n sourceIdx = this._sources.indexOf(mapping.source);\n result += base64VLQ.encode(sourceIdx - previousSource);\n previousSource = sourceIdx;\n\n // lines are stored 0-based in SourceMap spec version 3\n result += base64VLQ.encode(mapping.originalLine - 1\n - previousOriginalLine);\n previousOriginalLine = mapping.originalLine - 1;\n\n result += base64VLQ.encode(mapping.originalColumn\n - previousOriginalColumn);\n previousOriginalColumn = mapping.originalColumn;\n\n if (mapping.name != null) {\n nameIdx = this._names.indexOf(mapping.name);\n result += base64VLQ.encode(nameIdx - previousName);\n previousName = nameIdx;\n }\n }\n }\n\n return result;\n };\n\n SourceMapGenerator.prototype._generateSourcesContent =\n function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {\n return aSources.map(function (source) {\n if (!this._sourcesContents) {\n return null;\n }\n if (aSourceRoot != null) {\n source = util.relative(aSourceRoot, source);\n }\n var key = util.toSetString(source);\n return Object.prototype.hasOwnProperty.call(this._sourcesContents,\n key)\n ? this._sourcesContents[key]\n : null;\n }, this);\n };\n\n /**\n * Externalize the source map.\n */\n SourceMapGenerator.prototype.toJSON =\n function SourceMapGenerator_toJSON() {\n var map = {\n version: this._version,\n sources: this._sources.toArray(),\n names: this._names.toArray(),\n mappings: this._serializeMappings()\n };\n if (this._file != null) {\n map.file = this._file;\n }\n if (this._sourceRoot != null) {\n map.sourceRoot = this._sourceRoot;\n }\n if (this._sourcesContents) {\n map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);\n }\n\n return map;\n };\n\n /**\n * Render the source map being generated to a string.\n */\n SourceMapGenerator.prototype.toString =\n function SourceMapGenerator_toString() {\n return JSON.stringify(this.toJSON());\n };\n\n exports.SourceMapGenerator = SourceMapGenerator;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/source-map-generator.js\n ** module id = 1\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n *\n * Based on the Base 64 VLQ implementation in Closure Compiler:\n * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java\n *\n * Copyright 2011 The Closure Compiler Authors. All rights reserved.\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following\n * disclaimer in the documentation and/or other materials provided\n * with the distribution.\n * * Neither the name of Google Inc. nor the names of its\n * contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n{\n var base64 = require('./base64');\n\n // A single base 64 digit can contain 6 bits of data. For the base 64 variable\n // length quantities we use in the source map spec, the first bit is the sign,\n // the next four bits are the actual value, and the 6th bit is the\n // continuation bit. The continuation bit tells us whether there are more\n // digits in this value following this digit.\n //\n // Continuation\n // | Sign\n // | |\n // V V\n // 101011\n\n var VLQ_BASE_SHIFT = 5;\n\n // binary: 100000\n var VLQ_BASE = 1 << VLQ_BASE_SHIFT;\n\n // binary: 011111\n var VLQ_BASE_MASK = VLQ_BASE - 1;\n\n // binary: 100000\n var VLQ_CONTINUATION_BIT = VLQ_BASE;\n\n /**\n * Converts from a two-complement value to a value where the sign bit is\n * placed in the least significant bit. For example, as decimals:\n * 1 becomes 2 (10 binary), -1 becomes 3 (11 binary)\n * 2 becomes 4 (100 binary), -2 becomes 5 (101 binary)\n */\n function toVLQSigned(aValue) {\n return aValue < 0\n ? ((-aValue) << 1) + 1\n : (aValue << 1) + 0;\n }\n\n /**\n * Converts to a two-complement value from a value where the sign bit is\n * placed in the least significant bit. For example, as decimals:\n * 2 (10 binary) becomes 1, 3 (11 binary) becomes -1\n * 4 (100 binary) becomes 2, 5 (101 binary) becomes -2\n */\n function fromVLQSigned(aValue) {\n var isNegative = (aValue & 1) === 1;\n var shifted = aValue >> 1;\n return isNegative\n ? -shifted\n : shifted;\n }\n\n /**\n * Returns the base 64 VLQ encoded value.\n */\n exports.encode = function base64VLQ_encode(aValue) {\n var encoded = \"\";\n var digit;\n\n var vlq = toVLQSigned(aValue);\n\n do {\n digit = vlq & VLQ_BASE_MASK;\n vlq >>>= VLQ_BASE_SHIFT;\n if (vlq > 0) {\n // There are still more digits in this value, so we must make sure the\n // continuation bit is marked.\n digit |= VLQ_CONTINUATION_BIT;\n }\n encoded += base64.encode(digit);\n } while (vlq > 0);\n\n return encoded;\n };\n\n /**\n * Decodes the next base 64 VLQ value from the given string and returns the\n * value and the rest of the string via the out parameter.\n */\n exports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {\n var strLen = aStr.length;\n var result = 0;\n var shift = 0;\n var continuation, digit;\n\n do {\n if (aIndex >= strLen) {\n throw new Error(\"Expected more digits in base 64 VLQ value.\");\n }\n\n digit = base64.decode(aStr.charCodeAt(aIndex++));\n if (digit === -1) {\n throw new Error(\"Invalid base64 digit: \" + aStr.charAt(aIndex - 1));\n }\n\n continuation = !!(digit & VLQ_CONTINUATION_BIT);\n digit &= VLQ_BASE_MASK;\n result = result + (digit << shift);\n shift += VLQ_BASE_SHIFT;\n } while (continuation);\n\n aOutParam.value = fromVLQSigned(result);\n aOutParam.rest = aIndex;\n };\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/base64-vlq.js\n ** module id = 2\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');\n\n /**\n * Encode an integer in the range of 0 to 63 to a single base 64 digit.\n */\n exports.encode = function (number) {\n if (0 <= number && number < intToCharMap.length) {\n return intToCharMap[number];\n }\n throw new TypeError(\"Must be between 0 and 63: \" + number);\n };\n\n /**\n * Decode a single base 64 character code digit to an integer. Returns -1 on\n * failure.\n */\n exports.decode = function (charCode) {\n var bigA = 65; // 'A'\n var bigZ = 90; // 'Z'\n\n var littleA = 97; // 'a'\n var littleZ = 122; // 'z'\n\n var zero = 48; // '0'\n var nine = 57; // '9'\n\n var plus = 43; // '+'\n var slash = 47; // '/'\n\n var littleOffset = 26;\n var numberOffset = 52;\n\n // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ\n if (bigA <= charCode && charCode <= bigZ) {\n return (charCode - bigA);\n }\n\n // 26 - 51: abcdefghijklmnopqrstuvwxyz\n if (littleA <= charCode && charCode <= littleZ) {\n return (charCode - littleA + littleOffset);\n }\n\n // 52 - 61: 0123456789\n if (zero <= charCode && charCode <= nine) {\n return (charCode - zero + numberOffset);\n }\n\n // 62: +\n if (charCode == plus) {\n return 62;\n }\n\n // 63: /\n if (charCode == slash) {\n return 63;\n }\n\n // Invalid base64 digit.\n return -1;\n };\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/base64.js\n ** module id = 3\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n /**\n * This is a helper function for getting values from parameter/options\n * objects.\n *\n * @param args The object we are extracting values from\n * @param name The name of the property we are getting.\n * @param defaultValue An optional value to return if the property is missing\n * from the object. If this is not specified and the property is missing, an\n * error will be thrown.\n */\n function getArg(aArgs, aName, aDefaultValue) {\n if (aName in aArgs) {\n return aArgs[aName];\n } else if (arguments.length === 3) {\n return aDefaultValue;\n } else {\n throw new Error('\"' + aName + '\" is a required argument.');\n }\n }\n exports.getArg = getArg;\n\n var urlRegexp = /^(?:([\\w+\\-.]+):)?\\/\\/(?:(\\w+:\\w+)@)?([\\w.]*)(?::(\\d+))?(\\S*)$/;\n var dataUrlRegexp = /^data:.+\\,.+$/;\n\n function urlParse(aUrl) {\n var match = aUrl.match(urlRegexp);\n if (!match) {\n return null;\n }\n return {\n scheme: match[1],\n auth: match[2],\n host: match[3],\n port: match[4],\n path: match[5]\n };\n }\n exports.urlParse = urlParse;\n\n function urlGenerate(aParsedUrl) {\n var url = '';\n if (aParsedUrl.scheme) {\n url += aParsedUrl.scheme + ':';\n }\n url += '//';\n if (aParsedUrl.auth) {\n url += aParsedUrl.auth + '@';\n }\n if (aParsedUrl.host) {\n url += aParsedUrl.host;\n }\n if (aParsedUrl.port) {\n url += \":\" + aParsedUrl.port\n }\n if (aParsedUrl.path) {\n url += aParsedUrl.path;\n }\n return url;\n }\n exports.urlGenerate = urlGenerate;\n\n /**\n * Normalizes a path, or the path portion of a URL:\n *\n * - Replaces consequtive slashes with one slash.\n * - Removes unnecessary '.' parts.\n * - Removes unnecessary '<dir>/..' parts.\n *\n * Based on code in the Node.js 'path' core module.\n *\n * @param aPath The path or url to normalize.\n */\n function normalize(aPath) {\n var path = aPath;\n var url = urlParse(aPath);\n if (url) {\n if (!url.path) {\n return aPath;\n }\n path = url.path;\n }\n var isAbsolute = exports.isAbsolute(path);\n\n var parts = path.split(/\\/+/);\n for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {\n part = parts[i];\n if (part === '.') {\n parts.splice(i, 1);\n } else if (part === '..') {\n up++;\n } else if (up > 0) {\n if (part === '') {\n // The first part is blank if the path is absolute. Trying to go\n // above the root is a no-op. Therefore we can remove all '..' parts\n // directly after the root.\n parts.splice(i + 1, up);\n up = 0;\n } else {\n parts.splice(i, 2);\n up--;\n }\n }\n }\n path = parts.join('/');\n\n if (path === '') {\n path = isAbsolute ? '/' : '.';\n }\n\n if (url) {\n url.path = path;\n return urlGenerate(url);\n }\n return path;\n }\n exports.normalize = normalize;\n\n /**\n * Joins two paths/URLs.\n *\n * @param aRoot The root path or URL.\n * @param aPath The path or URL to be joined with the root.\n *\n * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a\n * scheme-relative URL: Then the scheme of aRoot, if any, is prepended\n * first.\n * - Otherwise aPath is a path. If aRoot is a URL, then its path portion\n * is updated with the result and aRoot is returned. Otherwise the result\n * is returned.\n * - If aPath is absolute, the result is aPath.\n * - Otherwise the two paths are joined with a slash.\n * - Joining for example 'http://' and 'www.example.com' is also supported.\n */\n function join(aRoot, aPath) {\n if (aRoot === \"\") {\n aRoot = \".\";\n }\n if (aPath === \"\") {\n aPath = \".\";\n }\n var aPathUrl = urlParse(aPath);\n var aRootUrl = urlParse(aRoot);\n if (aRootUrl) {\n aRoot = aRootUrl.path || '/';\n }\n\n // `join(foo, '//www.example.org')`\n if (aPathUrl && !aPathUrl.scheme) {\n if (aRootUrl) {\n aPathUrl.scheme = aRootUrl.scheme;\n }\n return urlGenerate(aPathUrl);\n }\n\n if (aPathUrl || aPath.match(dataUrlRegexp)) {\n return aPath;\n }\n\n // `join('http://', 'www.example.com')`\n if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {\n aRootUrl.host = aPath;\n return urlGenerate(aRootUrl);\n }\n\n var joined = aPath.charAt(0) === '/'\n ? aPath\n : normalize(aRoot.replace(/\\/+$/, '') + '/' + aPath);\n\n if (aRootUrl) {\n aRootUrl.path = joined;\n return urlGenerate(aRootUrl);\n }\n return joined;\n }\n exports.join = join;\n\n exports.isAbsolute = function (aPath) {\n return aPath.charAt(0) === '/' || !!aPath.match(urlRegexp);\n };\n\n /**\n * Make a path relative to a URL or another path.\n *\n * @param aRoot The root path or URL.\n * @param aPath The path or URL to be made relative to aRoot.\n */\n function relative(aRoot, aPath) {\n if (aRoot === \"\") {\n aRoot = \".\";\n }\n\n aRoot = aRoot.replace(/\\/$/, '');\n\n // It is possible for the path to be above the root. In this case, simply\n // checking whether the root is a prefix of the path won't work. Instead, we\n // need to remove components from the root one by one, until either we find\n // a prefix that fits, or we run out of components to remove.\n var level = 0;\n while (aPath.indexOf(aRoot + '/') !== 0) {\n var index = aRoot.lastIndexOf(\"/\");\n if (index < 0) {\n return aPath;\n }\n\n // If the only part of the root that is left is the scheme (i.e. http://,\n // file:///, etc.), one or more slashes (/), or simply nothing at all, we\n // have exhausted all components, so the path is not relative to the root.\n aRoot = aRoot.slice(0, index);\n if (aRoot.match(/^([^\\/]+:\\/)?\\/*$/)) {\n return aPath;\n }\n\n ++level;\n }\n\n // Make sure we add a \"../\" for each component we removed from the root.\n return Array(level + 1).join(\"../\") + aPath.substr(aRoot.length + 1);\n }\n exports.relative = relative;\n\n /**\n * Because behavior goes wacky when you set `__proto__` on objects, we\n * have to prefix all the strings in our set with an arbitrary character.\n *\n * See https://github.com/mozilla/source-map/pull/31 and\n * https://github.com/mozilla/source-map/issues/30\n *\n * @param String aStr\n */\n function toSetString(aStr) {\n return '$' + aStr;\n }\n exports.toSetString = toSetString;\n\n function fromSetString(aStr) {\n return aStr.substr(1);\n }\n exports.fromSetString = fromSetString;\n\n /**\n * Comparator between two mappings where the original positions are compared.\n *\n * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n * mappings with the same original source/line/column, but different generated\n * line and column the same. Useful when searching for a mapping with a\n * stubbed out mapping.\n */\n function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {\n var cmp = mappingA.source - mappingB.source;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalLine - mappingB.originalLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalColumn - mappingB.originalColumn;\n if (cmp !== 0 || onlyCompareOriginal) {\n return cmp;\n }\n\n cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.generatedLine - mappingB.generatedLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n return mappingA.name - mappingB.name;\n }\n exports.compareByOriginalPositions = compareByOriginalPositions;\n\n /**\n * Comparator between two mappings with deflated source and name indices where\n * the generated positions are compared.\n *\n * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n * mappings with the same generated line and column, but different\n * source/name/original line and column the same. Useful when searching for a\n * mapping with a stubbed out mapping.\n */\n function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {\n var cmp = mappingA.generatedLine - mappingB.generatedLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n if (cmp !== 0 || onlyCompareGenerated) {\n return cmp;\n }\n\n cmp = mappingA.source - mappingB.source;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalLine - mappingB.originalLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalColumn - mappingB.originalColumn;\n if (cmp !== 0) {\n return cmp;\n }\n\n return mappingA.name - mappingB.name;\n }\n exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;\n\n function strcmp(aStr1, aStr2) {\n if (aStr1 === aStr2) {\n return 0;\n }\n\n if (aStr1 > aStr2) {\n return 1;\n }\n\n return -1;\n }\n\n /**\n * Comparator between two mappings with inflated source and name strings where\n * the generated positions are compared.\n */\n function compareByGeneratedPositionsInflated(mappingA, mappingB) {\n var cmp = mappingA.generatedLine - mappingB.generatedLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = strcmp(mappingA.source, mappingB.source);\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalLine - mappingB.originalLine;\n if (cmp !== 0) {\n return cmp;\n }\n\n cmp = mappingA.originalColumn - mappingB.originalColumn;\n if (cmp !== 0) {\n return cmp;\n }\n\n return strcmp(mappingA.name, mappingB.name);\n }\n exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/util.js\n ** module id = 4\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var util = require('./util');\n\n /**\n * A data structure which is a combination of an array and a set. Adding a new\n * member is O(1), testing for membership is O(1), and finding the index of an\n * element is O(1). Removing elements from the set is not supported. Only\n * strings are supported for membership.\n */\n function ArraySet() {\n this._array = [];\n this._set = {};\n }\n\n /**\n * Static method for creating ArraySet instances from an existing array.\n */\n ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {\n var set = new ArraySet();\n for (var i = 0, len = aArray.length; i < len; i++) {\n set.add(aArray[i], aAllowDuplicates);\n }\n return set;\n };\n\n /**\n * Return how many unique items are in this ArraySet. If duplicates have been\n * added, than those do not count towards the size.\n *\n * @returns Number\n */\n ArraySet.prototype.size = function ArraySet_size() {\n return Object.getOwnPropertyNames(this._set).length;\n };\n\n /**\n * Add the given string to this set.\n *\n * @param String aStr\n */\n ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {\n var sStr = util.toSetString(aStr);\n var isDuplicate = this._set.hasOwnProperty(sStr);\n var idx = this._array.length;\n if (!isDuplicate || aAllowDuplicates) {\n this._array.push(aStr);\n }\n if (!isDuplicate) {\n this._set[sStr] = idx;\n }\n };\n\n /**\n * Is the given string a member of this set?\n *\n * @param String aStr\n */\n ArraySet.prototype.has = function ArraySet_has(aStr) {\n var sStr = util.toSetString(aStr);\n return this._set.hasOwnProperty(sStr);\n };\n\n /**\n * What is the index of the given string in the array?\n *\n * @param String aStr\n */\n ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {\n var sStr = util.toSetString(aStr);\n if (this._set.hasOwnProperty(sStr)) {\n return this._set[sStr];\n }\n throw new Error('\"' + aStr + '\" is not in the set.');\n };\n\n /**\n * What is the element at the given index?\n *\n * @param Number aIdx\n */\n ArraySet.prototype.at = function ArraySet_at(aIdx) {\n if (aIdx >= 0 && aIdx < this._array.length) {\n return this._array[aIdx];\n }\n throw new Error('No element indexed by ' + aIdx);\n };\n\n /**\n * Returns the array representation of this set (which has the proper indices\n * indicated by indexOf). Note that this is a copy of the internal array used\n * for storing the members so that no one can mess with internal state.\n */\n ArraySet.prototype.toArray = function ArraySet_toArray() {\n return this._array.slice();\n };\n\n exports.ArraySet = ArraySet;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/array-set.js\n ** module id = 5\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2014 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var util = require('./util');\n\n /**\n * Determine whether mappingB is after mappingA with respect to generated\n * position.\n */\n function generatedPositionAfter(mappingA, mappingB) {\n // Optimized for most common case\n var lineA = mappingA.generatedLine;\n var lineB = mappingB.generatedLine;\n var columnA = mappingA.generatedColumn;\n var columnB = mappingB.generatedColumn;\n return lineB > lineA || lineB == lineA && columnB >= columnA ||\n util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;\n }\n\n /**\n * A data structure to provide a sorted view of accumulated mappings in a\n * performance conscious manner. It trades a neglibable overhead in general\n * case for a large speedup in case of mappings being added in order.\n */\n function MappingList() {\n this._array = [];\n this._sorted = true;\n // Serves as infimum\n this._last = {generatedLine: -1, generatedColumn: 0};\n }\n\n /**\n * Iterate through internal items. This method takes the same arguments that\n * `Array.prototype.forEach` takes.\n *\n * NOTE: The order of the mappings is NOT guaranteed.\n */\n MappingList.prototype.unsortedForEach =\n function MappingList_forEach(aCallback, aThisArg) {\n this._array.forEach(aCallback, aThisArg);\n };\n\n /**\n * Add the given source mapping.\n *\n * @param Object aMapping\n */\n MappingList.prototype.add = function MappingList_add(aMapping) {\n if (generatedPositionAfter(this._last, aMapping)) {\n this._last = aMapping;\n this._array.push(aMapping);\n } else {\n this._sorted = false;\n this._array.push(aMapping);\n }\n };\n\n /**\n * Returns the flat, sorted array of mappings. The mappings are sorted by\n * generated position.\n *\n * WARNING: This method returns internal data without copying, for\n * performance. The return value must NOT be mutated, and should be treated as\n * an immutable borrow. If you want to take ownership, you must make your own\n * copy.\n */\n MappingList.prototype.toArray = function MappingList_toArray() {\n if (!this._sorted) {\n this._array.sort(util.compareByGeneratedPositionsInflated);\n this._sorted = true;\n }\n return this._array;\n };\n\n exports.MappingList = MappingList;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/mapping-list.js\n ** module id = 6\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var util = require('./util');\n var binarySearch = require('./binary-search');\n var ArraySet = require('./array-set').ArraySet;\n var base64VLQ = require('./base64-vlq');\n var quickSort = require('./quick-sort').quickSort;\n\n function SourceMapConsumer(aSourceMap) {\n var sourceMap = aSourceMap;\n if (typeof aSourceMap === 'string') {\n sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n }\n\n return sourceMap.sections != null\n ? new IndexedSourceMapConsumer(sourceMap)\n : new BasicSourceMapConsumer(sourceMap);\n }\n\n SourceMapConsumer.fromSourceMap = function(aSourceMap) {\n return BasicSourceMapConsumer.fromSourceMap(aSourceMap);\n }\n\n /**\n * The version of the source mapping spec that we are consuming.\n */\n SourceMapConsumer.prototype._version = 3;\n\n // `__generatedMappings` and `__originalMappings` are arrays that hold the\n // parsed mapping coordinates from the source map's \"mappings\" attribute. They\n // are lazily instantiated, accessed via the `_generatedMappings` and\n // `_originalMappings` getters respectively, and we only parse the mappings\n // and create these arrays once queried for a source location. We jump through\n // these hoops because there can be many thousands of mappings, and parsing\n // them is expensive, so we only want to do it if we must.\n //\n // Each object in the arrays is of the form:\n //\n // {\n // generatedLine: The line number in the generated code,\n // generatedColumn: The column number in the generated code,\n // source: The path to the original source file that generated this\n // chunk of code,\n // originalLine: The line number in the original source that\n // corresponds to this chunk of generated code,\n // originalColumn: The column number in the original source that\n // corresponds to this chunk of generated code,\n // name: The name of the original symbol which generated this chunk of\n // code.\n // }\n //\n // All properties except for `generatedLine` and `generatedColumn` can be\n // `null`.\n //\n // `_generatedMappings` is ordered by the generated positions.\n //\n // `_originalMappings` is ordered by the original positions.\n\n SourceMapConsumer.prototype.__generatedMappings = null;\n Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {\n get: function () {\n if (!this.__generatedMappings) {\n this._parseMappings(this._mappings, this.sourceRoot);\n }\n\n return this.__generatedMappings;\n }\n });\n\n SourceMapConsumer.prototype.__originalMappings = null;\n Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {\n get: function () {\n if (!this.__originalMappings) {\n this._parseMappings(this._mappings, this.sourceRoot);\n }\n\n return this.__originalMappings;\n }\n });\n\n SourceMapConsumer.prototype._charIsMappingSeparator =\n function SourceMapConsumer_charIsMappingSeparator(aStr, index) {\n var c = aStr.charAt(index);\n return c === \";\" || c === \",\";\n };\n\n /**\n * Parse the mappings in a string in to a data structure which we can easily\n * query (the ordered arrays in the `this.__generatedMappings` and\n * `this.__originalMappings` properties).\n */\n SourceMapConsumer.prototype._parseMappings =\n function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n throw new Error(\"Subclasses must implement _parseMappings\");\n };\n\n SourceMapConsumer.GENERATED_ORDER = 1;\n SourceMapConsumer.ORIGINAL_ORDER = 2;\n\n SourceMapConsumer.GREATEST_LOWER_BOUND = 1;\n SourceMapConsumer.LEAST_UPPER_BOUND = 2;\n\n /**\n * Iterate over each mapping between an original source/line/column and a\n * generated line/column in this source map.\n *\n * @param Function aCallback\n * The function that is called with each mapping.\n * @param Object aContext\n * Optional. If specified, this object will be the value of `this` every\n * time that `aCallback` is called.\n * @param aOrder\n * Either `SourceMapConsumer.GENERATED_ORDER` or\n * `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to\n * iterate over the mappings sorted by the generated file's line/column\n * order or the original's source/line/column order, respectively. Defaults to\n * `SourceMapConsumer.GENERATED_ORDER`.\n */\n SourceMapConsumer.prototype.eachMapping =\n function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {\n var context = aContext || null;\n var order = aOrder || SourceMapConsumer.GENERATED_ORDER;\n\n var mappings;\n switch (order) {\n case SourceMapConsumer.GENERATED_ORDER:\n mappings = this._generatedMappings;\n break;\n case SourceMapConsumer.ORIGINAL_ORDER:\n mappings = this._originalMappings;\n break;\n default:\n throw new Error(\"Unknown order of iteration.\");\n }\n\n var sourceRoot = this.sourceRoot;\n mappings.map(function (mapping) {\n var source = mapping.source === null ? null : this._sources.at(mapping.source);\n if (source != null && sourceRoot != null) {\n source = util.join(sourceRoot, source);\n }\n return {\n source: source,\n generatedLine: mapping.generatedLine,\n generatedColumn: mapping.generatedColumn,\n originalLine: mapping.originalLine,\n originalColumn: mapping.originalColumn,\n name: mapping.name === null ? null : this._names.at(mapping.name)\n };\n }, this).forEach(aCallback, context);\n };\n\n /**\n * Returns all generated line and column information for the original source,\n * line, and column provided. If no column is provided, returns all mappings\n * corresponding to a either the line we are searching for or the next\n * closest line that has any mappings. Otherwise, returns all mappings\n * corresponding to the given line and either the column we are searching for\n * or the next closest column that has any offsets.\n *\n * The only argument is an object with the following properties:\n *\n * - source: The filename of the original source.\n * - line: The line number in the original source.\n * - column: Optional. the column number in the original source.\n *\n * and an array of objects is returned, each with the following properties:\n *\n * - line: The line number in the generated source, or null.\n * - column: The column number in the generated source, or null.\n */\n SourceMapConsumer.prototype.allGeneratedPositionsFor =\n function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {\n var line = util.getArg(aArgs, 'line');\n\n // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping\n // returns the index of the closest mapping less than the needle. By\n // setting needle.originalColumn to 0, we thus find the last mapping for\n // the given line, provided such a mapping exists.\n var needle = {\n source: util.getArg(aArgs, 'source'),\n originalLine: line,\n originalColumn: util.getArg(aArgs, 'column', 0)\n };\n\n if (this.sourceRoot != null) {\n needle.source = util.relative(this.sourceRoot, needle.source);\n }\n if (!this._sources.has(needle.source)) {\n return [];\n }\n needle.source = this._sources.indexOf(needle.source);\n\n var mappings = [];\n\n var index = this._findMapping(needle,\n this._originalMappings,\n \"originalLine\",\n \"originalColumn\",\n util.compareByOriginalPositions,\n binarySearch.LEAST_UPPER_BOUND);\n if (index >= 0) {\n var mapping = this._originalMappings[index];\n\n if (aArgs.column === undefined) {\n var originalLine = mapping.originalLine;\n\n // Iterate until either we run out of mappings, or we run into\n // a mapping for a different line than the one we found. Since\n // mappings are sorted, this is guaranteed to find all mappings for\n // the line we found.\n while (mapping && mapping.originalLine === originalLine) {\n mappings.push({\n line: util.getArg(mapping, 'generatedLine', null),\n column: util.getArg(mapping, 'generatedColumn', null),\n lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n });\n\n mapping = this._originalMappings[++index];\n }\n } else {\n var originalColumn = mapping.originalColumn;\n\n // Iterate until either we run out of mappings, or we run into\n // a mapping for a different line than the one we were searching for.\n // Since mappings are sorted, this is guaranteed to find all mappings for\n // the line we are searching for.\n while (mapping &&\n mapping.originalLine === line &&\n mapping.originalColumn == originalColumn) {\n mappings.push({\n line: util.getArg(mapping, 'generatedLine', null),\n column: util.getArg(mapping, 'generatedColumn', null),\n lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n });\n\n mapping = this._originalMappings[++index];\n }\n }\n }\n\n return mappings;\n };\n\n exports.SourceMapConsumer = SourceMapConsumer;\n\n /**\n * A BasicSourceMapConsumer instance represents a parsed source map which we can\n * query for information about the original file positions by giving it a file\n * position in the generated source.\n *\n * The only parameter is the raw source map (either as a JSON string, or\n * already parsed to an object). According to the spec, source maps have the\n * following attributes:\n *\n * - version: Which version of the source map spec this map is following.\n * - sources: An array of URLs to the original source files.\n * - names: An array of identifiers which can be referrenced by individual mappings.\n * - sourceRoot: Optional. The URL root from which all sources are relative.\n * - sourcesContent: Optional. An array of contents of the original source files.\n * - mappings: A string of base64 VLQs which contain the actual mappings.\n * - file: Optional. The generated file this source map is associated with.\n *\n * Here is an example source map, taken from the source map spec[0]:\n *\n * {\n * version : 3,\n * file: \"out.js\",\n * sourceRoot : \"\",\n * sources: [\"foo.js\", \"bar.js\"],\n * names: [\"src\", \"maps\", \"are\", \"fun\"],\n * mappings: \"AA,AB;;ABCDE;\"\n * }\n *\n * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#\n */\n function BasicSourceMapConsumer(aSourceMap) {\n var sourceMap = aSourceMap;\n if (typeof aSourceMap === 'string') {\n sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n }\n\n var version = util.getArg(sourceMap, 'version');\n var sources = util.getArg(sourceMap, 'sources');\n // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which\n // requires the array) to play nice here.\n var names = util.getArg(sourceMap, 'names', []);\n var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);\n var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);\n var mappings = util.getArg(sourceMap, 'mappings');\n var file = util.getArg(sourceMap, 'file', null);\n\n // Once again, Sass deviates from the spec and supplies the version as a\n // string rather than a number, so we use loose equality checking here.\n if (version != this._version) {\n throw new Error('Unsupported version: ' + version);\n }\n\n sources = sources\n // Some source maps produce relative source paths like \"./foo.js\" instead of\n // \"foo.js\". Normalize these first so that future comparisons will succeed.\n // See bugzil.la/1090768.\n .map(util.normalize)\n // Always ensure that absolute sources are internally stored relative to\n // the source root, if the source root is absolute. Not doing this would\n // be particularly problematic when the source root is a prefix of the\n // source (valid, but why??). See github issue #199 and bugzil.la/1188982.\n .map(function (source) {\n return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source)\n ? util.relative(sourceRoot, source)\n : source;\n });\n\n // Pass `true` below to allow duplicate names and sources. While source maps\n // are intended to be compressed and deduplicated, the TypeScript compiler\n // sometimes generates source maps with duplicates in them. See Github issue\n // #72 and bugzil.la/889492.\n this._names = ArraySet.fromArray(names, true);\n this._sources = ArraySet.fromArray(sources, true);\n\n this.sourceRoot = sourceRoot;\n this.sourcesContent = sourcesContent;\n this._mappings = mappings;\n this.file = file;\n }\n\n BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;\n\n /**\n * Create a BasicSourceMapConsumer from a SourceMapGenerator.\n *\n * @param SourceMapGenerator aSourceMap\n * The source map that will be consumed.\n * @returns BasicSourceMapConsumer\n */\n BasicSourceMapConsumer.fromSourceMap =\n function SourceMapConsumer_fromSourceMap(aSourceMap) {\n var smc = Object.create(BasicSourceMapConsumer.prototype);\n\n var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);\n var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);\n smc.sourceRoot = aSourceMap._sourceRoot;\n smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(),\n smc.sourceRoot);\n smc.file = aSourceMap._file;\n\n // Because we are modifying the entries (by converting string sources and\n // names to indices into the sources and names ArraySets), we have to make\n // a copy of the entry or else bad things happen. Shared mutable state\n // strikes again! See github issue #191.\n\n var generatedMappings = aSourceMap._mappings.toArray().slice();\n var destGeneratedMappings = smc.__generatedMappings = [];\n var destOriginalMappings = smc.__originalMappings = [];\n\n for (var i = 0, length = generatedMappings.length; i < length; i++) {\n var srcMapping = generatedMappings[i];\n var destMapping = new Mapping;\n destMapping.generatedLine = srcMapping.generatedLine;\n destMapping.generatedColumn = srcMapping.generatedColumn;\n\n if (srcMapping.source) {\n destMapping.source = sources.indexOf(srcMapping.source);\n destMapping.originalLine = srcMapping.originalLine;\n destMapping.originalColumn = srcMapping.originalColumn;\n\n if (srcMapping.name) {\n destMapping.name = names.indexOf(srcMapping.name);\n }\n\n destOriginalMappings.push(destMapping);\n }\n\n destGeneratedMappings.push(destMapping);\n }\n\n quickSort(smc.__originalMappings, util.compareByOriginalPositions);\n\n return smc;\n };\n\n /**\n * The version of the source mapping spec that we are consuming.\n */\n BasicSourceMapConsumer.prototype._version = 3;\n\n /**\n * The list of original sources.\n */\n Object.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {\n get: function () {\n return this._sources.toArray().map(function (s) {\n return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;\n }, this);\n }\n });\n\n /**\n * Provide the JIT with a nice shape / hidden class.\n */\n function Mapping() {\n this.generatedLine = 0;\n this.generatedColumn = 0;\n this.source = null;\n this.originalLine = null;\n this.originalColumn = null;\n this.name = null;\n }\n\n /**\n * Parse the mappings in a string in to a data structure which we can easily\n * query (the ordered arrays in the `this.__generatedMappings` and\n * `this.__originalMappings` properties).\n */\n BasicSourceMapConsumer.prototype._parseMappings =\n function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n var generatedLine = 1;\n var previousGeneratedColumn = 0;\n var previousOriginalLine = 0;\n var previousOriginalColumn = 0;\n var previousSource = 0;\n var previousName = 0;\n var length = aStr.length;\n var index = 0;\n var cachedSegments = {};\n var temp = {};\n var originalMappings = [];\n var generatedMappings = [];\n var mapping, str, segment, end, value;\n\n while (index < length) {\n if (aStr.charAt(index) === ';') {\n generatedLine++;\n index++;\n previousGeneratedColumn = 0;\n }\n else if (aStr.charAt(index) === ',') {\n index++;\n }\n else {\n mapping = new Mapping();\n mapping.generatedLine = generatedLine;\n\n // Because each offset is encoded relative to the previous one,\n // many segments often have the same encoding. We can exploit this\n // fact by caching the parsed variable length fields of each segment,\n // allowing us to avoid a second parse if we encounter the same\n // segment again.\n for (end = index; end < length; end++) {\n if (this._charIsMappingSeparator(aStr, end)) {\n break;\n }\n }\n str = aStr.slice(index, end);\n\n segment = cachedSegments[str];\n if (segment) {\n index += str.length;\n } else {\n segment = [];\n while (index < end) {\n base64VLQ.decode(aStr, index, temp);\n value = temp.value;\n index = temp.rest;\n segment.push(value);\n }\n\n if (segment.length === 2) {\n throw new Error('Found a source, but no line and column');\n }\n\n if (segment.length === 3) {\n throw new Error('Found a source and line, but no column');\n }\n\n cachedSegments[str] = segment;\n }\n\n // Generated column.\n mapping.generatedColumn = previousGeneratedColumn + segment[0];\n previousGeneratedColumn = mapping.generatedColumn;\n\n if (segment.length > 1) {\n // Original source.\n mapping.source = previousSource + segment[1];\n previousSource += segment[1];\n\n // Original line.\n mapping.originalLine = previousOriginalLine + segment[2];\n previousOriginalLine = mapping.originalLine;\n // Lines are stored 0-based\n mapping.originalLine += 1;\n\n // Original column.\n mapping.originalColumn = previousOriginalColumn + segment[3];\n previousOriginalColumn = mapping.originalColumn;\n\n if (segment.length > 4) {\n // Original name.\n mapping.name = previousName + segment[4];\n previousName += segment[4];\n }\n }\n\n generatedMappings.push(mapping);\n if (typeof mapping.originalLine === 'number') {\n originalMappings.push(mapping);\n }\n }\n }\n\n quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);\n this.__generatedMappings = generatedMappings;\n\n quickSort(originalMappings, util.compareByOriginalPositions);\n this.__originalMappings = originalMappings;\n };\n\n /**\n * Find the mapping that best matches the hypothetical \"needle\" mapping that\n * we are searching for in the given \"haystack\" of mappings.\n */\n BasicSourceMapConsumer.prototype._findMapping =\n function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName,\n aColumnName, aComparator, aBias) {\n // To return the position we are searching for, we must first find the\n // mapping for the given position and then return the opposite position it\n // points to. Because the mappings are sorted, we can use binary search to\n // find the best mapping.\n\n if (aNeedle[aLineName] <= 0) {\n throw new TypeError('Line must be greater than or equal to 1, got '\n + aNeedle[aLineName]);\n }\n if (aNeedle[aColumnName] < 0) {\n throw new TypeError('Column must be greater than or equal to 0, got '\n + aNeedle[aColumnName]);\n }\n\n return binarySearch.search(aNeedle, aMappings, aComparator, aBias);\n };\n\n /**\n * Compute the last column for each generated mapping. The last column is\n * inclusive.\n */\n BasicSourceMapConsumer.prototype.computeColumnSpans =\n function SourceMapConsumer_computeColumnSpans() {\n for (var index = 0; index < this._generatedMappings.length; ++index) {\n var mapping = this._generatedMappings[index];\n\n // Mappings do not contain a field for the last generated columnt. We\n // can come up with an optimistic estimate, however, by assuming that\n // mappings are contiguous (i.e. given two consecutive mappings, the\n // first mapping ends where the second one starts).\n if (index + 1 < this._generatedMappings.length) {\n var nextMapping = this._generatedMappings[index + 1];\n\n if (mapping.generatedLine === nextMapping.generatedLine) {\n mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;\n continue;\n }\n }\n\n // The last mapping for each line spans the entire line.\n mapping.lastGeneratedColumn = Infinity;\n }\n };\n\n /**\n * Returns the original source, line, and column information for the generated\n * source's line and column positions provided. The only argument is an object\n * with the following properties:\n *\n * - line: The line number in the generated source.\n * - column: The column number in the generated source.\n * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n * closest element that is smaller than or greater than the one we are\n * searching for, respectively, if the exact element cannot be found.\n * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n *\n * and an object is returned with the following properties:\n *\n * - source: The original source file, or null.\n * - line: The line number in the original source, or null.\n * - column: The column number in the original source, or null.\n * - name: The original identifier, or null.\n */\n BasicSourceMapConsumer.prototype.originalPositionFor =\n function SourceMapConsumer_originalPositionFor(aArgs) {\n var needle = {\n generatedLine: util.getArg(aArgs, 'line'),\n generatedColumn: util.getArg(aArgs, 'column')\n };\n\n var index = this._findMapping(\n needle,\n this._generatedMappings,\n \"generatedLine\",\n \"generatedColumn\",\n util.compareByGeneratedPositionsDeflated,\n util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)\n );\n\n if (index >= 0) {\n var mapping = this._generatedMappings[index];\n\n if (mapping.generatedLine === needle.generatedLine) {\n var source = util.getArg(mapping, 'source', null);\n if (source !== null) {\n source = this._sources.at(source);\n if (this.sourceRoot != null) {\n source = util.join(this.sourceRoot, source);\n }\n }\n var name = util.getArg(mapping, 'name', null);\n if (name !== null) {\n name = this._names.at(name);\n }\n return {\n source: source,\n line: util.getArg(mapping, 'originalLine', null),\n column: util.getArg(mapping, 'originalColumn', null),\n name: name\n };\n }\n }\n\n return {\n source: null,\n line: null,\n column: null,\n name: null\n };\n };\n\n /**\n * Return true if we have the source content for every source in the source\n * map, false otherwise.\n */\n BasicSourceMapConsumer.prototype.hasContentsOfAllSources =\n function BasicSourceMapConsumer_hasContentsOfAllSources() {\n if (!this.sourcesContent) {\n return false;\n }\n return this.sourcesContent.length >= this._sources.size() &&\n !this.sourcesContent.some(function (sc) { return sc == null; });\n };\n\n /**\n * Returns the original source content. The only argument is the url of the\n * original source file. Returns null if no original source content is\n * available.\n */\n BasicSourceMapConsumer.prototype.sourceContentFor =\n function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n if (!this.sourcesContent) {\n return null;\n }\n\n if (this.sourceRoot != null) {\n aSource = util.relative(this.sourceRoot, aSource);\n }\n\n if (this._sources.has(aSource)) {\n return this.sourcesContent[this._sources.indexOf(aSource)];\n }\n\n var url;\n if (this.sourceRoot != null\n && (url = util.urlParse(this.sourceRoot))) {\n // XXX: file:// URIs and absolute paths lead to unexpected behavior for\n // many users. We can help them out when they expect file:// URIs to\n // behave like it would if they were running a local HTTP server. See\n // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.\n var fileUriAbsPath = aSource.replace(/^file:\\/\\//, \"\");\n if (url.scheme == \"file\"\n && this._sources.has(fileUriAbsPath)) {\n return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)]\n }\n\n if ((!url.path || url.path == \"/\")\n && this._sources.has(\"/\" + aSource)) {\n return this.sourcesContent[this._sources.indexOf(\"/\" + aSource)];\n }\n }\n\n // This function is used recursively from\n // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we\n // don't want to throw if we can't find the source - we just want to\n // return null, so we provide a flag to exit gracefully.\n if (nullOnMissing) {\n return null;\n }\n else {\n throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n }\n };\n\n /**\n * Returns the generated line and column information for the original source,\n * line, and column positions provided. The only argument is an object with\n * the following properties:\n *\n * - source: The filename of the original source.\n * - line: The line number in the original source.\n * - column: The column number in the original source.\n * - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n * 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n * closest element that is smaller than or greater than the one we are\n * searching for, respectively, if the exact element cannot be found.\n * Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n *\n * and an object is returned with the following properties:\n *\n * - line: The line number in the generated source, or null.\n * - column: The column number in the generated source, or null.\n */\n BasicSourceMapConsumer.prototype.generatedPositionFor =\n function SourceMapConsumer_generatedPositionFor(aArgs) {\n var source = util.getArg(aArgs, 'source');\n if (this.sourceRoot != null) {\n source = util.relative(this.sourceRoot, source);\n }\n if (!this._sources.has(source)) {\n return {\n line: null,\n column: null,\n lastColumn: null\n };\n }\n source = this._sources.indexOf(source);\n\n var needle = {\n source: source,\n originalLine: util.getArg(aArgs, 'line'),\n originalColumn: util.getArg(aArgs, 'column')\n };\n\n var index = this._findMapping(\n needle,\n this._originalMappings,\n \"originalLine\",\n \"originalColumn\",\n util.compareByOriginalPositions,\n util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)\n );\n\n if (index >= 0) {\n var mapping = this._originalMappings[index];\n\n if (mapping.source === needle.source) {\n return {\n line: util.getArg(mapping, 'generatedLine', null),\n column: util.getArg(mapping, 'generatedColumn', null),\n lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n };\n }\n }\n\n return {\n line: null,\n column: null,\n lastColumn: null\n };\n };\n\n exports.BasicSourceMapConsumer = BasicSourceMapConsumer;\n\n /**\n * An IndexedSourceMapConsumer instance represents a parsed source map which\n * we can query for information. It differs from BasicSourceMapConsumer in\n * that it takes \"indexed\" source maps (i.e. ones with a \"sections\" field) as\n * input.\n *\n * The only parameter is a raw source map (either as a JSON string, or already\n * parsed to an object). According to the spec for indexed source maps, they\n * have the following attributes:\n *\n * - version: Which version of the source map spec this map is following.\n * - file: Optional. The generated file this source map is associated with.\n * - sections: A list of section definitions.\n *\n * Each value under the \"sections\" field has two fields:\n * - offset: The offset into the original specified at which this section\n * begins to apply, defined as an object with a \"line\" and \"column\"\n * field.\n * - map: A source map definition. This source map could also be indexed,\n * but doesn't have to be.\n *\n * Instead of the \"map\" field, it's also possible to have a \"url\" field\n * specifying a URL to retrieve a source map from, but that's currently\n * unsupported.\n *\n * Here's an example source map, taken from the source map spec[0], but\n * modified to omit a section which uses the \"url\" field.\n *\n * {\n * version : 3,\n * file: \"app.js\",\n * sections: [{\n * offset: {line:100, column:10},\n * map: {\n * version : 3,\n * file: \"section.js\",\n * sources: [\"foo.js\", \"bar.js\"],\n * names: [\"src\", \"maps\", \"are\", \"fun\"],\n * mappings: \"AAAA,E;;ABCDE;\"\n * }\n * }],\n * }\n *\n * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt\n */\n function IndexedSourceMapConsumer(aSourceMap) {\n var sourceMap = aSourceMap;\n if (typeof aSourceMap === 'string') {\n sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n }\n\n var version = util.getArg(sourceMap, 'version');\n var sections = util.getArg(sourceMap, 'sections');\n\n if (version != this._version) {\n throw new Error('Unsupported version: ' + version);\n }\n\n this._sources = new ArraySet();\n this._names = new ArraySet();\n\n var lastOffset = {\n line: -1,\n column: 0\n };\n this._sections = sections.map(function (s) {\n if (s.url) {\n // The url field will require support for asynchronicity.\n // See https://github.com/mozilla/source-map/issues/16\n throw new Error('Support for url field in sections not implemented.');\n }\n var offset = util.getArg(s, 'offset');\n var offsetLine = util.getArg(offset, 'line');\n var offsetColumn = util.getArg(offset, 'column');\n\n if (offsetLine < lastOffset.line ||\n (offsetLine === lastOffset.line && offsetColumn < lastOffset.column)) {\n throw new Error('Section offsets must be ordered and non-overlapping.');\n }\n lastOffset = offset;\n\n return {\n generatedOffset: {\n // The offset fields are 0-based, but we use 1-based indices when\n // encoding/decoding from VLQ.\n generatedLine: offsetLine + 1,\n generatedColumn: offsetColumn + 1\n },\n consumer: new SourceMapConsumer(util.getArg(s, 'map'))\n }\n });\n }\n\n IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;\n\n /**\n * The version of the source mapping spec that we are consuming.\n */\n IndexedSourceMapConsumer.prototype._version = 3;\n\n /**\n * The list of original sources.\n */\n Object.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {\n get: function () {\n var sources = [];\n for (var i = 0; i < this._sections.length; i++) {\n for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {\n sources.push(this._sections[i].consumer.sources[j]);\n }\n }\n return sources;\n }\n });\n\n /**\n * Returns the original source, line, and column information for the generated\n * source's line and column positions provided. The only argument is an object\n * with the following properties:\n *\n * - line: The line number in the generated source.\n * - column: The column number in the generated source.\n *\n * and an object is returned with the following properties:\n *\n * - source: The original source file, or null.\n * - line: The line number in the original source, or null.\n * - column: The column number in the original source, or null.\n * - name: The original identifier, or null.\n */\n IndexedSourceMapConsumer.prototype.originalPositionFor =\n function IndexedSourceMapConsumer_originalPositionFor(aArgs) {\n var needle = {\n generatedLine: util.getArg(aArgs, 'line'),\n generatedColumn: util.getArg(aArgs, 'column')\n };\n\n // Find the section containing the generated position we're trying to map\n // to an original position.\n var sectionIndex = binarySearch.search(needle, this._sections,\n function(needle, section) {\n var cmp = needle.generatedLine - section.generatedOffset.generatedLine;\n if (cmp) {\n return cmp;\n }\n\n return (needle.generatedColumn -\n section.generatedOffset.generatedColumn);\n });\n var section = this._sections[sectionIndex];\n\n if (!section) {\n return {\n source: null,\n line: null,\n column: null,\n name: null\n };\n }\n\n return section.consumer.originalPositionFor({\n line: needle.generatedLine -\n (section.generatedOffset.generatedLine - 1),\n column: needle.generatedColumn -\n (section.generatedOffset.generatedLine === needle.generatedLine\n ? section.generatedOffset.generatedColumn - 1\n : 0),\n bias: aArgs.bias\n });\n };\n\n /**\n * Return true if we have the source content for every source in the source\n * map, false otherwise.\n */\n IndexedSourceMapConsumer.prototype.hasContentsOfAllSources =\n function IndexedSourceMapConsumer_hasContentsOfAllSources() {\n return this._sections.every(function (s) {\n return s.consumer.hasContentsOfAllSources();\n });\n };\n\n /**\n * Returns the original source content. The only argument is the url of the\n * original source file. Returns null if no original source content is\n * available.\n */\n IndexedSourceMapConsumer.prototype.sourceContentFor =\n function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n for (var i = 0; i < this._sections.length; i++) {\n var section = this._sections[i];\n\n var content = section.consumer.sourceContentFor(aSource, true);\n if (content) {\n return content;\n }\n }\n if (nullOnMissing) {\n return null;\n }\n else {\n throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n }\n };\n\n /**\n * Returns the generated line and column information for the original source,\n * line, and column positions provided. The only argument is an object with\n * the following properties:\n *\n * - source: The filename of the original source.\n * - line: The line number in the original source.\n * - column: The column number in the original source.\n *\n * and an object is returned with the following properties:\n *\n * - line: The line number in the generated source, or null.\n * - column: The column number in the generated source, or null.\n */\n IndexedSourceMapConsumer.prototype.generatedPositionFor =\n function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {\n for (var i = 0; i < this._sections.length; i++) {\n var section = this._sections[i];\n\n // Only consider this section if the requested source is in the list of\n // sources of the consumer.\n if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {\n continue;\n }\n var generatedPosition = section.consumer.generatedPositionFor(aArgs);\n if (generatedPosition) {\n var ret = {\n line: generatedPosition.line +\n (section.generatedOffset.generatedLine - 1),\n column: generatedPosition.column +\n (section.generatedOffset.generatedLine === generatedPosition.line\n ? section.generatedOffset.generatedColumn - 1\n : 0)\n };\n return ret;\n }\n }\n\n return {\n line: null,\n column: null\n };\n };\n\n /**\n * Parse the mappings in a string in to a data structure which we can easily\n * query (the ordered arrays in the `this.__generatedMappings` and\n * `this.__originalMappings` properties).\n */\n IndexedSourceMapConsumer.prototype._parseMappings =\n function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n this.__generatedMappings = [];\n this.__originalMappings = [];\n for (var i = 0; i < this._sections.length; i++) {\n var section = this._sections[i];\n var sectionMappings = section.consumer._generatedMappings;\n for (var j = 0; j < sectionMappings.length; j++) {\n var mapping = sectionMappings[j];\n\n var source = section.consumer._sources.at(mapping.source);\n if (section.consumer.sourceRoot !== null) {\n source = util.join(section.consumer.sourceRoot, source);\n }\n this._sources.add(source);\n source = this._sources.indexOf(source);\n\n var name = section.consumer._names.at(mapping.name);\n this._names.add(name);\n name = this._names.indexOf(name);\n\n // The mappings coming from the consumer for the section have\n // generated positions relative to the start of the section, so we\n // need to offset them to be relative to the start of the concatenated\n // generated file.\n var adjustedMapping = {\n source: source,\n generatedLine: mapping.generatedLine +\n (section.generatedOffset.generatedLine - 1),\n generatedColumn: mapping.generatedColumn +\n (section.generatedOffset.generatedLine === mapping.generatedLine\n ? section.generatedOffset.generatedColumn - 1\n : 0),\n originalLine: mapping.originalLine,\n originalColumn: mapping.originalColumn,\n name: name\n };\n\n this.__generatedMappings.push(adjustedMapping);\n if (typeof adjustedMapping.originalLine === 'number') {\n this.__originalMappings.push(adjustedMapping);\n }\n }\n }\n\n quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);\n quickSort(this.__originalMappings, util.compareByOriginalPositions);\n };\n\n exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/source-map-consumer.js\n ** module id = 7\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n exports.GREATEST_LOWER_BOUND = 1;\n exports.LEAST_UPPER_BOUND = 2;\n\n /**\n * Recursive implementation of binary search.\n *\n * @param aLow Indices here and lower do not contain the needle.\n * @param aHigh Indices here and higher do not contain the needle.\n * @param aNeedle The element being searched for.\n * @param aHaystack The non-empty array being searched.\n * @param aCompare Function which takes two elements and returns -1, 0, or 1.\n * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n * closest element that is smaller than or greater than the one we are\n * searching for, respectively, if the exact element cannot be found.\n */\n function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {\n // This function terminates when one of the following is true:\n //\n // 1. We find the exact element we are looking for.\n //\n // 2. We did not find the exact element, but we can return the index of\n // the next-closest element.\n //\n // 3. We did not find the exact element, and there is no next-closest\n // element than the one we are searching for, so we return -1.\n var mid = Math.floor((aHigh - aLow) / 2) + aLow;\n var cmp = aCompare(aNeedle, aHaystack[mid], true);\n if (cmp === 0) {\n // Found the element we are looking for.\n return mid;\n }\n else if (cmp > 0) {\n // Our needle is greater than aHaystack[mid].\n if (aHigh - mid > 1) {\n // The element is in the upper half.\n return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);\n }\n\n // The exact needle element was not found in this haystack. Determine if\n // we are in termination case (3) or (2) and return the appropriate thing.\n if (aBias == exports.LEAST_UPPER_BOUND) {\n return aHigh < aHaystack.length ? aHigh : -1;\n } else {\n return mid;\n }\n }\n else {\n // Our needle is less than aHaystack[mid].\n if (mid - aLow > 1) {\n // The element is in the lower half.\n return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);\n }\n\n // we are in termination case (3) or (2) and return the appropriate thing.\n if (aBias == exports.LEAST_UPPER_BOUND) {\n return mid;\n } else {\n return aLow < 0 ? -1 : aLow;\n }\n }\n }\n\n /**\n * This is an implementation of binary search which will always try and return\n * the index of the closest element if there is no exact hit. This is because\n * mappings between original and generated line/col pairs are single points,\n * and there is an implicit region between each of them, so a miss just means\n * that you aren't on the very start of a region.\n *\n * @param aNeedle The element you are looking for.\n * @param aHaystack The array that is being searched.\n * @param aCompare A function which takes the needle and an element in the\n * array and returns -1, 0, or 1 depending on whether the needle is less\n * than, equal to, or greater than the element, respectively.\n * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n * 'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n * closest element that is smaller than or greater than the one we are\n * searching for, respectively, if the exact element cannot be found.\n * Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.\n */\n exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {\n if (aHaystack.length === 0) {\n return -1;\n }\n\n var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,\n aCompare, aBias || exports.GREATEST_LOWER_BOUND);\n if (index < 0) {\n return -1;\n }\n\n // We have found either the exact element, or the next-closest element than\n // the one we are searching for. However, there may be more than one such\n // element. Make sure we always return the smallest of these.\n while (index - 1 >= 0) {\n if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {\n break;\n }\n --index;\n }\n\n return index;\n };\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/binary-search.js\n ** module id = 8\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n // It turns out that some (most?) JavaScript engines don't self-host\n // `Array.prototype.sort`. This makes sense because C++ will likely remain\n // faster than JS when doing raw CPU-intensive sorting. However, when using a\n // custom comparator function, calling back and forth between the VM's C++ and\n // JIT'd JS is rather slow *and* loses JIT type information, resulting in\n // worse generated code for the comparator function than would be optimal. In\n // fact, when sorting with a comparator, these costs outweigh the benefits of\n // sorting in C++. By using our own JS-implemented Quick Sort (below), we get\n // a ~3500ms mean speed-up in `bench/bench.html`.\n\n /**\n * Swap the elements indexed by `x` and `y` in the array `ary`.\n *\n * @param {Array} ary\n * The array.\n * @param {Number} x\n * The index of the first item.\n * @param {Number} y\n * The index of the second item.\n */\n function swap(ary, x, y) {\n var temp = ary[x];\n ary[x] = ary[y];\n ary[y] = temp;\n }\n\n /**\n * Returns a random integer within the range `low .. high` inclusive.\n *\n * @param {Number} low\n * The lower bound on the range.\n * @param {Number} high\n * The upper bound on the range.\n */\n function randomIntInRange(low, high) {\n return Math.round(low + (Math.random() * (high - low)));\n }\n\n /**\n * The Quick Sort algorithm.\n *\n * @param {Array} ary\n * An array to sort.\n * @param {function} comparator\n * Function to use to compare two items.\n * @param {Number} p\n * Start index of the array\n * @param {Number} r\n * End index of the array\n */\n function doQuickSort(ary, comparator, p, r) {\n // If our lower bound is less than our upper bound, we (1) partition the\n // array into two pieces and (2) recurse on each half. If it is not, this is\n // the empty array and our base case.\n\n if (p < r) {\n // (1) Partitioning.\n //\n // The partitioning chooses a pivot between `p` and `r` and moves all\n // elements that are less than or equal to the pivot to the before it, and\n // all the elements that are greater than it after it. The effect is that\n // once partition is done, the pivot is in the exact place it will be when\n // the array is put in sorted order, and it will not need to be moved\n // again. This runs in O(n) time.\n\n // Always choose a random pivot so that an input array which is reverse\n // sorted does not cause O(n^2) running time.\n var pivotIndex = randomIntInRange(p, r);\n var i = p - 1;\n\n swap(ary, pivotIndex, r);\n var pivot = ary[r];\n\n // Immediately after `j` is incremented in this loop, the following hold\n // true:\n //\n // * Every element in `ary[p .. i]` is less than or equal to the pivot.\n //\n // * Every element in `ary[i+1 .. j-1]` is greater than the pivot.\n for (var j = p; j < r; j++) {\n if (comparator(ary[j], pivot) <= 0) {\n i += 1;\n swap(ary, i, j);\n }\n }\n\n swap(ary, i + 1, j);\n var q = i + 1;\n\n // (2) Recurse on each half.\n\n doQuickSort(ary, comparator, p, q - 1);\n doQuickSort(ary, comparator, q + 1, r);\n }\n }\n\n /**\n * Sort the given array in-place with the given comparator function.\n *\n * @param {Array} ary\n * An array to sort.\n * @param {function} comparator\n * Function to use to compare two items.\n */\n exports.quickSort = function (ary, comparator) {\n doQuickSort(ary, comparator, 0, ary.length - 1);\n };\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/quick-sort.js\n ** module id = 9\n ** module chunks = 0\n **/","/* -*- Mode: js; js-indent-level: 2; -*- */\n/*\n * Copyright 2011 Mozilla Foundation and contributors\n * Licensed under the New BSD license. See LICENSE or:\n * http://opensource.org/licenses/BSD-3-Clause\n */\n{\n var SourceMapGenerator = require('./source-map-generator').SourceMapGenerator;\n var util = require('./util');\n\n // Matches a Windows-style `\\r\\n` newline or a `\\n` newline used by all other\n // operating systems these days (capturing the result).\n var REGEX_NEWLINE = /(\\r?\\n)/;\n\n // Newline character code for charCodeAt() comparisons\n var NEWLINE_CODE = 10;\n\n // Private symbol for identifying `SourceNode`s when multiple versions of\n // the source-map library are loaded. This MUST NOT CHANGE across\n // versions!\n var isSourceNode = \"$$$isSourceNode$$$\";\n\n /**\n * SourceNodes provide a way to abstract over interpolating/concatenating\n * snippets of generated JavaScript source code while maintaining the line and\n * column information associated with the original source code.\n *\n * @param aLine The original line number.\n * @param aColumn The original column number.\n * @param aSource The original source's filename.\n * @param aChunks Optional. An array of strings which are snippets of\n * generated JS, or other SourceNodes.\n * @param aName The original identifier.\n */\n function SourceNode(aLine, aColumn, aSource, aChunks, aName) {\n this.children = [];\n this.sourceContents = {};\n this.line = aLine == null ? null : aLine;\n this.column = aColumn == null ? null : aColumn;\n this.source = aSource == null ? null : aSource;\n this.name = aName == null ? null : aName;\n this[isSourceNode] = true;\n if (aChunks != null) this.add(aChunks);\n }\n\n /**\n * Creates a SourceNode from generated code and a SourceMapConsumer.\n *\n * @param aGeneratedCode The generated code\n * @param aSourceMapConsumer The SourceMap for the generated code\n * @param aRelativePath Optional. The path that relative sources in the\n * SourceMapConsumer should be relative to.\n */\n SourceNode.fromStringWithSourceMap =\n function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {\n // The SourceNode we want to fill with the generated code\n // and the SourceMap\n var node = new SourceNode();\n\n // All even indices of this array are one line of the generated code,\n // while all odd indices are the newlines between two adjacent lines\n // (since `REGEX_NEWLINE` captures its match).\n // Processed fragments are removed from this array, by calling `shiftNextLine`.\n var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);\n var shiftNextLine = function() {\n var lineContents = remainingLines.shift();\n // The last line of a file might not have a newline.\n var newLine = remainingLines.shift() || \"\";\n return lineContents + newLine;\n };\n\n // We need to remember the position of \"remainingLines\"\n var lastGeneratedLine = 1, lastGeneratedColumn = 0;\n\n // The generate SourceNodes we need a code range.\n // To extract it current and last mapping is used.\n // Here we store the last mapping.\n var lastMapping = null;\n\n aSourceMapConsumer.eachMapping(function (mapping) {\n if (lastMapping !== null) {\n // We add the code from \"lastMapping\" to \"mapping\":\n // First check if there is a new line in between.\n if (lastGeneratedLine < mapping.generatedLine) {\n // Associate first line with \"lastMapping\"\n addMappingWithCode(lastMapping, shiftNextLine());\n lastGeneratedLine++;\n lastGeneratedColumn = 0;\n // The remaining code is added without mapping\n } else {\n // There is no new line in between.\n // Associate the code between \"lastGeneratedColumn\" and\n // \"mapping.generatedColumn\" with \"lastMapping\"\n var nextLine = remainingLines[0];\n var code = nextLine.substr(0, mapping.generatedColumn -\n lastGeneratedColumn);\n remainingLines[0] = nextLine.substr(mapping.generatedColumn -\n lastGeneratedColumn);\n lastGeneratedColumn = mapping.generatedColumn;\n addMappingWithCode(lastMapping, code);\n // No more remaining code, continue\n lastMapping = mapping;\n return;\n }\n }\n // We add the generated code until the first mapping\n // to the SourceNode without any mapping.\n // Each line is added as separate string.\n while (lastGeneratedLine < mapping.generatedLine) {\n node.add(shiftNextLine());\n lastGeneratedLine++;\n }\n if (lastGeneratedColumn < mapping.generatedColumn) {\n var nextLine = remainingLines[0];\n node.add(nextLine.substr(0, mapping.generatedColumn));\n remainingLines[0] = nextLine.substr(mapping.generatedColumn);\n lastGeneratedColumn = mapping.generatedColumn;\n }\n lastMapping = mapping;\n }, this);\n // We have processed all mappings.\n if (remainingLines.length > 0) {\n if (lastMapping) {\n // Associate the remaining code in the current line with \"lastMapping\"\n addMappingWithCode(lastMapping, shiftNextLine());\n }\n // and add the remaining lines without any mapping\n node.add(remainingLines.join(\"\"));\n }\n\n // Copy sourcesContent into SourceNode\n aSourceMapConsumer.sources.forEach(function (sourceFile) {\n var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n if (content != null) {\n if (aRelativePath != null) {\n sourceFile = util.join(aRelativePath, sourceFile);\n }\n node.setSourceContent(sourceFile, content);\n }\n });\n\n return node;\n\n function addMappingWithCode(mapping, code) {\n if (mapping === null || mapping.source === undefined) {\n node.add(code);\n } else {\n var source = aRelativePath\n ? util.join(aRelativePath, mapping.source)\n : mapping.source;\n node.add(new SourceNode(mapping.originalLine,\n mapping.originalColumn,\n source,\n code,\n mapping.name));\n }\n }\n };\n\n /**\n * Add a chunk of generated JS to this source node.\n *\n * @param aChunk A string snippet of generated JS code, another instance of\n * SourceNode, or an array where each member is one of those things.\n */\n SourceNode.prototype.add = function SourceNode_add(aChunk) {\n if (Array.isArray(aChunk)) {\n aChunk.forEach(function (chunk) {\n this.add(chunk);\n }, this);\n }\n else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n if (aChunk) {\n this.children.push(aChunk);\n }\n }\n else {\n throw new TypeError(\n \"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk\n );\n }\n return this;\n };\n\n /**\n * Add a chunk of generated JS to the beginning of this source node.\n *\n * @param aChunk A string snippet of generated JS code, another instance of\n * SourceNode, or an array where each member is one of those things.\n */\n SourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {\n if (Array.isArray(aChunk)) {\n for (var i = aChunk.length-1; i >= 0; i--) {\n this.prepend(aChunk[i]);\n }\n }\n else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n this.children.unshift(aChunk);\n }\n else {\n throw new TypeError(\n \"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk\n );\n }\n return this;\n };\n\n /**\n * Walk over the tree of JS snippets in this node and its children. The\n * walking function is called once for each snippet of JS and is passed that\n * snippet and the its original associated source's line/column location.\n *\n * @param aFn The traversal function.\n */\n SourceNode.prototype.walk = function SourceNode_walk(aFn) {\n var chunk;\n for (var i = 0, len = this.children.length; i < len; i++) {\n chunk = this.children[i];\n if (chunk[isSourceNode]) {\n chunk.walk(aFn);\n }\n else {\n if (chunk !== '') {\n aFn(chunk, { source: this.source,\n line: this.line,\n column: this.column,\n name: this.name });\n }\n }\n }\n };\n\n /**\n * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between\n * each of `this.children`.\n *\n * @param aSep The separator.\n */\n SourceNode.prototype.join = function SourceNode_join(aSep) {\n var newChildren;\n var i;\n var len = this.children.length;\n if (len > 0) {\n newChildren = [];\n for (i = 0; i < len-1; i++) {\n newChildren.push(this.children[i]);\n newChildren.push(aSep);\n }\n newChildren.push(this.children[i]);\n this.children = newChildren;\n }\n return this;\n };\n\n /**\n * Call String.prototype.replace on the very right-most source snippet. Useful\n * for trimming whitespace from the end of a source node, etc.\n *\n * @param aPattern The pattern to replace.\n * @param aReplacement The thing to replace the pattern with.\n */\n SourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {\n var lastChild = this.children[this.children.length - 1];\n if (lastChild[isSourceNode]) {\n lastChild.replaceRight(aPattern, aReplacement);\n }\n else if (typeof lastChild === 'string') {\n this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);\n }\n else {\n this.children.push(''.replace(aPattern, aReplacement));\n }\n return this;\n };\n\n /**\n * Set the source content for a source file. This will be added to the SourceMapGenerator\n * in the sourcesContent field.\n *\n * @param aSourceFile The filename of the source file\n * @param aSourceContent The content of the source file\n */\n SourceNode.prototype.setSourceContent =\n function SourceNode_setSourceContent(aSourceFile, aSourceContent) {\n this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;\n };\n\n /**\n * Walk over the tree of SourceNodes. The walking function is called for each\n * source file content and is passed the filename and source content.\n *\n * @param aFn The traversal function.\n */\n SourceNode.prototype.walkSourceContents =\n function SourceNode_walkSourceContents(aFn) {\n for (var i = 0, len = this.children.length; i < len; i++) {\n if (this.children[i][isSourceNode]) {\n this.children[i].walkSourceContents(aFn);\n }\n }\n\n var sources = Object.keys(this.sourceContents);\n for (var i = 0, len = sources.length; i < len; i++) {\n aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);\n }\n };\n\n /**\n * Return the string representation of this source node. Walks over the tree\n * and concatenates all the various snippets together to one string.\n */\n SourceNode.prototype.toString = function SourceNode_toString() {\n var str = \"\";\n this.walk(function (chunk) {\n str += chunk;\n });\n return str;\n };\n\n /**\n * Returns the string representation of this source node along with a source\n * map.\n */\n SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {\n var generated = {\n code: \"\",\n line: 1,\n column: 0\n };\n var map = new SourceMapGenerator(aArgs);\n var sourceMappingActive = false;\n var lastOriginalSource = null;\n var lastOriginalLine = null;\n var lastOriginalColumn = null;\n var lastOriginalName = null;\n this.walk(function (chunk, original) {\n generated.code += chunk;\n if (original.source !== null\n && original.line !== null\n && original.column !== null) {\n if(lastOriginalSource !== original.source\n || lastOriginalLine !== original.line\n || lastOriginalColumn !== original.column\n || lastOriginalName !== original.name) {\n map.addMapping({\n source: original.source,\n original: {\n line: original.line,\n column: original.column\n },\n generated: {\n line: generated.line,\n column: generated.column\n },\n name: original.name\n });\n }\n lastOriginalSource = original.source;\n lastOriginalLine = original.line;\n lastOriginalColumn = original.column;\n lastOriginalName = original.name;\n sourceMappingActive = true;\n } else if (sourceMappingActive) {\n map.addMapping({\n generated: {\n line: generated.line,\n column: generated.column\n }\n });\n lastOriginalSource = null;\n sourceMappingActive = false;\n }\n for (var idx = 0, length = chunk.length; idx < length; idx++) {\n if (chunk.charCodeAt(idx) === NEWLINE_CODE) {\n generated.line++;\n generated.column = 0;\n // Mappings end at eol\n if (idx + 1 === length) {\n lastOriginalSource = null;\n sourceMappingActive = false;\n } else if (sourceMappingActive) {\n map.addMapping({\n source: original.source,\n original: {\n line: original.line,\n column: original.column\n },\n generated: {\n line: generated.line,\n column: generated.column\n },\n name: original.name\n });\n }\n } else {\n generated.column++;\n }\n }\n });\n this.walkSourceContents(function (sourceFile, sourceContent) {\n map.setSourceContent(sourceFile, sourceContent);\n });\n\n return { code: generated.code, map: map };\n };\n\n exports.SourceNode = SourceNode;\n}\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./lib/source-node.js\n ** module id = 10\n ** module chunks = 0\n **/"],"sourceRoot":""}