hooch 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3176) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +12 -0
  3. data/app/assets/javascripts/hooch.js +52 -13
  4. data/hooch.gemspec +5 -0
  5. data/jasmine/.DS_Store +0 -0
  6. data/jasmine/MIT.LICENSE +20 -0
  7. data/jasmine/SpecRunner.html +27 -0
  8. data/jasmine/inheritance.js +63 -0
  9. data/jasmine/jasmine-fixture-1.3.1/.gitignore +8 -0
  10. data/jasmine/jasmine-fixture-1.3.1/.npmignore +8 -0
  11. data/jasmine/jasmine-fixture-1.3.1/.travis.yml +10 -0
  12. data/jasmine/jasmine-fixture-1.3.1/Gruntfile.js +4 -0
  13. data/jasmine/jasmine-fixture-1.3.1/LICENSE.txt +24 -0
  14. data/jasmine/jasmine-fixture-1.3.1/README.md +118 -0
  15. data/jasmine/jasmine-fixture-1.3.1/app/js/.gitkeep +0 -0
  16. data/jasmine/jasmine-fixture-1.3.1/app/js/jasmine-fixture.coffee +320 -0
  17. data/jasmine/jasmine-fixture-1.3.1/config/application.coffee +46 -0
  18. data/jasmine/jasmine-fixture-1.3.1/config/bower-template.json +19 -0
  19. data/jasmine/jasmine-fixture-1.3.1/config/files.coffee +28 -0
  20. data/jasmine/jasmine-fixture-1.3.1/config/lib.json +4 -0
  21. data/jasmine/jasmine-fixture-1.3.1/config/spec-jasmine2.json +11 -0
  22. data/jasmine/jasmine-fixture-1.3.1/config/spec-jq-1.11.json +11 -0
  23. data/jasmine/jasmine-fixture-1.3.1/config/spec-jq-2.1.json +11 -0
  24. data/jasmine/jasmine-fixture-1.3.1/config/spec.json +11 -0
  25. data/jasmine/jasmine-fixture-1.3.1/dist/jasmine-fixture.js +433 -0
  26. data/jasmine/jasmine-fixture-1.3.1/dist/jasmine-fixture.min.js +5 -0
  27. data/jasmine/jasmine-fixture-1.3.1/package.json +39 -0
  28. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/basic-usage-spec.coffee +14 -0
  29. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/invariants.coffee +17 -0
  30. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/spec-within-a-spec.coffee +24 -0
  31. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/tmp-files.coffee +8 -0
  32. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/support/jasmine1-testem-config.json +11 -0
  33. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/support/jasmine2-testem-config.json +11 -0
  34. data/jasmine/jasmine-fixture-1.3.1/spec/helpers/helper.js +33 -0
  35. data/jasmine/jasmine-fixture-1.3.1/spec/helpers/jasmine-given.js +379 -0
  36. data/jasmine/jasmine-fixture-1.3.1/spec/jasmine-fixture-spec.coffee +82 -0
  37. data/jasmine/jasmine-fixture-1.3.1/spec/no-conflict-spec.js +37 -0
  38. data/jasmine/jasmine-fixture-1.3.1/spec/prereq/conflict.js +1 -0
  39. data/jasmine/jasmine-fixture-1.3.1/tasks/.gitkeep +0 -0
  40. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-1.11.0.js +10337 -0
  41. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-1.8.3.js +9472 -0
  42. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-2.1.0.js +9111 -0
  43. data/jasmine/jquery.js +5 -0
  44. data/jasmine/karma.conf.js +69 -0
  45. data/jasmine/lib/jasmine-2.3.4/boot.js +121 -0
  46. data/jasmine/lib/jasmine-2.3.4/console.js +190 -0
  47. data/jasmine/lib/jasmine-2.3.4/jasmine-html.js +446 -0
  48. data/jasmine/lib/jasmine-2.3.4/jasmine.css +58 -0
  49. data/jasmine/lib/jasmine-2.3.4/jasmine.js +3298 -0
  50. data/jasmine/lib/jasmine-2.3.4/jasmine_favicon.png +0 -0
  51. data/jasmine/node_modules/.bin/r.js +29003 -0
  52. data/jasmine/node_modules/jasmine-core/.npmignore +28 -0
  53. data/jasmine/node_modules/jasmine-core/CONTRIBUTING.md +130 -0
  54. data/jasmine/node_modules/jasmine-core/GOALS_2.0.md +64 -0
  55. data/jasmine/node_modules/jasmine-core/MANIFEST.in +5 -0
  56. data/jasmine/node_modules/jasmine-core/MIT.LICENSE +20 -0
  57. data/jasmine/node_modules/jasmine-core/README.md +73 -0
  58. data/jasmine/node_modules/jasmine-core/RELEASE.md +73 -0
  59. data/jasmine/node_modules/jasmine-core/images/jasmine-horizontal.png +0 -0
  60. data/jasmine/node_modules/jasmine-core/images/jasmine-horizontal.svg +102 -0
  61. data/jasmine/node_modules/jasmine-core/images/jasmine_favicon.png +0 -0
  62. data/jasmine/node_modules/jasmine-core/lib/console/console.js +190 -0
  63. data/jasmine/node_modules/jasmine-core/lib/jasmine-core.js +37 -0
  64. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/boot.js +143 -0
  65. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/lib/jasmine_examples/Player.js +24 -0
  66. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/lib/jasmine_examples/Song.js +9 -0
  67. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/spec/helpers/jasmine_examples/SpecHelper.js +15 -0
  68. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/spec/jasmine_examples/PlayerSpec.js +60 -0
  69. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/spec/PlayerSpec.js +58 -0
  70. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/spec/SpecHelper.js +15 -0
  71. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/src/Player.js +22 -0
  72. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/src/Song.js +7 -0
  73. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js +446 -0
  74. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.css +58 -0
  75. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.js +3298 -0
  76. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/json2.js +489 -0
  77. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/node_boot.js +41 -0
  78. data/jasmine/node_modules/jasmine-core/package.json +63 -0
  79. data/jasmine/node_modules/jasmine-core/requirements.txt +1 -0
  80. data/jasmine/node_modules/karma-jasmine/LICENSE +20 -0
  81. data/jasmine/node_modules/karma-jasmine/README.md +89 -0
  82. data/jasmine/node_modules/karma-jasmine/integration-tests.sh +14 -0
  83. data/jasmine/node_modules/karma-jasmine/lib/adapter.js +325 -0
  84. data/jasmine/node_modules/karma-jasmine/lib/boot.js +43 -0
  85. data/jasmine/node_modules/karma-jasmine/lib/index.js +18 -0
  86. data/jasmine/node_modules/karma-jasmine/package.json +123 -0
  87. data/jasmine/node_modules/karma-phantomjs-launcher/LICENSE +20 -0
  88. data/jasmine/node_modules/karma-phantomjs-launcher/index.js +74 -0
  89. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/.bin/phantomjs +42 -0
  90. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.jshintrc +3 -0
  91. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.npmignore +5 -0
  92. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.travis.yml +7 -0
  93. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/LICENSE.txt +194 -0
  94. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/README.md +199 -0
  95. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/bin/phantomjs +42 -0
  96. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/install.js +354 -0
  97. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/location.js +1 -0
  98. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/ChangeLog +368 -0
  99. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/LICENSE.BSD +22 -0
  100. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/README.md +45 -0
  101. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/bin/phantomjs +0 -0
  102. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/arguments.coffee +7 -0
  103. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/arguments.js +9 -0
  104. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/child_process-examples.coffee +20 -0
  105. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/child_process-examples.js +27 -0
  106. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/colorwheel.coffee +46 -0
  107. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/colorwheel.js +51 -0
  108. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/countdown.coffee +8 -0
  109. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/countdown.js +9 -0
  110. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/detectsniff.coffee +42 -0
  111. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/detectsniff.js +59 -0
  112. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/direction.coffee +30 -0
  113. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/direction.js +35 -0
  114. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/echoToFile.coffee +19 -0
  115. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/echoToFile.js +23 -0
  116. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/features.coffee +23 -0
  117. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/features.js +30 -0
  118. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/fibo.coffee +8 -0
  119. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/fibo.js +9 -0
  120. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/follow.coffee +33 -0
  121. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/follow.js +38 -0
  122. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/hello.coffee +2 -0
  123. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/hello.js +2 -0
  124. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/imagebin.coffee +20 -0
  125. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/imagebin.js +23 -0
  126. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/injectme.coffee +23 -0
  127. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/injectme.js +25 -0
  128. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/ipgeocode.coffee +13 -0
  129. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/ipgeocode.js +14 -0
  130. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadspeed.coffee +18 -0
  131. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadspeed.js +23 -0
  132. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee +20 -0
  133. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.js +25 -0
  134. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/modernizr.js +1116 -0
  135. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/module.coffee +4 -0
  136. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/module.js +4 -0
  137. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/movies.coffee +13 -0
  138. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/movies.js +14 -0
  139. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netlog.coffee +18 -0
  140. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netlog.js +25 -0
  141. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netsniff.coffee +114 -0
  142. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netsniff.js +143 -0
  143. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee +12 -0
  144. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/outputEncoding.js +16 -0
  145. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/page_events.coffee +132 -0
  146. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/page_events.js +142 -0
  147. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pagecallback.coffee +16 -0
  148. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pagecallback.js +17 -0
  149. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/phantomwebintro.coffee +13 -0
  150. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/phantomwebintro.js +19 -0
  151. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pizza.coffee +18 -0
  152. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pizza.js +20 -0
  153. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/post.coffee +12 -0
  154. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/post.js +14 -0
  155. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/postserver.coffee +25 -0
  156. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/postserver.js +34 -0
  157. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printenv.coffee +6 -0
  158. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printenv.js +10 -0
  159. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printheaderfooter.coffee +88 -0
  160. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printheaderfooter.js +89 -0
  161. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.coffee +33 -0
  162. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js +35 -0
  163. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/rasterize.coffee +23 -0
  164. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/rasterize.js +32 -0
  165. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/render_multi_url.coffee +60 -0
  166. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/render_multi_url.js +73 -0
  167. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-jasmine.coffee +61 -0
  168. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-jasmine.js +86 -0
  169. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-qunit.coffee +64 -0
  170. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-qunit.js +76 -0
  171. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/scandir.coffee +16 -0
  172. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/scandir.js +22 -0
  173. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/seasonfood.coffee +17 -0
  174. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/seasonfood.js +19 -0
  175. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee +45 -0
  176. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.js +43 -0
  177. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/serverkeepalive.coffee +32 -0
  178. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/serverkeepalive.js +34 -0
  179. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/simpleserver.coffee +38 -0
  180. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/simpleserver.js +42 -0
  181. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/sleepsort.coffee +20 -0
  182. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/sleepsort.js +25 -0
  183. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/stdin-stdout-stderr.coffee +18 -0
  184. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/stdin-stdout-stderr.js +18 -0
  185. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/technews.coffee +17 -0
  186. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/technews.js +16 -0
  187. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/tweets.coffee +31 -0
  188. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/tweets.js +37 -0
  189. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/universe.js +10 -0
  190. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/unrandomize.coffee +18 -0
  191. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/unrandomize.js +24 -0
  192. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/useragent.coffee +11 -0
  193. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/useragent.js +14 -0
  194. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/version.coffee +5 -0
  195. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/version.js +5 -0
  196. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/waitfor.coffee +48 -0
  197. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/waitfor.js +57 -0
  198. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/walk_through_frames.coffee +66 -0
  199. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/walk_through_frames.js +73 -0
  200. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/weather.coffee +29 -0
  201. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/weather.js +37 -0
  202. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/third-party.txt +48 -0
  203. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantomjs.js +61 -0
  204. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/.bin/which +14 -0
  205. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/.idea/scopes/scope_settings.xml +5 -0
  206. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/MIT-LICENSE.txt +21 -0
  207. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/README.md +64 -0
  208. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/adm-zip.js +404 -0
  209. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/entryHeader.js +261 -0
  210. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/index.js +2 -0
  211. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/mainHeader.js +80 -0
  212. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/deflater.js +1578 -0
  213. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/index.js +2 -0
  214. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/inflater.js +448 -0
  215. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/package.json +56 -0
  216. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test.zip +0 -0
  217. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden.txt +17 -0
  218. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden_readonly.txt +17 -0
  219. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/readonly.txt +17 -0
  220. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/somefile.txt +17 -0
  221. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/asd/New Text Document.txt b/data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/asd/New Text → Document.txt +0 -0
  222. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/blank file.txt b/data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/blank → file.txt +0 -0
  223. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/fast.zip +0 -0
  224. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/fastest.zip +0 -0
  225. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/linux_arc.zip +0 -0
  226. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/maximum.zip +0 -0
  227. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/normal.zip +0 -0
  228. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/store.zip +0 -0
  229. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/ultra.zip +0 -0
  230. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/index.js +5 -0
  231. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/constants.js +84 -0
  232. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/errors.js +35 -0
  233. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/fattr.js +84 -0
  234. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/index.js +4 -0
  235. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/utils.js +145 -0
  236. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/zipEntry.js +224 -0
  237. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/zipFile.js +311 -0
  238. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/.npmignore +3 -0
  239. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/CHANGELOG.md +191 -0
  240. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/LICENSE +15 -0
  241. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/README.md +411 -0
  242. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/_copy.js +250 -0
  243. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/copy.js +99 -0
  244. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/create.js +39 -0
  245. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/index.js +90 -0
  246. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/json.js +31 -0
  247. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/mkdir.js +103 -0
  248. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/move.js +136 -0
  249. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/output.js +34 -0
  250. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/remove.js +14 -0
  251. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/.bin/rimraf +33 -0
  252. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/.npmignore +1 -0
  253. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/LICENSE +27 -0
  254. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/README.md +36 -0
  255. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/fs.js +11 -0
  256. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/graceful-fs.js +158 -0
  257. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/package.json +72 -0
  258. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/polyfills.js +255 -0
  259. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/max-open.js +69 -0
  260. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/open.js +39 -0
  261. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/readdir-sort.js +20 -0
  262. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/write-then-read.js +45 -0
  263. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/.npmignore +2 -0
  264. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/CHANGELOG.md +32 -0
  265. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/LICENSE +15 -0
  266. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/README.md +126 -0
  267. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/lib/jsonfile.js +59 -0
  268. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/package.json +60 -0
  269. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/LICENSE +23 -0
  270. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/README.md +36 -0
  271. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/bin.js +33 -0
  272. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/LICENSE +15 -0
  273. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/README.md +369 -0
  274. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/common.js +237 -0
  275. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/glob.js +740 -0
  276. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
  277. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/LICENSE +15 -0
  278. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/README.md +37 -0
  279. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/inflight.js +44 -0
  280. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
  281. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
  282. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +52 -0
  283. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
  284. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
  285. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/package.json +61 -0
  286. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/test.js +97 -0
  287. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  288. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/README.md +42 -0
  289. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  290. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  291. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/package.json +50 -0
  292. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/test.js +25 -0
  293. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  294. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +216 -0
  295. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/browser.js +1113 -0
  296. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +867 -0
  297. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
  298. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
  299. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
  300. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  301. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  302. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
  303. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +4 -0
  304. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  305. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
  306. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  307. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
  308. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
  309. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
  310. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +4 -0
  311. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  312. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  313. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  314. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  315. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
  316. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  317. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
  318. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
  319. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
  320. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
  321. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
  322. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
  323. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
  324. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
  325. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
  326. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
  327. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
  328. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
  329. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
  330. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +66 -0
  331. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/LICENSE +15 -0
  332. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/README.md +51 -0
  333. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  334. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
  335. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +52 -0
  336. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  337. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  338. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/once.js +21 -0
  339. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/package.json +60 -0
  340. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/test/once.js +23 -0
  341. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/package.json +72 -0
  342. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/sync.js +457 -0
  343. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/package.json +61 -0
  344. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/rimraf.js +331 -0
  345. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/package.json +88 -0
  346. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/.npmignore +15 -0
  347. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/LICENSE.TXT +194 -0
  348. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/README.md +296 -0
  349. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/kew.js +724 -0
  350. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/package.json +70 -0
  351. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/chain.js +428 -0
  352. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/closure_test.js +119 -0
  353. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/context.js +89 -0
  354. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/defer.js +120 -0
  355. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/externs_node.js +9 -0
  356. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/scopes.js +54 -0
  357. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/static.js +322 -0
  358. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/.npmignore +3 -0
  359. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/LICENSE +27 -0
  360. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/README.md +33 -0
  361. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/config-defs.js +381 -0
  362. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/find-prefix.js +56 -0
  363. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/get-credentials-by-uri.js +73 -0
  364. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-cafile.js +31 -0
  365. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-prefix.js +49 -0
  366. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-uid.js +15 -0
  367. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/nerf-dart.js +21 -0
  368. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/set-credentials-by-uri.js +42 -0
  369. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/set-user.js +30 -0
  370. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/mkdirp +33 -0
  371. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/nopt +54 -0
  372. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/semver +133 -0
  373. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/.npmignore +3 -0
  374. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/LICENCE +22 -0
  375. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/index.js +282 -0
  376. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/LICENSE +23 -0
  377. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/README.md +3 -0
  378. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json +51 -0
  379. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/proto-list.js +88 -0
  380. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/test/basic.js +61 -0
  381. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/package.json +54 -0
  382. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/readme.markdown +228 -0
  383. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/broken.js +10 -0
  384. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/broken.json +21 -0
  385. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/chain-class.js +100 -0
  386. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/env.js +10 -0
  387. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/find-file.js +13 -0
  388. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/get.js +15 -0
  389. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/ignore-unfound-file.js +5 -0
  390. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/ini.js +18 -0
  391. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/save.js +59 -0
  392. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/LICENSE +16 -0
  393. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/README.md +42 -0
  394. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/inherits.js +1 -0
  395. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/inherits_browser.js +23 -0
  396. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/package.json +50 -0
  397. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/test.js +25 -0
  398. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/.npmignore +1 -0
  399. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/LICENSE +15 -0
  400. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/README.md +102 -0
  401. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/ini.js +190 -0
  402. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/package.json +53 -0
  403. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/bar.js +23 -0
  404. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/fixtures/foo.ini +65 -0
  405. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/foo.js +107 -0
  406. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/.travis.yml +8 -0
  407. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/LICENSE +21 -0
  408. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/bin/cmd.js +33 -0
  409. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/bin/usage.txt +12 -0
  410. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/examples/pow.js +6 -0
  411. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/index.js +98 -0
  412. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  413. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  414. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  415. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  416. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/package.json +67 -0
  417. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  418. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  419. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  420. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  421. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  422. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  423. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  424. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  425. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  426. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/package.json +60 -0
  427. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/readme.markdown +100 -0
  428. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/chmod.js +41 -0
  429. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/clobber.js +38 -0
  430. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/mkdirp.js +28 -0
  431. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/opts_fs.js +29 -0
  432. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  433. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/perm.js +32 -0
  434. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/perm_sync.js +36 -0
  435. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/race.js +37 -0
  436. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/rel.js +32 -0
  437. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/return.js +25 -0
  438. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/return_sync.js +24 -0
  439. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/root.js +19 -0
  440. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/sync.js +32 -0
  441. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/umask.js +28 -0
  442. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/umask_sync.js +32 -0
  443. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/.npmignore +1 -0
  444. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/LICENSE +23 -0
  445. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/README.md +209 -0
  446. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/bin/nopt.js +54 -0
  447. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/examples/my-program.js +30 -0
  448. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/lib/nopt.js +414 -0
  449. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md +3 -0
  450. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/LICENSE +23 -0
  451. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/README.md +23 -0
  452. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/abbrev.js +62 -0
  453. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/package.json +46 -0
  454. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/test.js +47 -0
  455. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/package.json +57 -0
  456. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/test/basic.js +251 -0
  457. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/LICENSE +15 -0
  458. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/README.md +51 -0
  459. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  460. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/README.md +36 -0
  461. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/package.json +52 -0
  462. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  463. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  464. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/once.js +21 -0
  465. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/package.json +60 -0
  466. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/test/once.js +23 -0
  467. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/.npmignore +13 -0
  468. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/LICENSE +27 -0
  469. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/README.md +63 -0
  470. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/osenv.js +73 -0
  471. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/package.json +63 -0
  472. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/test/unix.js +71 -0
  473. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/test/windows.js +75 -0
  474. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/.npmignore +1 -0
  475. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/LICENSE +15 -0
  476. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/Makefile +24 -0
  477. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/README.md +303 -0
  478. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/bin/semver +133 -0
  479. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/foot.js.txt +6 -0
  480. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/head.js.txt +2 -0
  481. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/package.json +55 -0
  482. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.browser.js +1198 -0
  483. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.browser.js.gz +0 -0
  484. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.js +1202 -0
  485. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.min.js +1 -0
  486. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.min.js.gz +0 -0
  487. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/amd.js +15 -0
  488. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/big-numbers.js +31 -0
  489. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/clean.js +29 -0
  490. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/gtr.js +173 -0
  491. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/index.js +684 -0
  492. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/ltr.js +181 -0
  493. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/major-minor-patch.js +72 -0
  494. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/no-module.js +19 -0
  495. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/LICENSE +15 -0
  496. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/README.md +17 -0
  497. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/get-uid-gid.js +24 -0
  498. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/package.json +47 -0
  499. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/uid-number.js +54 -0
  500. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/npmconf.js +415 -0
  501. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/package.json +73 -0
  502. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/00-setup.js +67 -0
  503. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/basic.js +58 -0
  504. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/builtin.js +63 -0
  505. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/certfile.js +17 -0
  506. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/credentials.js +295 -0
  507. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/.npmrc +1 -0
  508. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/builtin +1 -0
  509. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/globalconfig +1 -0
  510. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/multi-ca +32 -0
  511. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/package.json +0 -0
  512. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/userconfig +23 -0
  513. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/project.js +60 -0
  514. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/save.js +84 -0
  515. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/semver-tag.js +65 -0
  516. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/.npmignore +4 -0
  517. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/History.md +77 -0
  518. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/LICENSE +22 -0
  519. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/Makefile +8 -0
  520. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/Readme.md +103 -0
  521. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/index.js +1 -0
  522. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/lib/node-progress.js +180 -0
  523. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/package.json +67 -0
  524. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.editorconfig +12 -0
  525. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.jshintrc +63 -0
  526. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.npmignore +2 -0
  527. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.travis.yml +4 -0
  528. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/LICENSE +19 -0
  529. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/README.md +47 -0
  530. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/index.js +80 -0
  531. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/.npmignore +2 -0
  532. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/History.md +11 -0
  533. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/Makefile +11 -0
  534. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/Readme.md +16 -0
  535. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/component.json +13 -0
  536. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/example.js +14 -0
  537. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/index.js +30 -0
  538. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/package.json +47 -0
  539. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/package.json +61 -0
  540. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/test/test.js +1 -0
  541. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/.npmignore +2 -0
  542. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/.travis.yml +12 -0
  543. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/CHANGELOG.md +954 -0
  544. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/CONTRIBUTING.md +29 -0
  545. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/LICENSE +55 -0
  546. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/README.md +544 -0
  547. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/disabled.appveyor.yml +36 -0
  548. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/index.js +166 -0
  549. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/cookies.js +40 -0
  550. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/copy.js +8 -0
  551. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/debug.js +9 -0
  552. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/helpers.js +46 -0
  553. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/optional.js +13 -0
  554. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/.bin/uuid +26 -0
  555. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/LICENSE +55 -0
  556. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/README.md +4 -0
  557. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/index.js +202 -0
  558. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/package.json +46 -0
  559. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.jshintrc +59 -0
  560. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.npmignore +1 -0
  561. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.travis.yml +11 -0
  562. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/LICENSE.md +13 -0
  563. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/README.md +198 -0
  564. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/bl.js +216 -0
  565. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/.npmignore +5 -0
  566. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/LICENSE +18 -0
  567. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/README.md +15 -0
  568. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/duplex.js +1 -0
  569. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  570. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  571. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  572. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  573. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  574. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  575. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  576. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  577. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  578. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  579. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  580. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  581. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  582. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  583. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  584. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  585. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  586. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  587. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  588. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  589. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/package.json +53 -0
  590. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  591. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  592. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  593. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  594. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/package.json +54 -0
  595. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/package.json +70 -0
  596. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/passthrough.js +1 -0
  597. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/readable.js +8 -0
  598. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/transform.js +1 -0
  599. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/writable.js +1 -0
  600. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/package.json +62 -0
  601. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/basic-test.js +541 -0
  602. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/sauce.js +38 -0
  603. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/test.js +9 -0
  604. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/README.md +45 -0
  605. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/index.js +65 -0
  606. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/package.json +52 -0
  607. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/test.js +33 -0
  608. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/LICENSE +55 -0
  609. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/README.md +4 -0
  610. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/index.js +119 -0
  611. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/package.json +45 -0
  612. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/License +19 -0
  613. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/Readme.md +175 -0
  614. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/lib/form_data.js +351 -0
  615. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/.travis.yml +3 -0
  616. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/LICENSE +19 -0
  617. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/README.md +1646 -0
  618. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/component.json +11 -0
  619. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/lib/async.js +1123 -0
  620. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/package.json +60 -0
  621. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/License +19 -0
  622. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/Readme.md +132 -0
  623. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/lib/combined_stream.js +188 -0
  624. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/.npmignore +2 -0
  625. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/License +19 -0
  626. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile +7 -0
  627. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Readme.md +154 -0
  628. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js +99 -0
  629. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/package.json +42 -0
  630. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/common.js +6 -0
  631. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js +38 -0
  632. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js +21 -0
  633. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js +14 -0
  634. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream.js +48 -0
  635. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-handle-source-errors.js +15 -0
  636. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-max-data-size.js +18 -0
  637. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-pipe-resumes.js +13 -0
  638. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-proxy-readable.js +13 -0
  639. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/run.js +7 -0
  640. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/package.json +60 -0
  641. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/LICENSE +19 -0
  642. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/README.md +66 -0
  643. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/mime.js +114 -0
  644. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/package.json +57 -0
  645. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/test.js +84 -0
  646. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/types/mime.types +1588 -0
  647. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/types/node.types +77 -0
  648. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/package.json +80 -0
  649. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/.npmignore +18 -0
  650. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/.travis.yml +5 -0
  651. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/LICENSE +24 -0
  652. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/Makefile +10 -0
  653. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/README.md +625 -0
  654. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/example/usage.js +78 -0
  655. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/images/hawk.png +0 -0
  656. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/images/logo.png +0 -0
  657. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/index.js +1 -0
  658. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/browser.js +507 -0
  659. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/client.js +371 -0
  660. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/crypto.js +118 -0
  661. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/index.js +15 -0
  662. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/server.js +523 -0
  663. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/utils.js +183 -0
  664. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore +18 -0
  665. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml +5 -0
  666. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/LICENSE +24 -0
  667. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/Makefile +11 -0
  668. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/README.md +6 -0
  669. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png +0 -0
  670. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/index.js +1 -0
  671. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js +207 -0
  672. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/package.json +64 -0
  673. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/test/index.js +245 -0
  674. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore +18 -0
  675. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml +5 -0
  676. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/LICENSE +24 -0
  677. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile +11 -0
  678. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md +6 -0
  679. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js +1 -0
  680. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js +68 -0
  681. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/package.json +65 -0
  682. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/test/index.js +101 -0
  683. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore +18 -0
  684. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml +5 -0
  685. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/LICENSE +33 -0
  686. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile +10 -0
  687. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/README.md +436 -0
  688. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png +0 -0
  689. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/index.js +1 -0
  690. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js +132 -0
  691. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js +585 -0
  692. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/package.json +70 -0
  693. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/escaper.js +86 -0
  694. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/index.js +1078 -0
  695. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js +1 -0
  696. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js +1 -0
  697. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js +1 -0
  698. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore +18 -0
  699. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml +5 -0
  700. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/LICENSE +24 -0
  701. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile +11 -0
  702. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/README.md +68 -0
  703. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/examples/offset.js +16 -0
  704. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/examples/time.js +25 -0
  705. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/index.js +1 -0
  706. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js +409 -0
  707. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/package.json +65 -0
  708. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/test/index.js +359 -0
  709. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/package.json +70 -0
  710. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/browser.js +817 -0
  711. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/client.js +206 -0
  712. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/crypto.js +86 -0
  713. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/index.js +316 -0
  714. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/message.js +246 -0
  715. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/readme.js +98 -0
  716. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/server.js +686 -0
  717. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/uri.js +456 -0
  718. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/utils.js +120 -0
  719. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/.dir-locals.el +6 -0
  720. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/.npmignore +7 -0
  721. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/LICENSE +18 -0
  722. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/README.md +79 -0
  723. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/http_signing.md +296 -0
  724. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/index.js +26 -0
  725. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/parser.js +304 -0
  726. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/signer.js +178 -0
  727. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/util.js +304 -0
  728. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/verify.js +42 -0
  729. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore +2 -0
  730. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/LICENSE +19 -0
  731. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md +50 -0
  732. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js +13 -0
  733. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/index.js +27 -0
  734. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/reader.js +267 -0
  735. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/types.js +36 -0
  736. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/writer.js +317 -0
  737. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/index.js +20 -0
  738. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/package.json +63 -0
  739. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/reader.test.js +172 -0
  740. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/writer.test.js +296 -0
  741. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/README.md +126 -0
  742. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js +245 -0
  743. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/package.json +45 -0
  744. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/.npmignore +1 -0
  745. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/CHANGELOG +78 -0
  746. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/LICENSE +24 -0
  747. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/README +82 -0
  748. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/README.old +298 -0
  749. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctf.js +245 -0
  750. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctio.js +1485 -0
  751. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctype.js +944 -0
  752. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/man/man3ctype/ctio.3ctype +241 -0
  753. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/package.json +42 -0
  754. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsl.conf +129 -0
  755. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsstyle +839 -0
  756. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/package.json +72 -0
  757. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/LICENSE +27 -0
  758. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/README.md +49 -0
  759. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/package.json +50 -0
  760. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/stringify.js +39 -0
  761. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/test.js +128 -0
  762. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/.npmignore +14 -0
  763. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/.travis.yml +12 -0
  764. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/LICENSE +22 -0
  765. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/Makefile +9 -0
  766. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/README.md +101 -0
  767. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/SOURCES.md +17 -0
  768. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/component.json +16 -0
  769. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/custom.json +27 -0
  770. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/index.js +75 -0
  771. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/mime.json +3317 -0
  772. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/node.json +55 -0
  773. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/package.json +69 -0
  774. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/.npmignore +2 -0
  775. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/LICENSE.md +21 -0
  776. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/README.md +243 -0
  777. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/README.md +53 -0
  778. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/bench.gnu +174 -0
  779. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/bench.sh +34 -0
  780. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/benchmark-native.c +34 -0
  781. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js +84 -0
  782. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/bin/uuid +26 -0
  783. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/component.json +18 -0
  784. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/package.json +65 -0
  785. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/compare_v1.js +63 -0
  786. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/test.html +17 -0
  787. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/test.js +228 -0
  788. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/uuid.js +247 -0
  789. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/LICENSE +55 -0
  790. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/README.md +4 -0
  791. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/index.js +81 -0
  792. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/package.json +48 -0
  793. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/test.js +63 -0
  794. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.jshintignore +1 -0
  795. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.jshintrc +10 -0
  796. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.npmignore +18 -0
  797. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.travis.yml +4 -0
  798. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/CONTRIBUTING.md +1 -0
  799. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/LICENSE +28 -0
  800. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/Makefile +8 -0
  801. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/README.md +192 -0
  802. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/index.js +1 -0
  803. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/index.js +15 -0
  804. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/parse.js +155 -0
  805. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/stringify.js +55 -0
  806. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/utils.js +133 -0
  807. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/package.json +61 -0
  808. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/test/parse.js +301 -0
  809. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/test/stringify.js +129 -0
  810. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/.npmignore +15 -0
  811. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/.travis.yml +4 -0
  812. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/LICENSE.txt +4 -0
  813. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/README.md +38 -0
  814. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/example.js +27 -0
  815. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/package.json +48 -0
  816. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/stringstream.js +102 -0
  817. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.editorconfig +12 -0
  818. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.jshintrc +70 -0
  819. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.npmignore +4 -0
  820. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.travis.yml +9 -0
  821. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/CONTRIBUTING.md +9 -0
  822. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/LICENSE +74 -0
  823. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/README.md +423 -0
  824. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/generate-pubsuffix.js +293 -0
  825. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/cookie.js +1137 -0
  826. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/memstore.js +143 -0
  827. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js +98 -0
  828. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/store.js +67 -0
  829. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/package.json +66 -0
  830. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/public-suffix.txt +10079 -0
  831. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/api_test.js +372 -0
  832. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_jar_test.js +468 -0
  833. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_sorting_test.js +90 -0
  834. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_to_json_test.js +164 -0
  835. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_to_string_test.js +162 -0
  836. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/date_test.js +79 -0
  837. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/domain_and_path_test.js +201 -0
  838. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/dates/bsd-examples.json +168 -0
  839. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/dates/examples.json +48 -0
  840. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/parser.json +1959 -0
  841. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_test.js +106 -0
  842. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/lifetime_test.js +97 -0
  843. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/parsing_test.js +294 -0
  844. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/regression_test.js +143 -0
  845. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/tough-cookie-deps.tsv +6 -0
  846. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/.jshintrc +5 -0
  847. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/LICENSE +55 -0
  848. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/README.md +4 -0
  849. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/index.js +236 -0
  850. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/package.json +45 -0
  851. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/package.json +81 -0
  852. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/request.js +1493 -0
  853. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/LICENSE +15 -0
  854. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/README.md +5 -0
  855. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/bin/which +14 -0
  856. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/package.json +47 -0
  857. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/which.js +101 -0
  858. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/package.json +81 -0
  859. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/exit.js +1 -0
  860. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js +25 -0
  861. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/tests.js +66 -0
  862. data/jasmine/node_modules/karma-phantomjs-launcher/package.json +102 -0
  863. data/jasmine/node_modules/karma-requirejs/LICENSE +20 -0
  864. data/jasmine/node_modules/karma-requirejs/README.md +16 -0
  865. data/jasmine/node_modules/karma-requirejs/lib/adapter.js +53 -0
  866. data/jasmine/node_modules/karma-requirejs/lib/index.js +18 -0
  867. data/jasmine/node_modules/karma-requirejs/package.json +82 -0
  868. data/jasmine/node_modules/karma-spec-reporter/.npmignore +1 -0
  869. data/jasmine/node_modules/karma-spec-reporter/LICENSE +7 -0
  870. data/jasmine/node_modules/karma-spec-reporter/README.md +35 -0
  871. data/jasmine/node_modules/karma-spec-reporter/index.js +132 -0
  872. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/MIT-LICENSE.txt +22 -0
  873. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/ReadMe.md +77 -0
  874. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/colors.js +342 -0
  875. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/example.html +76 -0
  876. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/example.js +77 -0
  877. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/package.json +46 -0
  878. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/test.js +70 -0
  879. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/themes/winston-dark.js +12 -0
  880. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/themes/winston-light.js +12 -0
  881. data/jasmine/node_modules/karma-spec-reporter/package.json +53 -0
  882. data/jasmine/node_modules/karma/CHANGELOG.md +1127 -0
  883. data/jasmine/node_modules/karma/LICENSE +20 -0
  884. data/jasmine/node_modules/karma/README.md +115 -0
  885. data/jasmine/node_modules/karma/bin/karma +3 -0
  886. data/jasmine/node_modules/karma/config.tpl.coffee +66 -0
  887. data/jasmine/node_modules/karma/config.tpl.js +63 -0
  888. data/jasmine/node_modules/karma/config.tpl.ls +66 -0
  889. data/jasmine/node_modules/karma/karma-completion.sh +50 -0
  890. data/jasmine/node_modules/karma/lib/browser.js +248 -0
  891. data/jasmine/node_modules/karma/lib/browser_collection.js +106 -0
  892. data/jasmine/node_modules/karma/lib/browser_result.js +25 -0
  893. data/jasmine/node_modules/karma/lib/cli.js +247 -0
  894. data/jasmine/node_modules/karma/lib/completion.js +163 -0
  895. data/jasmine/node_modules/karma/lib/config.js +300 -0
  896. data/jasmine/node_modules/karma/lib/constants.js +30 -0
  897. data/jasmine/node_modules/karma/lib/emitter_wrapper.js +31 -0
  898. data/jasmine/node_modules/karma/lib/events.js +92 -0
  899. data/jasmine/node_modules/karma/lib/executor.js +56 -0
  900. data/jasmine/node_modules/karma/lib/file_list.js +425 -0
  901. data/jasmine/node_modules/karma/lib/helper.js +97 -0
  902. data/jasmine/node_modules/karma/lib/index.js +6 -0
  903. data/jasmine/node_modules/karma/lib/init.js +279 -0
  904. data/jasmine/node_modules/karma/lib/init/color_schemes.js +29 -0
  905. data/jasmine/node_modules/karma/lib/init/formatters.js +132 -0
  906. data/jasmine/node_modules/karma/lib/init/state_machine.js +143 -0
  907. data/jasmine/node_modules/karma/lib/launcher.js +177 -0
  908. data/jasmine/node_modules/karma/lib/launchers/base.js +130 -0
  909. data/jasmine/node_modules/karma/lib/launchers/capture_timeout.js +43 -0
  910. data/jasmine/node_modules/karma/lib/launchers/process.js +147 -0
  911. data/jasmine/node_modules/karma/lib/launchers/retry.js +32 -0
  912. data/jasmine/node_modules/karma/lib/logger.js +79 -0
  913. data/jasmine/node_modules/karma/lib/middleware/common.js +93 -0
  914. data/jasmine/node_modules/karma/lib/middleware/karma.js +170 -0
  915. data/jasmine/node_modules/karma/lib/middleware/proxy.js +129 -0
  916. data/jasmine/node_modules/karma/lib/middleware/runner.js +92 -0
  917. data/jasmine/node_modules/karma/lib/middleware/source_files.js +61 -0
  918. data/jasmine/node_modules/karma/lib/middleware/strip_host.js +18 -0
  919. data/jasmine/node_modules/karma/lib/plugin.js +51 -0
  920. data/jasmine/node_modules/karma/lib/preprocessor.js +103 -0
  921. data/jasmine/node_modules/karma/lib/reporter.js +108 -0
  922. data/jasmine/node_modules/karma/lib/reporters/base.js +151 -0
  923. data/jasmine/node_modules/karma/lib/reporters/base_color.js +25 -0
  924. data/jasmine/node_modules/karma/lib/reporters/dots.js +51 -0
  925. data/jasmine/node_modules/karma/lib/reporters/dots_color.js +12 -0
  926. data/jasmine/node_modules/karma/lib/reporters/multi.js +21 -0
  927. data/jasmine/node_modules/karma/lib/reporters/progress.js +66 -0
  928. data/jasmine/node_modules/karma/lib/reporters/progress_color.js +12 -0
  929. data/jasmine/node_modules/karma/lib/runner.js +70 -0
  930. data/jasmine/node_modules/karma/lib/server.js +315 -0
  931. data/jasmine/node_modules/karma/lib/temp_dir.js +31 -0
  932. data/jasmine/node_modules/karma/lib/watcher.js +113 -0
  933. data/jasmine/node_modules/karma/lib/web-server.js +74 -0
  934. data/jasmine/node_modules/karma/node_modules/.bin/node-http-proxy +113 -0
  935. data/jasmine/node_modules/karma/node_modules/.bin/rimraf +33 -0
  936. data/jasmine/node_modules/karma/node_modules/chokidar/CHANGELOG.md +197 -0
  937. data/jasmine/node_modules/karma/node_modules/chokidar/README.md +224 -0
  938. data/jasmine/node_modules/karma/node_modules/chokidar/index.js +482 -0
  939. data/jasmine/node_modules/karma/node_modules/chokidar/lib/fsevents-handler.js +361 -0
  940. data/jasmine/node_modules/karma/node_modules/chokidar/lib/nodefs-handler.js +476 -0
  941. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/LICENSE +15 -0
  942. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/README.md +91 -0
  943. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/index.js +64 -0
  944. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/LICENSE +21 -0
  945. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/README.md +504 -0
  946. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/index.js +411 -0
  947. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/chars.js +81 -0
  948. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/expand.js +376 -0
  949. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/glob.js +210 -0
  950. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/utils.js +86 -0
  951. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/LICENSE-MIT +24 -0
  952. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/README.md +81 -0
  953. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/check.js +22 -0
  954. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/array-differ.js +3 -0
  955. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/current.js +3 -0
  956. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/filter.js +7 -0
  957. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-lefthand.js +14 -0
  958. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-negative.js +13 -0
  959. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-reverse.js +14 -0
  960. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for.js +13 -0
  961. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/forEach-2.js +12 -0
  962. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/forEach.js +13 -0
  963. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/reduce.js +10 -0
  964. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-indexof.js +15 -0
  965. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-multi-unshift.js +26 -0
  966. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-multi.js +26 -0
  967. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-splice.js +10 -0
  968. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-unshift.js +13 -0
  969. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while.js +13 -0
  970. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/fixtures/med.js +2 -0
  971. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/fixtures/short.js +1 -0
  972. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/index.js +11 -0
  973. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/index.js +59 -0
  974. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/LICENSE +21 -0
  975. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/README.md +54 -0
  976. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/index.js +36 -0
  977. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/package.json +65 -0
  978. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/package.json +66 -0
  979. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/test.js +41 -0
  980. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/LICENSE +24 -0
  981. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/README.md +242 -0
  982. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/index.js +401 -0
  983. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/LICENSE +24 -0
  984. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/README.md +107 -0
  985. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/index.js +43 -0
  986. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/LICENSE +21 -0
  987. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/README.md +290 -0
  988. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/index.js +408 -0
  989. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/LICENSE +21 -0
  990. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/README.md +104 -0
  991. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/index.js +14 -0
  992. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/package.json +75 -0
  993. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/LICENSE +21 -0
  994. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/README.md +72 -0
  995. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/index.js +13 -0
  996. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/package.json +69 -0
  997. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/README.md +138 -0
  998. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/index.js +86 -0
  999. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/package.json +71 -0
  1000. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/LICENSE +24 -0
  1001. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/README.md +94 -0
  1002. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/index.js +66 -0
  1003. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/package.json +78 -0
  1004. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/package.json +90 -0
  1005. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/package.json +81 -0
  1006. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.gitattributes +14 -0
  1007. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.jshintrc +24 -0
  1008. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.npmignore +53 -0
  1009. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.travis.yml +3 -0
  1010. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.verb.md +59 -0
  1011. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/LICENSE +24 -0
  1012. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/README.md +90 -0
  1013. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/index.js +54 -0
  1014. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/package.json +69 -0
  1015. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/test.js +48 -0
  1016. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/LICENSE +21 -0
  1017. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/README.md +71 -0
  1018. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/index.js +18 -0
  1019. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/package.json +66 -0
  1020. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/package.json +91 -0
  1021. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/.jshintrc +3 -0
  1022. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/.npmignore +6 -0
  1023. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/History.md +195 -0
  1024. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/Makefile +36 -0
  1025. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/Readme.md +188 -0
  1026. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/browser.js +168 -0
  1027. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/component.json +19 -0
  1028. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/debug.js +197 -0
  1029. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node.js +209 -0
  1030. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/.npmignore +5 -0
  1031. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/History.md +66 -0
  1032. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/LICENSE +20 -0
  1033. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/README.md +35 -0
  1034. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/index.js +125 -0
  1035. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/package.json +47 -0
  1036. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/package.json +72 -0
  1037. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/README.md +79 -0
  1038. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/index.js +157 -0
  1039. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/package.json +63 -0
  1040. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/README.md +51 -0
  1041. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/index.js +10 -0
  1042. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/package.json +64 -0
  1043. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/README.md +155 -0
  1044. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/index.js +45 -0
  1045. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/package.json +82 -0
  1046. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.gitattributes +14 -0
  1047. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.jshintrc +22 -0
  1048. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.npmignore +52 -0
  1049. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.travis.yml +3 -0
  1050. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.verbrc.md +82 -0
  1051. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/LICENSE-MIT +22 -0
  1052. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/README.md +91 -0
  1053. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/index.js +40 -0
  1054. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/LICENSE +21 -0
  1055. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/README.md +52 -0
  1056. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/index.js +19 -0
  1057. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/LICENSE +21 -0
  1058. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/README.md +52 -0
  1059. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/index.js +16 -0
  1060. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/package.json +69 -0
  1061. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/package.json +72 -0
  1062. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.gitattributes +14 -0
  1063. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.jshintrc +22 -0
  1064. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.npmignore +52 -0
  1065. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.verbrc.md +29 -0
  1066. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/LICENSE-MIT +22 -0
  1067. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/README.md +37 -0
  1068. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/index.js +20 -0
  1069. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/package.json +68 -0
  1070. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/test/mocha.opts +1 -0
  1071. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/test/test.js +21 -0
  1072. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/package.json +80 -0
  1073. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/test.js +34 -0
  1074. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/LICENSE +21 -0
  1075. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/README.md +122 -0
  1076. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/index.js +156 -0
  1077. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/LICENSE +21 -0
  1078. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/README.md +158 -0
  1079. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/index.js +50 -0
  1080. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/package.json +73 -0
  1081. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/README.md +56 -0
  1082. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/index.js +15 -0
  1083. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/package.json +69 -0
  1084. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/LICENSE +21 -0
  1085. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/README.md +75 -0
  1086. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/index.js +11 -0
  1087. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/package.json +72 -0
  1088. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/package.json +93 -0
  1089. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/LICENSE +21 -0
  1090. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/README.md +148 -0
  1091. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/index.js +67 -0
  1092. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/LICENSE +21 -0
  1093. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/README.md +80 -0
  1094. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/index.js +27 -0
  1095. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/README.md +58 -0
  1096. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/index.js +21 -0
  1097. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/package.json +69 -0
  1098. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/package.json +77 -0
  1099. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/LICENSE +21 -0
  1100. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/README.md +57 -0
  1101. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/index.js +13 -0
  1102. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/package.json +68 -0
  1103. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/package.json +75 -0
  1104. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/package.json +121 -0
  1105. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/package.json +69 -0
  1106. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/index.js +8 -0
  1107. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/license +21 -0
  1108. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/package.json +61 -0
  1109. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/readme.md +36 -0
  1110. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/.npmignore +25 -0
  1111. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/CHANGELOG.md +20 -0
  1112. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/README.md +64 -0
  1113. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/component.json +18 -0
  1114. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/index.js +38 -0
  1115. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/package.json +61 -0
  1116. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.npmignore +2 -0
  1117. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.tern-project +8 -0
  1118. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.travis.yml +23 -0
  1119. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/CHANGELOG.md +16 -0
  1120. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/LICENSE +22 -0
  1121. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/Readme.md +79 -0
  1122. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/binding.gyp +21 -0
  1123. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/.target.mk +46 -0
  1124. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Makefile +355 -0
  1125. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  1126. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/fse.node.d +1 -0
  1127. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d +45 -0
  1128. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.node +0 -0
  1129. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/fse.node +0 -0
  1130. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/linker.lock +0 -0
  1131. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/binding.Makefile +6 -0
  1132. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/config.gypi +136 -0
  1133. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/fse.target.mk +160 -0
  1134. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/gyp-mac-tool +512 -0
  1135. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents-0.3.0.tgz +0 -0
  1136. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents.cc +100 -0
  1137. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents.js +102 -0
  1138. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/.dntrc +30 -0
  1139. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/CHANGELOG.md +294 -0
  1140. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/LICENSE.md +13 -0
  1141. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/README.md +1402 -0
  1142. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/appveyor.yml +38 -0
  1143. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/include_dirs.js +1 -0
  1144. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan.h +2322 -0
  1145. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_implementation_12_inl.h +261 -0
  1146. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_implementation_pre_12_inl.h +267 -0
  1147. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_new.h +328 -0
  1148. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_string_bytes.h +312 -0
  1149. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/package.json +89 -0
  1150. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/package.json +74 -0
  1151. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc +41 -0
  1152. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/constants.cc +111 -0
  1153. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/locking.cc +27 -0
  1154. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/methods.cc +48 -0
  1155. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/storage.cc +29 -0
  1156. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/thread.cc +71 -0
  1157. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/test/fsevents.js +27 -0
  1158. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/test/function.js +93 -0
  1159. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/.npmignore +4 -0
  1160. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/.travis.yml +4 -0
  1161. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/LICENSE +15 -0
  1162. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/README.md +37 -0
  1163. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/index.js +9 -0
  1164. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/package.json +58 -0
  1165. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/test.js +22 -0
  1166. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/index.js +18 -0
  1167. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/binary-extensions.json +186 -0
  1168. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/license +21 -0
  1169. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/package.json +77 -0
  1170. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/readme.md +33 -0
  1171. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/package.json +67 -0
  1172. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/readme.md +33 -0
  1173. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/LICENSE +21 -0
  1174. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/README.md +69 -0
  1175. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/index.js +11 -0
  1176. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/package.json +72 -0
  1177. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/.npmignore +15 -0
  1178. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/.travis.yml +5 -0
  1179. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/LICENSE +18 -0
  1180. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/README.md +233 -0
  1181. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/Readme.md +37 -0
  1182. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/callback-api.js +10 -0
  1183. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/grep.js +71 -0
  1184. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/package.json +9 -0
  1185. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/stream-api-pipe.js +19 -0
  1186. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/stream-api.js +15 -0
  1187. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/.npmignore +5 -0
  1188. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/LICENSE +18 -0
  1189. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/README.md +15 -0
  1190. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/duplex.js +1 -0
  1191. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  1192. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  1193. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  1194. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  1195. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  1196. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  1197. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  1198. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  1199. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  1200. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  1201. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  1202. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  1203. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  1204. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  1205. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  1206. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  1207. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  1208. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  1209. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  1210. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  1211. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  1212. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  1213. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  1214. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  1215. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  1216. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  1217. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/package.json +69 -0
  1218. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/passthrough.js +1 -0
  1219. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/readable.js +8 -0
  1220. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/transform.js +1 -0
  1221. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/writable.js +1 -0
  1222. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/package.json +71 -0
  1223. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/readdirp.js +288 -0
  1224. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/stream-api.js +100 -0
  1225. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1 +0 -0
  1226. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2 +0 -0
  1227. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3 +0 -0
  1228. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1 +0 -0
  1229. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1 +0 -0
  1230. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2 +0 -0
  1231. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file1.ext1 +0 -0
  1232. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file2.ext2 +0 -0
  1233. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file3.ext3 +0 -0
  1234. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/readdirp-stream.js +310 -0
  1235. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/readdirp.js +289 -0
  1236. data/jasmine/node_modules/karma/node_modules/chokidar/package.json +87 -0
  1237. data/jasmine/node_modules/karma/node_modules/colors/MIT-LICENSE.txt +22 -0
  1238. data/jasmine/node_modules/karma/node_modules/colors/ReadMe.md +77 -0
  1239. data/jasmine/node_modules/karma/node_modules/colors/colors.js +342 -0
  1240. data/jasmine/node_modules/karma/node_modules/colors/example.html +76 -0
  1241. data/jasmine/node_modules/karma/node_modules/colors/example.js +77 -0
  1242. data/jasmine/node_modules/karma/node_modules/colors/package.json +45 -0
  1243. data/jasmine/node_modules/karma/node_modules/colors/test.js +70 -0
  1244. data/jasmine/node_modules/karma/node_modules/colors/themes/winston-dark.js +12 -0
  1245. data/jasmine/node_modules/karma/node_modules/colors/themes/winston-light.js +12 -0
  1246. data/jasmine/node_modules/karma/node_modules/connect/.npmignore +4 -0
  1247. data/jasmine/node_modules/karma/node_modules/connect/History.md +1754 -0
  1248. data/jasmine/node_modules/karma/node_modules/connect/LICENSE +24 -0
  1249. data/jasmine/node_modules/karma/node_modules/connect/Readme.md +97 -0
  1250. data/jasmine/node_modules/karma/node_modules/connect/examples/basicAuth.js +35 -0
  1251. data/jasmine/node_modules/karma/node_modules/connect/examples/bodyParser.js +40 -0
  1252. data/jasmine/node_modules/karma/node_modules/connect/examples/cookieSession.js +41 -0
  1253. data/jasmine/node_modules/karma/node_modules/connect/examples/csrf.js +36 -0
  1254. data/jasmine/node_modules/karma/node_modules/connect/examples/directory.js +12 -0
  1255. data/jasmine/node_modules/karma/node_modules/connect/examples/error.js +19 -0
  1256. data/jasmine/node_modules/karma/node_modules/connect/examples/favicon.js +12 -0
  1257. data/jasmine/node_modules/karma/node_modules/connect/examples/helloworld.js +12 -0
  1258. data/jasmine/node_modules/karma/node_modules/connect/examples/limit.js +41 -0
  1259. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.fast.js +14 -0
  1260. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.format.js +62 -0
  1261. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.js +14 -0
  1262. data/jasmine/node_modules/karma/node_modules/connect/examples/mounting.js +33 -0
  1263. data/jasmine/node_modules/karma/node_modules/connect/examples/profiler.js +17 -0
  1264. data/jasmine/node_modules/karma/node_modules/connect/examples/public/form.html +5 -0
  1265. data/jasmine/node_modules/karma/node_modules/connect/examples/public/tobi.jpeg +0 -0
  1266. data/jasmine/node_modules/karma/node_modules/connect/examples/rollingSession.js +64 -0
  1267. data/jasmine/node_modules/karma/node_modules/connect/examples/session.js +198 -0
  1268. data/jasmine/node_modules/karma/node_modules/connect/examples/static.js +14 -0
  1269. data/jasmine/node_modules/karma/node_modules/connect/examples/upload-stream.js +37 -0
  1270. data/jasmine/node_modules/karma/node_modules/connect/examples/upload.js +29 -0
  1271. data/jasmine/node_modules/karma/node_modules/connect/examples/vhost.js +31 -0
  1272. data/jasmine/node_modules/karma/node_modules/connect/index.js +2 -0
  1273. data/jasmine/node_modules/karma/node_modules/connect/lib/cache.js +81 -0
  1274. data/jasmine/node_modules/karma/node_modules/connect/lib/connect.js +100 -0
  1275. data/jasmine/node_modules/karma/node_modules/connect/lib/index.js +50 -0
  1276. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/basicAuth.js +24 -0
  1277. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/bodyParser.js +68 -0
  1278. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/compress.js +20 -0
  1279. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/cookieParser.js +19 -0
  1280. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/cookieSession.js +123 -0
  1281. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/csrf.js +18 -0
  1282. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/directory.js +20 -0
  1283. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/errorHandler.js +17 -0
  1284. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/favicon.js +34 -0
  1285. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/json.js +54 -0
  1286. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/limit.js +90 -0
  1287. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/logger.js +51 -0
  1288. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/methodOverride.js +47 -0
  1289. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/multipart.js +168 -0
  1290. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/query.js +45 -0
  1291. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/responseTime.js +17 -0
  1292. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/session.js +39 -0
  1293. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/static.js +19 -0
  1294. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/staticCache.js +238 -0
  1295. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/timeout.js +17 -0
  1296. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/urlencoded.js +53 -0
  1297. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/vhost.js +44 -0
  1298. data/jasmine/node_modules/karma/node_modules/connect/lib/patch.js +183 -0
  1299. data/jasmine/node_modules/karma/node_modules/connect/lib/proto.js +220 -0
  1300. data/jasmine/node_modules/karma/node_modules/connect/lib/public/favicon.ico +0 -0
  1301. data/jasmine/node_modules/karma/node_modules/connect/lib/utils.js +415 -0
  1302. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/.npmignore +1 -0
  1303. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/.travis.yml +3 -0
  1304. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/Makefile +8 -0
  1305. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/README.md +60 -0
  1306. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/index.js +128 -0
  1307. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/package.json +48 -0
  1308. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/HISTORY.md +210 -0
  1309. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/LICENSE +23 -0
  1310. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/README.md +192 -0
  1311. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/index.js +84 -0
  1312. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/read.js +145 -0
  1313. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/json.js +108 -0
  1314. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/raw.js +61 -0
  1315. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/text.js +66 -0
  1316. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/urlencoded.js +206 -0
  1317. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/.npmignore +5 -0
  1318. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/.travis.yml +5 -0
  1319. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/Changelog.md +29 -0
  1320. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/LICENSE +21 -0
  1321. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/README.md +137 -0
  1322. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/README.md~ +54 -0
  1323. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/dbcs-codec.js +564 -0
  1324. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/dbcs-data.js +168 -0
  1325. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/index.js +20 -0
  1326. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/internal.js +81 -0
  1327. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-codec.js +76 -0
  1328. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-data-generated.js +450 -0
  1329. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-data.js +168 -0
  1330. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1331. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1332. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1333. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1334. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1335. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1336. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  1337. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1338. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/utf16.js +202 -0
  1339. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/utf7.js +284 -0
  1340. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/extend-node.js +210 -0
  1341. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/index.js +122 -0
  1342. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/streams.js +118 -0
  1343. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/package.json +110 -0
  1344. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/HISTORY.md +66 -0
  1345. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/LICENSE +23 -0
  1346. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/README.md +90 -0
  1347. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/index.js +127 -0
  1348. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1349. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1350. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1351. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/package.json +64 -0
  1352. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/package.json +70 -0
  1353. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/.npmignore +3 -0
  1354. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/HISTORY.md +114 -0
  1355. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/README.md +103 -0
  1356. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/index.js +224 -0
  1357. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/package.json +71 -0
  1358. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/package.json +96 -0
  1359. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/.npmignore +1 -0
  1360. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/History.md +25 -0
  1361. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/Makefile +7 -0
  1362. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/Readme.md +54 -0
  1363. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/component.json +7 -0
  1364. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/index.js +41 -0
  1365. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/package.json +49 -0
  1366. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/HISTORY.md +95 -0
  1367. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/LICENSE +23 -0
  1368. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/README.md +115 -0
  1369. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/index.js +231 -0
  1370. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/HISTORY.md +74 -0
  1371. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/LICENSE +22 -0
  1372. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/README.md +94 -0
  1373. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/index.js +160 -0
  1374. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1375. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1376. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1377. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1378. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1379. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1380. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1381. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1382. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1383. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1384. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1385. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1386. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1387. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1388. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1389. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1390. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1391. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1392. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/package.json +78 -0
  1393. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/package.json +91 -0
  1394. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/LICENSE +22 -0
  1395. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/README.md +41 -0
  1396. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/index.js +39 -0
  1397. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/HISTORY.md +188 -0
  1398. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/LICENSE +22 -0
  1399. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/README.md +76 -0
  1400. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/db.json +6325 -0
  1401. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/index.js +11 -0
  1402. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/package.json +93 -0
  1403. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/package.json +96 -0
  1404. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/.npmignore +3 -0
  1405. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/History.md +16 -0
  1406. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/LICENSE +22 -0
  1407. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/README.md +59 -0
  1408. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/index.js +112 -0
  1409. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/package.json +71 -0
  1410. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/package.json +97 -0
  1411. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/HISTORY.md +44 -0
  1412. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/LICENSE +23 -0
  1413. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/README.md +141 -0
  1414. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/index.js +79 -0
  1415. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/.npmignore +5 -0
  1416. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/README.md +33 -0
  1417. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/index.js +111 -0
  1418. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/package.json +43 -0
  1419. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/package.json +98 -0
  1420. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/HISTORY.md +51 -0
  1421. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/LICENSE +22 -0
  1422. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/README.md +78 -0
  1423. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/index.js +59 -0
  1424. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/lib/parse.js +90 -0
  1425. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/.npmignore +4 -0
  1426. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/History.md +38 -0
  1427. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/Readme.md +42 -0
  1428. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/index.js +51 -0
  1429. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/package.json +59 -0
  1430. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/package.json +72 -0
  1431. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/.npmignore +4 -0
  1432. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/History.md +27 -0
  1433. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/Makefile +7 -0
  1434. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/Readme.md +42 -0
  1435. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/index.js +51 -0
  1436. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/package.json +55 -0
  1437. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/.npmignore +2 -0
  1438. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/LICENSE +9 -0
  1439. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/README.md +44 -0
  1440. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/index.js +75 -0
  1441. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/package.json +53 -0
  1442. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/HISTORY.md +90 -0
  1443. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/LICENSE +22 -0
  1444. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/README.md +123 -0
  1445. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/index.js +241 -0
  1446. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/HISTORY.md +55 -0
  1447. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/LICENSE +22 -0
  1448. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/README.md +78 -0
  1449. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/index.js +79 -0
  1450. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/LICENSE +15 -0
  1451. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/README.md +53 -0
  1452. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/index.js +24 -0
  1453. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/package.json +69 -0
  1454. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/LICENSE +22 -0
  1455. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/README.md +27 -0
  1456. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/index.js +24 -0
  1457. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/package.json +68 -0
  1458. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/.npmignore +3 -0
  1459. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/.travis.yml +6 -0
  1460. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/LICENSE +24 -0
  1461. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/README.md +29 -0
  1462. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/benchmark/benchmark.js +15 -0
  1463. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/index.js +21 -0
  1464. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/package.json +55 -0
  1465. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/test/test.js +24 -0
  1466. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/HISTORY.md +26 -0
  1467. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/LICENSE +22 -0
  1468. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/README.md +78 -0
  1469. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/index.js +110 -0
  1470. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/LICENSE +22 -0
  1471. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/README.md +48 -0
  1472. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/index.js +10 -0
  1473. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/package.json +65 -0
  1474. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/promise.js +8 -0
  1475. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/package.json +84 -0
  1476. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/package.json +83 -0
  1477. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/HISTORY.md +63 -0
  1478. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/LICENSE +22 -0
  1479. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/README.md +63 -0
  1480. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/index.js +80 -0
  1481. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/LICENSE +16 -0
  1482. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/README.md +42 -0
  1483. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/inherits.js +1 -0
  1484. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/inherits_browser.js +23 -0
  1485. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/package.json +50 -0
  1486. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/test.js +25 -0
  1487. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/LICENSE +22 -0
  1488. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/README.md +114 -0
  1489. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/codes.json +64 -0
  1490. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/index.js +60 -0
  1491. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/package.json +83 -0
  1492. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/package.json +74 -0
  1493. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/package.json +100 -0
  1494. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/.jshintrc +3 -0
  1495. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/.npmignore +6 -0
  1496. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/History.md +150 -0
  1497. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/Makefile +33 -0
  1498. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/Readme.md +156 -0
  1499. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/browser.js +147 -0
  1500. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/component.json +19 -0
  1501. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/debug.js +197 -0
  1502. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node.js +129 -0
  1503. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/.npmignore +5 -0
  1504. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/README.md +33 -0
  1505. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/index.js +111 -0
  1506. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/package.json +43 -0
  1507. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/package.json +70 -0
  1508. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/History.md +62 -0
  1509. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/LICENSE +22 -0
  1510. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/Readme.md +266 -0
  1511. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/index.js +522 -0
  1512. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/buffer-concat.js +33 -0
  1513. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/callsite-tostring.js +101 -0
  1514. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/index.js +69 -0
  1515. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/package.json +66 -0
  1516. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/HISTORY.md +63 -0
  1517. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/LICENSE +23 -0
  1518. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/README.md +57 -0
  1519. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/index.js +161 -0
  1520. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/HISTORY.md +74 -0
  1521. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/LICENSE +22 -0
  1522. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/README.md +94 -0
  1523. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/index.js +160 -0
  1524. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1525. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1526. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1527. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1528. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1529. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1530. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1531. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1532. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1533. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1534. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1535. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1536. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1537. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1538. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1539. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1540. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1541. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1542. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/package.json +78 -0
  1543. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/package.json +91 -0
  1544. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/.npmignore +2 -0
  1545. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/Makefile +11 -0
  1546. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/Readme.md +15 -0
  1547. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/component.json +10 -0
  1548. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/index.js +16 -0
  1549. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/package.json +45 -0
  1550. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/package.json +90 -0
  1551. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/public/error.html +14 -0
  1552. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/public/style.css +35 -0
  1553. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/HISTORY.md +183 -0
  1554. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/LICENSE +24 -0
  1555. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/README.md +222 -0
  1556. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/index.js +525 -0
  1557. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/.npmignore +4 -0
  1558. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/LICENSE +22 -0
  1559. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/README.md +89 -0
  1560. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc.js +71 -0
  1561. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc1.js +21 -0
  1562. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16.js +25 -0
  1563. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1564. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16_modbus.js +25 -0
  1565. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc24.js +25 -0
  1566. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc32.js +25 -0
  1567. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc8.js +25 -0
  1568. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc8_1wire.js +25 -0
  1569. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/create.js +10 -0
  1570. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/hex.js +9 -0
  1571. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/index.js +11 -0
  1572. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/package.json +57 -0
  1573. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/.npmignore +2 -0
  1574. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/LICENSE +22 -0
  1575. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/README.md +44 -0
  1576. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/index.js +27 -0
  1577. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/LICENSE +15 -0
  1578. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/README.md +53 -0
  1579. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/index.js +24 -0
  1580. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/package.json +69 -0
  1581. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/HISTORY.md +21 -0
  1582. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/LICENSE +22 -0
  1583. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/README.md +114 -0
  1584. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/child_process.js +8 -0
  1585. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/crypto.js +9 -0
  1586. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/dns.js +16 -0
  1587. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/fs.js +52 -0
  1588. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/LICENSE +22 -0
  1589. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/README.md +48 -0
  1590. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/index.js +10 -0
  1591. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/package.json +65 -0
  1592. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/promise.js +6 -0
  1593. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/History.md +11 -0
  1594. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/LICENSE +22 -0
  1595. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/README.md +66 -0
  1596. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/index.js +73 -0
  1597. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/package.json +75 -0
  1598. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/LICENSE +22 -0
  1599. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/README.md +68 -0
  1600. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/index.js +62 -0
  1601. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/package.json +72 -0
  1602. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/package.json +74 -0
  1603. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/zlib.js +13 -0
  1604. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/package.json +58 -0
  1605. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/test.js +46 -0
  1606. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/.travis.yml +6 -0
  1607. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/LICENSE +20 -0
  1608. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/README.md +34 -0
  1609. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/index.js +23 -0
  1610. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/package.json +60 -0
  1611. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/package.json +92 -0
  1612. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/cookie.js +128 -0
  1613. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/memory.js +151 -0
  1614. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/session.js +124 -0
  1615. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/store.js +84 -0
  1616. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/HISTORY.md +33 -0
  1617. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/LICENSE +22 -0
  1618. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/README.md +133 -0
  1619. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/index.js +163 -0
  1620. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/.npmignore +2 -0
  1621. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/Makefile +11 -0
  1622. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/Readme.md +15 -0
  1623. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/component.json +10 -0
  1624. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/index.js +16 -0
  1625. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/package.json +45 -0
  1626. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/package.json +79 -0
  1627. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/HISTORY.md +24 -0
  1628. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/LICENSE +22 -0
  1629. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/README.md +58 -0
  1630. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/index.js +53 -0
  1631. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/package.json +76 -0
  1632. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/HISTORY.md +22 -0
  1633. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/LICENSE +22 -0
  1634. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/README.md +81 -0
  1635. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/index.js +270 -0
  1636. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/package.json +58 -0
  1637. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/HISTORY.md +72 -0
  1638. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/LICENSE +23 -0
  1639. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/README.md +173 -0
  1640. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/index.js +130 -0
  1641. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/.npmignore +1 -0
  1642. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/History.md +20 -0
  1643. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/LICENSE +23 -0
  1644. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/Readme.md +4 -0
  1645. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/index.js +41 -0
  1646. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/package.json +57 -0
  1647. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/test/methods.js +33 -0
  1648. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/.npmignore +3 -0
  1649. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/History.md +16 -0
  1650. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/LICENSE +22 -0
  1651. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/README.md +59 -0
  1652. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/index.js +112 -0
  1653. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/package.json +71 -0
  1654. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/package.json +90 -0
  1655. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/HISTORY.md +72 -0
  1656. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/LICENSE +23 -0
  1657. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/README.md +200 -0
  1658. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/index.js +326 -0
  1659. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/Readme.md +26 -0
  1660. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/index.js +28 -0
  1661. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/package.json +55 -0
  1662. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/HISTORY.md +66 -0
  1663. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/LICENSE +23 -0
  1664. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/README.md +90 -0
  1665. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/index.js +127 -0
  1666. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1667. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1668. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1669. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/package.json +63 -0
  1670. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/package.json +70 -0
  1671. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/package.json +90 -0
  1672. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.jshintrc +70 -0
  1673. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.npmignore +2 -0
  1674. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.travis.yml +6 -0
  1675. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/CHANGELOG.md +285 -0
  1676. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/LICENSE +7 -0
  1677. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/README.md +238 -0
  1678. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/index.js +718 -0
  1679. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/.npmignore +5 -0
  1680. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/LICENSE +18 -0
  1681. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/README.md +15 -0
  1682. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/duplex.js +1 -0
  1683. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/float.patch +923 -0
  1684. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  1685. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  1686. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_readable.js +951 -0
  1687. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_transform.js +209 -0
  1688. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_writable.js +477 -0
  1689. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  1690. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  1691. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  1692. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  1693. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  1694. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  1695. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  1696. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  1697. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  1698. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  1699. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  1700. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  1701. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  1702. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  1703. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  1704. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  1705. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  1706. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  1707. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  1708. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  1709. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  1710. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/package.json +69 -0
  1711. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/passthrough.js +1 -0
  1712. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/readable.js +7 -0
  1713. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/transform.js +1 -0
  1714. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/writable.js +1 -0
  1715. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/.npmignore +1 -0
  1716. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/README.md +14 -0
  1717. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/index.js +16 -0
  1718. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/package.json +47 -0
  1719. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.js +20 -0
  1720. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.txt +1 -0
  1721. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/package.json +63 -0
  1722. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/.npmignore +3 -0
  1723. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/History.md +11 -0
  1724. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/LICENSE +22 -0
  1725. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/README.md +59 -0
  1726. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/index.js +91 -0
  1727. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/package.json +59 -0
  1728. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/.npmignore +4 -0
  1729. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/HISTORY.md +42 -0
  1730. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/LICENSE +24 -0
  1731. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/README.md +107 -0
  1732. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/index.js +136 -0
  1733. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/package.json +80 -0
  1734. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/.npmignore +4 -0
  1735. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/History.md +5 -0
  1736. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/Makefile +7 -0
  1737. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/Readme.md +29 -0
  1738. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/index.js +29 -0
  1739. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/package.json +31 -0
  1740. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.jshintignore +1 -0
  1741. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.jshintrc +10 -0
  1742. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.npmignore +18 -0
  1743. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.travis.yml +4 -0
  1744. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/CHANGELOG.md +47 -0
  1745. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/CONTRIBUTING.md +1 -0
  1746. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/LICENSE +28 -0
  1747. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/Makefile +8 -0
  1748. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/README.md +213 -0
  1749. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/index.js +1 -0
  1750. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/index.js +15 -0
  1751. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/parse.js +156 -0
  1752. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/stringify.js +58 -0
  1753. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/utils.js +139 -0
  1754. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/package.json +60 -0
  1755. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/test/parse.js +391 -0
  1756. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/test/stringify.js +139 -0
  1757. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/.npmignore +3 -0
  1758. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/HISTORY.md +18 -0
  1759. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/LICENSE +23 -0
  1760. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/README.md +32 -0
  1761. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/index.js +45 -0
  1762. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/package.json +82 -0
  1763. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/HISTORY.md +75 -0
  1764. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/LICENSE +25 -0
  1765. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/README.md +120 -0
  1766. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/index.js +163 -0
  1767. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/HISTORY.md +55 -0
  1768. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/LICENSE +22 -0
  1769. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/README.md +141 -0
  1770. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/index.js +171 -0
  1771. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/.npmignore +5 -0
  1772. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/LICENSE +22 -0
  1773. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/README.md +98 -0
  1774. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc.js +71 -0
  1775. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc1.js +21 -0
  1776. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16.js +25 -0
  1777. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1778. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16_modbus.js +25 -0
  1779. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc24.js +25 -0
  1780. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc32.js +25 -0
  1781. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc8.js +25 -0
  1782. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc8_1wire.js +25 -0
  1783. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/create.js +11 -0
  1784. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/hex.js +9 -0
  1785. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/index.js +11 -0
  1786. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/package.json +58 -0
  1787. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/package.json +75 -0
  1788. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/.npmignore +5 -0
  1789. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/README.md +33 -0
  1790. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/index.js +111 -0
  1791. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/package.json +43 -0
  1792. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/package.json +68 -0
  1793. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/HISTORY.md +75 -0
  1794. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/LICENSE +25 -0
  1795. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/README.md +123 -0
  1796. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/index.js +530 -0
  1797. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/HISTORY.md +74 -0
  1798. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/LICENSE +22 -0
  1799. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/README.md +94 -0
  1800. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/index.js +160 -0
  1801. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1802. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1803. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1804. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1805. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1806. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1807. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1808. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1809. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1810. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1811. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1812. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1813. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1814. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1815. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1816. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1817. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1818. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1819. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/package.json +79 -0
  1820. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/package.json +92 -0
  1821. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/.npmignore +4 -0
  1822. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/History.md +71 -0
  1823. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Makefile +6 -0
  1824. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md +74 -0
  1825. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/component.json +14 -0
  1826. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/index.js +158 -0
  1827. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/package.json +42 -0
  1828. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/package.json +85 -0
  1829. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/directory.html +82 -0
  1830. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/application_xp.png +0 -0
  1831. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/application_xp_terminal.png +0 -0
  1832. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/box.png +0 -0
  1833. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/cd.png +0 -0
  1834. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/controller.png +0 -0
  1835. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/drive.png +0 -0
  1836. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/film.png +0 -0
  1837. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/folder.png +0 -0
  1838. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/font.png +0 -0
  1839. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/image.png +0 -0
  1840. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/map.png +0 -0
  1841. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page.png +0 -0
  1842. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_add.png +0 -0
  1843. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_attach.png +0 -0
  1844. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_code.png +0 -0
  1845. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_copy.png +0 -0
  1846. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_delete.png +0 -0
  1847. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_edit.png +0 -0
  1848. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_error.png +0 -0
  1849. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_excel.png +0 -0
  1850. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_find.png +0 -0
  1851. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_gear.png +0 -0
  1852. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_go.png +0 -0
  1853. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_green.png +0 -0
  1854. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_key.png +0 -0
  1855. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_lightning.png +0 -0
  1856. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_link.png +0 -0
  1857. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_paintbrush.png +0 -0
  1858. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_paste.png +0 -0
  1859. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_red.png +0 -0
  1860. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_refresh.png +0 -0
  1861. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_save.png +0 -0
  1862. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white.png +0 -0
  1863. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_acrobat.png +0 -0
  1864. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_actionscript.png +0 -0
  1865. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_add.png +0 -0
  1866. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_c.png +0 -0
  1867. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_camera.png +0 -0
  1868. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cd.png +0 -0
  1869. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_code.png +0 -0
  1870. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_code_red.png +0 -0
  1871. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_coldfusion.png +0 -0
  1872. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_compressed.png +0 -0
  1873. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_copy.png +0 -0
  1874. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cplusplus.png +0 -0
  1875. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_csharp.png +0 -0
  1876. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cup.png +0 -0
  1877. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_database.png +0 -0
  1878. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_delete.png +0 -0
  1879. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_dvd.png +0 -0
  1880. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_edit.png +0 -0
  1881. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_error.png +0 -0
  1882. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_excel.png +0 -0
  1883. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_find.png +0 -0
  1884. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_flash.png +0 -0
  1885. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_freehand.png +0 -0
  1886. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_gear.png +0 -0
  1887. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_get.png +0 -0
  1888. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_go.png +0 -0
  1889. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_h.png +0 -0
  1890. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_horizontal.png +0 -0
  1891. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_key.png +0 -0
  1892. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_lightning.png +0 -0
  1893. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_link.png +0 -0
  1894. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_magnify.png +0 -0
  1895. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_medal.png +0 -0
  1896. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_office.png +0 -0
  1897. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paint.png +0 -0
  1898. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paintbrush.png +0 -0
  1899. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paste.png +0 -0
  1900. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_php.png +0 -0
  1901. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_picture.png +0 -0
  1902. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_powerpoint.png +0 -0
  1903. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_put.png +0 -0
  1904. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_ruby.png +0 -0
  1905. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_stack.png +0 -0
  1906. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_star.png +0 -0
  1907. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_swoosh.png +0 -0
  1908. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_text.png +0 -0
  1909. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_text_width.png +0 -0
  1910. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_tux.png +0 -0
  1911. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_vector.png +0 -0
  1912. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_visualstudio.png +0 -0
  1913. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_width.png +0 -0
  1914. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_word.png +0 -0
  1915. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_world.png +0 -0
  1916. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_wrench.png +0 -0
  1917. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_zip.png +0 -0
  1918. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_word.png +0 -0
  1919. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_world.png +0 -0
  1920. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/style.css +257 -0
  1921. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/HISTORY.md +193 -0
  1922. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/LICENSE +25 -0
  1923. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/README.md +159 -0
  1924. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/index.js +137 -0
  1925. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/.npmignore +2 -0
  1926. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/Makefile +11 -0
  1927. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/Readme.md +15 -0
  1928. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/component.json +10 -0
  1929. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/index.js +16 -0
  1930. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/package.json +46 -0
  1931. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/History.md +205 -0
  1932. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/LICENSE +23 -0
  1933. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/Readme.md +182 -0
  1934. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/index.js +773 -0
  1935. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/README.md +38 -0
  1936. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/index.js +36 -0
  1937. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/package.json +67 -0
  1938. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/HISTORY.md +43 -0
  1939. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/LICENSE +22 -0
  1940. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/README.md +141 -0
  1941. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/index.js +161 -0
  1942. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/.npmignore +4 -0
  1943. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/LICENSE +22 -0
  1944. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/README.md +89 -0
  1945. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc.js +71 -0
  1946. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc1.js +21 -0
  1947. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16.js +25 -0
  1948. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1949. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16_modbus.js +25 -0
  1950. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc24.js +25 -0
  1951. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc32.js +25 -0
  1952. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc8.js +25 -0
  1953. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc8_1wire.js +25 -0
  1954. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/create.js +10 -0
  1955. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/hex.js +9 -0
  1956. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/index.js +11 -0
  1957. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/package.json +58 -0
  1958. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/package.json +74 -0
  1959. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/.npmignore +5 -0
  1960. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/README.md +33 -0
  1961. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/index.js +111 -0
  1962. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/package.json +45 -0
  1963. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/HISTORY.md +66 -0
  1964. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/LICENSE +23 -0
  1965. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/README.md +90 -0
  1966. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/index.js +127 -0
  1967. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1968. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1969. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1970. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/package.json +64 -0
  1971. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/package.json +71 -0
  1972. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/HISTORY.md +35 -0
  1973. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/LICENSE +22 -0
  1974. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/README.md +48 -0
  1975. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/index.js +49 -0
  1976. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/package.json +76 -0
  1977. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/package.json +85 -0
  1978. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/.travis.yml +6 -0
  1979. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/LICENSE +20 -0
  1980. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/README.md +34 -0
  1981. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/index.js +23 -0
  1982. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/package.json +60 -0
  1983. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/package.json +84 -0
  1984. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/HISTORY.md +115 -0
  1985. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/LICENSE +21 -0
  1986. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/README.md +117 -0
  1987. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/index.js +228 -0
  1988. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/HISTORY.md +97 -0
  1989. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/LICENSE +22 -0
  1990. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/README.md +102 -0
  1991. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/index.js +63 -0
  1992. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1993. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1994. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1995. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1996. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1997. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/package.json +93 -0
  1998. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/package.json +83 -0
  1999. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/package.json +92 -0
  2000. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/HISTORY.md +20 -0
  2001. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/LICENSE +23 -0
  2002. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/README.md +128 -0
  2003. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/index.js +146 -0
  2004. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/package.json +93 -0
  2005. data/jasmine/node_modules/karma/node_modules/connect/package.json +120 -0
  2006. data/jasmine/node_modules/karma/node_modules/connect/support/docs.jade +38 -0
  2007. data/jasmine/node_modules/karma/node_modules/connect/support/docs.js +46 -0
  2008. data/jasmine/node_modules/karma/node_modules/di/LICENSE +20 -0
  2009. data/jasmine/node_modules/karma/node_modules/di/README.md +22 -0
  2010. data/jasmine/node_modules/karma/node_modules/di/lib/annotation.js +37 -0
  2011. data/jasmine/node_modules/karma/node_modules/di/lib/index.js +5 -0
  2012. data/jasmine/node_modules/karma/node_modules/di/lib/injector.js +131 -0
  2013. data/jasmine/node_modules/karma/node_modules/di/lib/module.js +24 -0
  2014. data/jasmine/node_modules/karma/node_modules/di/package.json +52 -0
  2015. data/jasmine/node_modules/karma/node_modules/glob/.npmignore +2 -0
  2016. data/jasmine/node_modules/karma/node_modules/glob/.travis.yml +3 -0
  2017. data/jasmine/node_modules/karma/node_modules/glob/LICENSE +27 -0
  2018. data/jasmine/node_modules/karma/node_modules/glob/README.md +250 -0
  2019. data/jasmine/node_modules/karma/node_modules/glob/examples/g.js +9 -0
  2020. data/jasmine/node_modules/karma/node_modules/glob/examples/usr-local.js +9 -0
  2021. data/jasmine/node_modules/karma/node_modules/glob/glob.js +728 -0
  2022. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  2023. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/README.md +42 -0
  2024. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  2025. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  2026. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/package.json +48 -0
  2027. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/test.js +25 -0
  2028. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
  2029. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  2030. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/README.md +218 -0
  2031. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/minimatch.js +1061 -0
  2032. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore +1 -0
  2033. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
  2034. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  2035. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md +109 -0
  2036. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +274 -0
  2037. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json +57 -0
  2038. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js +395 -0
  2039. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +121 -0
  2040. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  2041. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  2042. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  2043. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  2044. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json +58 -0
  2045. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  2046. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  2047. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/package.json +56 -0
  2048. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
  2049. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js +33 -0
  2050. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/caching.js +14 -0
  2051. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
  2052. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  2053. data/jasmine/node_modules/karma/node_modules/glob/package.json +57 -0
  2054. data/jasmine/node_modules/karma/node_modules/glob/test/00-setup.js +176 -0
  2055. data/jasmine/node_modules/karma/node_modules/glob/test/bash-comparison.js +63 -0
  2056. data/jasmine/node_modules/karma/node_modules/glob/test/bash-results.json +351 -0
  2057. data/jasmine/node_modules/karma/node_modules/glob/test/cwd-test.js +55 -0
  2058. data/jasmine/node_modules/karma/node_modules/glob/test/globstar-match.js +19 -0
  2059. data/jasmine/node_modules/karma/node_modules/glob/test/mark.js +118 -0
  2060. data/jasmine/node_modules/karma/node_modules/glob/test/new-glob-optional-options.js +10 -0
  2061. data/jasmine/node_modules/karma/node_modules/glob/test/nocase-nomagic.js +113 -0
  2062. data/jasmine/node_modules/karma/node_modules/glob/test/pause-resume.js +73 -0
  2063. data/jasmine/node_modules/karma/node_modules/glob/test/readme-issue.js +36 -0
  2064. data/jasmine/node_modules/karma/node_modules/glob/test/root-nomount.js +39 -0
  2065. data/jasmine/node_modules/karma/node_modules/glob/test/root.js +46 -0
  2066. data/jasmine/node_modules/karma/node_modules/glob/test/stat.js +32 -0
  2067. data/jasmine/node_modules/karma/node_modules/glob/test/zz-cleanup.js +11 -0
  2068. data/jasmine/node_modules/karma/node_modules/graceful-fs/.npmignore +1 -0
  2069. data/jasmine/node_modules/karma/node_modules/graceful-fs/LICENSE +27 -0
  2070. data/jasmine/node_modules/karma/node_modules/graceful-fs/README.md +26 -0
  2071. data/jasmine/node_modules/karma/node_modules/graceful-fs/graceful-fs.js +160 -0
  2072. data/jasmine/node_modules/karma/node_modules/graceful-fs/package.json +64 -0
  2073. data/jasmine/node_modules/karma/node_modules/graceful-fs/polyfills.js +228 -0
  2074. data/jasmine/node_modules/karma/node_modules/graceful-fs/test/open.js +39 -0
  2075. data/jasmine/node_modules/karma/node_modules/graceful-fs/test/readdir-sort.js +21 -0
  2076. data/jasmine/node_modules/karma/node_modules/http-proxy/.npmignore +3 -0
  2077. data/jasmine/node_modules/karma/node_modules/http-proxy/.travis.yml +10 -0
  2078. data/jasmine/node_modules/karma/node_modules/http-proxy/CHANGELOG.md +97 -0
  2079. data/jasmine/node_modules/karma/node_modules/http-proxy/LICENSE +23 -0
  2080. data/jasmine/node_modules/karma/node_modules/http-proxy/README.md +646 -0
  2081. data/jasmine/node_modules/karma/node_modules/http-proxy/benchmark/websockets-throughput.js +88 -0
  2082. data/jasmine/node_modules/karma/node_modules/http-proxy/bin/node-http-proxy +113 -0
  2083. data/jasmine/node_modules/karma/node_modules/http-proxy/config.sample.json +10 -0
  2084. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/balancer/simple-balancer-with-websockets.js +58 -0
  2085. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/balancer/simple-balancer.js +36 -0
  2086. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/helpers/store.js +64 -0
  2087. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/basic-proxy.js +58 -0
  2088. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/concurrent-proxy.js +66 -0
  2089. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/custom-proxy-error.js +54 -0
  2090. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/forward-proxy.js +63 -0
  2091. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/latent-proxy.js +56 -0
  2092. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-https-to-http.js +51 -0
  2093. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-https-to-https.js +55 -0
  2094. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-table.js +51 -0
  2095. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/standalone-proxy.js +57 -0
  2096. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/bodyDecoder-middleware.js +87 -0
  2097. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/gzip-middleware-proxytable.js +54 -0
  2098. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/gzip-middleware.js +50 -0
  2099. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/jsonp-middleware.js +30 -0
  2100. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/modifyResponse-middleware.js +57 -0
  2101. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/url-middleware.js +58 -0
  2102. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/url-middleware2.js +30 -0
  2103. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/package.json +12 -0
  2104. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/latent-websocket-proxy.js +92 -0
  2105. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/standalone-websocket-proxy.js +87 -0
  2106. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/websocket-proxy.js +69 -0
  2107. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy.js +397 -0
  2108. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/http-proxy.js +983 -0
  2109. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/proxy-table.js +282 -0
  2110. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/routing-proxy.js +322 -0
  2111. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/.npmignore +2 -0
  2112. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/LICENSE +19 -0
  2113. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/README.md +86 -0
  2114. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/docs/docco.css +194 -0
  2115. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/docs/pkginfo.html +101 -0
  2116. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/all-properties.js +19 -0
  2117. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/array-argument.js +20 -0
  2118. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/multiple-properties.js +19 -0
  2119. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/object-argument.js +22 -0
  2120. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/package.json +10 -0
  2121. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/single-property.js +19 -0
  2122. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/subdir/package.json +11 -0
  2123. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/target-dir.js +20 -0
  2124. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/lib/pkginfo.js +136 -0
  2125. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/package.json +50 -0
  2126. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/test/pkginfo-test.js +83 -0
  2127. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/.npmignore +4 -0
  2128. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/.travis.yml +10 -0
  2129. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/CHANGELOG.md +16 -0
  2130. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/LICENSE +19 -0
  2131. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/README.md +87 -0
  2132. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/args.js +46 -0
  2133. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/base64.js +44 -0
  2134. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/file.js +33 -0
  2135. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/format.js +25 -0
  2136. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/index.js +467 -0
  2137. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/.bin/mkdirp +33 -0
  2138. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/.bin/ncp +48 -0
  2139. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/LICENSE +19 -0
  2140. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/README.md +1425 -0
  2141. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/component.json +11 -0
  2142. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/lib/async.js +958 -0
  2143. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/package.json +60 -0
  2144. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/.travis.yml +4 -0
  2145. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/LICENSE +18 -0
  2146. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/example/cmp.js +11 -0
  2147. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/index.js +94 -0
  2148. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/lib/is_arguments.js +20 -0
  2149. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/lib/keys.js +9 -0
  2150. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/package.json +83 -0
  2151. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/readme.markdown +61 -0
  2152. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/test/cmp.js +89 -0
  2153. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/.npmignore +3 -0
  2154. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/.travis.yml +9 -0
  2155. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/LICENSE +18 -0
  2156. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/README.md +174 -0
  2157. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/defaults.js +63 -0
  2158. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/inflect.js +11 -0
  2159. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/inflections.js +116 -0
  2160. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/methods.js +233 -0
  2161. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/native.js +26 -0
  2162. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/util.js +136 -0
  2163. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/package.json +78 -0
  2164. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/cases.js +209 -0
  2165. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/inflections-test.js +87 -0
  2166. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/methods-test.js +342 -0
  2167. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/utils/array-test.js +39 -0
  2168. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/utils/string-test.js +88 -0
  2169. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/.travis.yml +8 -0
  2170. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/LICENSE +21 -0
  2171. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/bin/cmd.js +33 -0
  2172. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/bin/usage.txt +12 -0
  2173. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/examples/pow.js +6 -0
  2174. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/index.js +98 -0
  2175. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  2176. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  2177. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  2178. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  2179. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/package.json +67 -0
  2180. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  2181. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  2182. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  2183. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  2184. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  2185. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  2186. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  2187. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  2188. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  2189. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/package.json +59 -0
  2190. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/readme.markdown +100 -0
  2191. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/chmod.js +41 -0
  2192. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/clobber.js +38 -0
  2193. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/mkdirp.js +28 -0
  2194. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/opts_fs.js +29 -0
  2195. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  2196. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/perm.js +32 -0
  2197. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/perm_sync.js +36 -0
  2198. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/race.js +37 -0
  2199. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/rel.js +32 -0
  2200. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/return.js +25 -0
  2201. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/return_sync.js +24 -0
  2202. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/root.js +19 -0
  2203. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/sync.js +32 -0
  2204. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/umask.js +28 -0
  2205. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/umask_sync.js +32 -0
  2206. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/.npmignore +4 -0
  2207. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/.travis.yml +7 -0
  2208. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/LICENSE.md +21 -0
  2209. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/README.md +52 -0
  2210. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/bin/ncp +48 -0
  2211. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/lib/ncp.js +222 -0
  2212. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/package.json +53 -0
  2213. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/a +1 -0
  2214. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/b +1 -0
  2215. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/c +0 -0
  2216. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/d +0 -0
  2217. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/e +0 -0
  2218. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/f +0 -0
  2219. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/sub/a +1 -0
  2220. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/sub/b +0 -0
  2221. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/ncp-test.js +86 -0
  2222. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/package.json +62 -0
  2223. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/file-test.js +31 -0
  2224. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/read-json-file/config.json +9 -0
  2225. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/require-directory/directory/index.js +2 -0
  2226. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/require-directory/helloWorld.js +2 -0
  2227. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/format-test.js +31 -0
  2228. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/function-args-test.js +104 -0
  2229. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/helpers/macros.js +37 -0
  2230. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js +39 -0
  2231. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/require-directory-test.js +35 -0
  2232. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/utile-test.js +126 -0
  2233. data/jasmine/node_modules/karma/node_modules/http-proxy/package.json +69 -0
  2234. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/README.md +10 -0
  2235. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/common.js +190 -0
  2236. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/pummel/test-http-upload-timeout.js +69 -0
  2237. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/run +90 -0
  2238. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/run-single +70 -0
  2239. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-chunked.js +63 -0
  2240. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-abort.js +80 -0
  2241. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-abort2.js +41 -0
  2242. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-upload-buf.js +74 -0
  2243. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-upload.js +77 -0
  2244. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-contentLength0.js +42 -0
  2245. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-eof-on-connect.js +40 -0
  2246. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-extra-response.js +86 -0
  2247. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-request.js +56 -0
  2248. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body-end.js +61 -0
  2249. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body.js +58 -0
  2250. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-host-headers.js +101 -0
  2251. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-many-keep-alive-connections.js +68 -0
  2252. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-multi-line-headers.js +59 -0
  2253. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-proxy.js +109 -0
  2254. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-response-close.js +55 -0
  2255. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-server-multiheaders.js +59 -0
  2256. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-set-cookies.js +84 -0
  2257. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-status-code.js +69 -0
  2258. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-upgrade-server2.js +72 -0
  2259. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http.js +108 -0
  2260. data/jasmine/node_modules/karma/node_modules/http-proxy/test/examples-test.js +26 -0
  2261. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-cert.pem +13 -0
  2262. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-csr.pem +10 -0
  2263. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-key.pem +9 -0
  2264. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2.cnf +19 -0
  2265. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/http.js +182 -0
  2266. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/index.js +105 -0
  2267. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/ws.js +112 -0
  2268. data/jasmine/node_modules/karma/node_modules/http-proxy/test/http/http-test.js +102 -0
  2269. data/jasmine/node_modules/karma/node_modules/http-proxy/test/http/routing-table-test.js +107 -0
  2270. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/examples.js +101 -0
  2271. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/http.js +531 -0
  2272. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/index.js +11 -0
  2273. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/ws.js +232 -0
  2274. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/routing-table-test.js +25 -0
  2275. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/socket.io-test.js +20 -0
  2276. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/ws-test.js +23 -0
  2277. data/jasmine/node_modules/karma/node_modules/lodash/LICENSE.txt +22 -0
  2278. data/jasmine/node_modules/karma/node_modules/lodash/README.md +145 -0
  2279. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.compat.js +7158 -0
  2280. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.compat.min.js +92 -0
  2281. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.js +6786 -0
  2282. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.min.js +87 -0
  2283. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.underscore.js +4979 -0
  2284. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.underscore.min.js +39 -0
  2285. data/jasmine/node_modules/karma/node_modules/lodash/lodash.js +7180 -0
  2286. data/jasmine/node_modules/karma/node_modules/lodash/package.json +136 -0
  2287. data/jasmine/node_modules/karma/node_modules/log4js/.bob.json +12 -0
  2288. data/jasmine/node_modules/karma/node_modules/log4js/.bob/lint/jshint.out +71 -0
  2289. data/jasmine/node_modules/karma/node_modules/log4js/.jshintrc +15 -0
  2290. data/jasmine/node_modules/karma/node_modules/log4js/.npmignore +2 -0
  2291. data/jasmine/node_modules/karma/node_modules/log4js/.travis.yml +5 -0
  2292. data/jasmine/node_modules/karma/node_modules/log4js/README.md +148 -0
  2293. data/jasmine/node_modules/karma/node_modules/log4js/examples/example-connect-logger.js +46 -0
  2294. data/jasmine/node_modules/karma/node_modules/log4js/examples/example-socket.js +45 -0
  2295. data/jasmine/node_modules/karma/node_modules/log4js/examples/example.js +60 -0
  2296. data/jasmine/node_modules/karma/node_modules/log4js/examples/flush-on-exit.js +27 -0
  2297. data/jasmine/node_modules/karma/node_modules/log4js/examples/fromreadme.js +19 -0
  2298. data/jasmine/node_modules/karma/node_modules/log4js/examples/log-appending.js +12 -0
  2299. data/jasmine/node_modules/karma/node_modules/log4js/examples/log-rolling.js +27 -0
  2300. data/jasmine/node_modules/karma/node_modules/log4js/examples/loggly-appender.js +24 -0
  2301. data/jasmine/node_modules/karma/node_modules/log4js/examples/logstashUDP.js +39 -0
  2302. data/jasmine/node_modules/karma/node_modules/log4js/examples/memory-test.js +37 -0
  2303. data/jasmine/node_modules/karma/node_modules/log4js/examples/missing-log-dir.js +11 -0
  2304. data/jasmine/node_modules/karma/node_modules/log4js/examples/patternLayout-tokens.js +21 -0
  2305. data/jasmine/node_modules/karma/node_modules/log4js/examples/smtp-appender.js +43 -0
  2306. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/categoryFilter.js +20 -0
  2307. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/clustered.js +138 -0
  2308. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/console.js +21 -0
  2309. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/dateFile.js +73 -0
  2310. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/file.js +101 -0
  2311. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/fileSync.js +189 -0
  2312. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/gelf.js +144 -0
  2313. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/logLevelFilter.js +23 -0
  2314. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/loggly.js +44 -0
  2315. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/logstashUDP.js +50 -0
  2316. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/multiprocess.js +134 -0
  2317. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/smtp.js +109 -0
  2318. data/jasmine/node_modules/karma/node_modules/log4js/lib/connect-logger.js +222 -0
  2319. data/jasmine/node_modules/karma/node_modules/log4js/lib/date_format.js +72 -0
  2320. data/jasmine/node_modules/karma/node_modules/log4js/lib/debug.js +15 -0
  2321. data/jasmine/node_modules/karma/node_modules/log4js/lib/layouts.js +342 -0
  2322. data/jasmine/node_modules/karma/node_modules/log4js/lib/levels.js +69 -0
  2323. data/jasmine/node_modules/karma/node_modules/log4js/lib/log4js.js +474 -0
  2324. data/jasmine/node_modules/karma/node_modules/log4js/lib/log4js.json +7 -0
  2325. data/jasmine/node_modules/karma/node_modules/log4js/lib/logger.js +102 -0
  2326. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/BaseRollingFileStream.js +94 -0
  2327. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/DateRollingFileStream.js +95 -0
  2328. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/RollingFileStream.js +118 -0
  2329. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/index.js +2 -0
  2330. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/.bin/semver +133 -0
  2331. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/LICENSE +19 -0
  2332. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/README.md +1425 -0
  2333. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/component.json +11 -0
  2334. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/lib/async.js +958 -0
  2335. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/package.json +58 -0
  2336. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/.npmignore +5 -0
  2337. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/LICENSE +18 -0
  2338. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/README.md +15 -0
  2339. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/duplex.js +1 -0
  2340. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  2341. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  2342. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  2343. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  2344. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  2345. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  2346. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  2347. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  2348. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  2349. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  2350. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  2351. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  2352. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  2353. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  2354. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  2355. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  2356. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  2357. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  2358. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  2359. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  2360. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  2361. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  2362. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  2363. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  2364. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  2365. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  2366. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/package.json +69 -0
  2367. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/passthrough.js +1 -0
  2368. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/readable.js +8 -0
  2369. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/transform.js +1 -0
  2370. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/writable.js +1 -0
  2371. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/.npmignore +1 -0
  2372. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/LICENSE +15 -0
  2373. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/Makefile +24 -0
  2374. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/README.md +303 -0
  2375. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/bin/semver +133 -0
  2376. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/foot.js.txt +6 -0
  2377. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/head.js.txt +2 -0
  2378. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/package.json +54 -0
  2379. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.browser.js +1198 -0
  2380. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.browser.js.gz +0 -0
  2381. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.js +1202 -0
  2382. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.min.js +1 -0
  2383. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.min.js.gz +0 -0
  2384. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/amd.js +15 -0
  2385. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/big-numbers.js +31 -0
  2386. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/clean.js +29 -0
  2387. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/gtr.js +173 -0
  2388. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/index.js +684 -0
  2389. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/ltr.js +181 -0
  2390. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/major-minor-patch.js +72 -0
  2391. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/no-module.js +19 -0
  2392. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/LICENSE +23 -0
  2393. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/README.md +22 -0
  2394. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/package.json +69 -0
  2395. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore-min.js +6 -0
  2396. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore-min.map +1 -0
  2397. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore.js +1536 -0
  2398. data/jasmine/node_modules/karma/node_modules/log4js/package.json +69 -0
  2399. data/jasmine/node_modules/karma/node_modules/log4js/test/categoryFilter-test.js +84 -0
  2400. data/jasmine/node_modules/karma/node_modules/log4js/test/clusteredAppender-test.js +128 -0
  2401. data/jasmine/node_modules/karma/node_modules/log4js/test/configuration-test.js +149 -0
  2402. data/jasmine/node_modules/karma/node_modules/log4js/test/configureNoLevels-test.js +173 -0
  2403. data/jasmine/node_modules/karma/node_modules/log4js/test/connect-logger-test.js +295 -0
  2404. data/jasmine/node_modules/karma/node_modules/log4js/test/consoleAppender-test.js +33 -0
  2405. data/jasmine/node_modules/karma/node_modules/log4js/test/dateFileAppender-test.js +223 -0
  2406. data/jasmine/node_modules/karma/node_modules/log4js/test/date_format-test.js +58 -0
  2407. data/jasmine/node_modules/karma/node_modules/log4js/test/debug-test.js +72 -0
  2408. data/jasmine/node_modules/karma/node_modules/log4js/test/fa-maxFileSize-with-backups-compressed-test.log.1.gz +0 -0
  2409. data/jasmine/node_modules/karma/node_modules/log4js/test/fa-maxFileSize-with-backups-compressed-test.log.2.gz +0 -0
  2410. data/jasmine/node_modules/karma/node_modules/log4js/test/fileAppender-test.js +419 -0
  2411. data/jasmine/node_modules/karma/node_modules/log4js/test/fileSyncAppender-test.js +182 -0
  2412. data/jasmine/node_modules/karma/node_modules/log4js/test/gelfAppender-test.js +257 -0
  2413. data/jasmine/node_modules/karma/node_modules/log4js/test/global-log-level-test.js +121 -0
  2414. data/jasmine/node_modules/karma/node_modules/log4js/test/layouts-test.js +304 -0
  2415. data/jasmine/node_modules/karma/node_modules/log4js/test/levels-test.js +462 -0
  2416. data/jasmine/node_modules/karma/node_modules/log4js/test/log-abspath-test.js +77 -0
  2417. data/jasmine/node_modules/karma/node_modules/log4js/test/log4js.json +16 -0
  2418. data/jasmine/node_modules/karma/node_modules/log4js/test/logLevelFilter-test.js +93 -0
  2419. data/jasmine/node_modules/karma/node_modules/log4js/test/logger-test.js +81 -0
  2420. data/jasmine/node_modules/karma/node_modules/log4js/test/logging-test.js +630 -0
  2421. data/jasmine/node_modules/karma/node_modules/log4js/test/logglyAppender-test.js +82 -0
  2422. data/jasmine/node_modules/karma/node_modules/log4js/test/logstashUDP-test.js +106 -0
  2423. data/jasmine/node_modules/karma/node_modules/log4js/test/multiprocess-test.js +311 -0
  2424. data/jasmine/node_modules/karma/node_modules/log4js/test/nolog-test.js +297 -0
  2425. data/jasmine/node_modules/karma/node_modules/log4js/test/reloadConfiguration-test.js +340 -0
  2426. data/jasmine/node_modules/karma/node_modules/log4js/test/setLevel-asymmetry-test.js +100 -0
  2427. data/jasmine/node_modules/karma/node_modules/log4js/test/smtpAppender-test.js +226 -0
  2428. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/BaseRollingFileStream-test.js +93 -0
  2429. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/DateRollingFileStream-test.js +227 -0
  2430. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/rollingFileStream-test.js +210 -0
  2431. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream +0 -0
  2432. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-less +1 -0
  2433. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-more +2 -0
  2434. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-more.1 +5 -0
  2435. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files +5 -0
  2436. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.0 +1 -0
  2437. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.1 +5 -0
  2438. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.11 +1 -0
  2439. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.2 +1 -0
  2440. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.20 +1 -0
  2441. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.3 +1 -0
  2442. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.4 +5 -0
  2443. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.5 +1 -0
  2444. data/jasmine/node_modules/karma/node_modules/log4js/test/subcategories-test.js +86 -0
  2445. data/jasmine/node_modules/karma/node_modules/log4js/test/with-categoryFilter.json +23 -0
  2446. data/jasmine/node_modules/karma/node_modules/log4js/test/with-dateFile.json +17 -0
  2447. data/jasmine/node_modules/karma/node_modules/log4js/test/with-log-rolling.json +10 -0
  2448. data/jasmine/node_modules/karma/node_modules/log4js/test/with-logLevelFilter.json +41 -0
  2449. data/jasmine/node_modules/karma/node_modules/mime/LICENSE +19 -0
  2450. data/jasmine/node_modules/karma/node_modules/mime/README.md +66 -0
  2451. data/jasmine/node_modules/karma/node_modules/mime/mime.js +114 -0
  2452. data/jasmine/node_modules/karma/node_modules/mime/package.json +55 -0
  2453. data/jasmine/node_modules/karma/node_modules/mime/test.js +84 -0
  2454. data/jasmine/node_modules/karma/node_modules/mime/types/mime.types +1588 -0
  2455. data/jasmine/node_modules/karma/node_modules/mime/types/node.types +77 -0
  2456. data/jasmine/node_modules/karma/node_modules/minimatch/.npmignore +1 -0
  2457. data/jasmine/node_modules/karma/node_modules/minimatch/LICENSE +23 -0
  2458. data/jasmine/node_modules/karma/node_modules/minimatch/README.md +218 -0
  2459. data/jasmine/node_modules/karma/node_modules/minimatch/minimatch.js +1055 -0
  2460. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/.npmignore +1 -0
  2461. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
  2462. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  2463. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/README.md +109 -0
  2464. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +274 -0
  2465. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/package.json +56 -0
  2466. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/basic.js +395 -0
  2467. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +121 -0
  2468. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  2469. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  2470. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  2471. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  2472. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/package.json +54 -0
  2473. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  2474. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  2475. data/jasmine/node_modules/karma/node_modules/minimatch/package.json +56 -0
  2476. data/jasmine/node_modules/karma/node_modules/minimatch/test/basic.js +399 -0
  2477. data/jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js +33 -0
  2478. data/jasmine/node_modules/karma/node_modules/minimatch/test/caching.js +14 -0
  2479. data/jasmine/node_modules/karma/node_modules/minimatch/test/defaults.js +274 -0
  2480. data/jasmine/node_modules/karma/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  2481. data/jasmine/node_modules/karma/node_modules/optimist/.travis.yml +4 -0
  2482. data/jasmine/node_modules/karma/node_modules/optimist/LICENSE +21 -0
  2483. data/jasmine/node_modules/karma/node_modules/optimist/example/bool.js +10 -0
  2484. data/jasmine/node_modules/karma/node_modules/optimist/example/boolean_double.js +7 -0
  2485. data/jasmine/node_modules/karma/node_modules/optimist/example/boolean_single.js +7 -0
  2486. data/jasmine/node_modules/karma/node_modules/optimist/example/default_hash.js +8 -0
  2487. data/jasmine/node_modules/karma/node_modules/optimist/example/default_singles.js +7 -0
  2488. data/jasmine/node_modules/karma/node_modules/optimist/example/divide.js +8 -0
  2489. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count.js +20 -0
  2490. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count_options.js +29 -0
  2491. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count_wrap.js +29 -0
  2492. data/jasmine/node_modules/karma/node_modules/optimist/example/nonopt.js +4 -0
  2493. data/jasmine/node_modules/karma/node_modules/optimist/example/reflect.js +2 -0
  2494. data/jasmine/node_modules/karma/node_modules/optimist/example/short.js +3 -0
  2495. data/jasmine/node_modules/karma/node_modules/optimist/example/string.js +11 -0
  2496. data/jasmine/node_modules/karma/node_modules/optimist/example/usage-options.js +19 -0
  2497. data/jasmine/node_modules/karma/node_modules/optimist/example/xup.js +10 -0
  2498. data/jasmine/node_modules/karma/node_modules/optimist/index.js +343 -0
  2499. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/.travis.yml +4 -0
  2500. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/LICENSE +18 -0
  2501. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/example/parse.js +2 -0
  2502. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/index.js +187 -0
  2503. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/package.json +66 -0
  2504. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/readme.markdown +73 -0
  2505. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/bool.js +119 -0
  2506. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/dash.js +24 -0
  2507. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/default_bool.js +20 -0
  2508. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/dotted.js +22 -0
  2509. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/long.js +31 -0
  2510. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/num.js +36 -0
  2511. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/parse.js +197 -0
  2512. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/parse_modified.js +9 -0
  2513. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/short.js +67 -0
  2514. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/whitespace.js +8 -0
  2515. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/LICENSE +18 -0
  2516. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/README.markdown +70 -0
  2517. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/example/center.js +10 -0
  2518. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/example/meat.js +3 -0
  2519. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/index.js +76 -0
  2520. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/package.json +62 -0
  2521. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/break.js +30 -0
  2522. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +63 -0
  2523. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/wrap.js +31 -0
  2524. data/jasmine/node_modules/karma/node_modules/optimist/package.json +63 -0
  2525. data/jasmine/node_modules/karma/node_modules/optimist/readme.markdown +513 -0
  2526. data/jasmine/node_modules/karma/node_modules/optimist/test/_.js +71 -0
  2527. data/jasmine/node_modules/karma/node_modules/optimist/test/_/argv.js +2 -0
  2528. data/jasmine/node_modules/karma/node_modules/optimist/test/_/bin.js +3 -0
  2529. data/jasmine/node_modules/karma/node_modules/optimist/test/dash.js +31 -0
  2530. data/jasmine/node_modules/karma/node_modules/optimist/test/parse.js +446 -0
  2531. data/jasmine/node_modules/karma/node_modules/optimist/test/parse_modified.js +14 -0
  2532. data/jasmine/node_modules/karma/node_modules/optimist/test/short.js +16 -0
  2533. data/jasmine/node_modules/karma/node_modules/optimist/test/usage.js +292 -0
  2534. data/jasmine/node_modules/karma/node_modules/optimist/test/whitespace.js +8 -0
  2535. data/jasmine/node_modules/karma/node_modules/q/CONTRIBUTING.md +40 -0
  2536. data/jasmine/node_modules/karma/node_modules/q/LICENSE +19 -0
  2537. data/jasmine/node_modules/karma/node_modules/q/README.md +813 -0
  2538. data/jasmine/node_modules/karma/node_modules/q/benchmark/compare-with-callbacks.js +71 -0
  2539. data/jasmine/node_modules/karma/node_modules/q/benchmark/scenarios.js +36 -0
  2540. data/jasmine/node_modules/karma/node_modules/q/package.json +112 -0
  2541. data/jasmine/node_modules/karma/node_modules/q/q.js +1937 -0
  2542. data/jasmine/node_modules/karma/node_modules/q/queue.js +35 -0
  2543. data/jasmine/node_modules/karma/node_modules/rimraf/AUTHORS +6 -0
  2544. data/jasmine/node_modules/karma/node_modules/rimraf/LICENSE +23 -0
  2545. data/jasmine/node_modules/karma/node_modules/rimraf/README.md +30 -0
  2546. data/jasmine/node_modules/karma/node_modules/rimraf/bin.js +33 -0
  2547. data/jasmine/node_modules/karma/node_modules/rimraf/package.json +72 -0
  2548. data/jasmine/node_modules/karma/node_modules/rimraf/rimraf.js +248 -0
  2549. data/jasmine/node_modules/karma/node_modules/rimraf/test/run.sh +16 -0
  2550. data/jasmine/node_modules/karma/node_modules/rimraf/test/setup.sh +47 -0
  2551. data/jasmine/node_modules/karma/node_modules/rimraf/test/test-async.js +5 -0
  2552. data/jasmine/node_modules/karma/node_modules/rimraf/test/test-sync.js +3 -0
  2553. data/jasmine/node_modules/karma/node_modules/socket.io/.npmignore +3 -0
  2554. data/jasmine/node_modules/karma/node_modules/socket.io/.travis.yml +6 -0
  2555. data/jasmine/node_modules/karma/node_modules/socket.io/History.md +325 -0
  2556. data/jasmine/node_modules/karma/node_modules/socket.io/LICENSE +22 -0
  2557. data/jasmine/node_modules/karma/node_modules/socket.io/Makefile +31 -0
  2558. data/jasmine/node_modules/karma/node_modules/socket.io/Readme.md +364 -0
  2559. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/decode.bench.js +64 -0
  2560. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/encode.bench.js +90 -0
  2561. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/runner.js +55 -0
  2562. data/jasmine/node_modules/karma/node_modules/socket.io/index.js +8 -0
  2563. data/jasmine/node_modules/karma/node_modules/socket.io/lib/logger.js +97 -0
  2564. data/jasmine/node_modules/karma/node_modules/socket.io/lib/manager.js +1027 -0
  2565. data/jasmine/node_modules/karma/node_modules/socket.io/lib/namespace.js +355 -0
  2566. data/jasmine/node_modules/karma/node_modules/socket.io/lib/parser.js +249 -0
  2567. data/jasmine/node_modules/karma/node_modules/socket.io/lib/socket.io.js +143 -0
  2568. data/jasmine/node_modules/karma/node_modules/socket.io/lib/socket.js +369 -0
  2569. data/jasmine/node_modules/karma/node_modules/socket.io/lib/static.js +395 -0
  2570. data/jasmine/node_modules/karma/node_modules/socket.io/lib/store.js +98 -0
  2571. data/jasmine/node_modules/karma/node_modules/socket.io/lib/stores/memory.js +143 -0
  2572. data/jasmine/node_modules/karma/node_modules/socket.io/lib/stores/redis.js +269 -0
  2573. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transport.js +534 -0
  2574. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/flashsocket.js +129 -0
  2575. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/htmlfile.js +83 -0
  2576. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/http-polling.js +147 -0
  2577. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/http.js +121 -0
  2578. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/index.js +12 -0
  2579. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/jsonp-polling.js +97 -0
  2580. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket.js +36 -0
  2581. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/default.js +362 -0
  2582. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/hybi-07-12.js +622 -0
  2583. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/hybi-16.js +622 -0
  2584. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/index.js +11 -0
  2585. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/xhr-polling.js +69 -0
  2586. data/jasmine/node_modules/karma/node_modules/socket.io/lib/util.js +50 -0
  2587. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/.npmignore +3 -0
  2588. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/README.md +18 -0
  2589. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/lib/base64id.js +103 -0
  2590. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/package.json +43 -0
  2591. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/.npmignore +1 -0
  2592. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/LICENSE +19 -0
  2593. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/Makefile +7 -0
  2594. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/README.md +98 -0
  2595. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/doc/index.html +375 -0
  2596. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/examples/basic.fallback.js +8 -0
  2597. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/examples/basic.js +5 -0
  2598. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/index.js +1 -0
  2599. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/lib/server.js +289 -0
  2600. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/package.json +58 -0
  2601. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.crt +21 -0
  2602. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.private.key +27 -0
  2603. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/unit.test.js +231 -0
  2604. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/.npmignore +1 -0
  2605. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/README.md +691 -0
  2606. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/buffer_bench.js +89 -0
  2607. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/hiredis_parser.js +38 -0
  2608. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/re_sub_test.js +14 -0
  2609. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/reconnect_test.js +29 -0
  2610. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/codec.js +16 -0
  2611. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/pub.js +38 -0
  2612. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/run +10 -0
  2613. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/server.js +23 -0
  2614. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/pub.js +49 -0
  2615. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/run +6 -0
  2616. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/server.js +30 -0
  2617. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/00 +13 -0
  2618. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/plot +13 -0
  2619. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/size-rate.png +0 -0
  2620. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/speed.js +84 -0
  2621. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/sub_quit_test.js +18 -0
  2622. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/changelog.md +219 -0
  2623. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/diff_multi_bench_output.js +87 -0
  2624. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/auth.js +5 -0
  2625. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/backpressure_drain.js +33 -0
  2626. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/eval.js +9 -0
  2627. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/extend.js +24 -0
  2628. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/file.js +32 -0
  2629. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/mget.js +5 -0
  2630. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/monitor.js +10 -0
  2631. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/multi.js +46 -0
  2632. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/multi2.js +29 -0
  2633. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/psubscribe.js +33 -0
  2634. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/pub_sub.js +41 -0
  2635. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/simple.js +24 -0
  2636. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/sort.js +17 -0
  2637. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/subqueries.js +15 -0
  2638. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/subquery.js +19 -0
  2639. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/unix_socket.js +29 -0
  2640. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/web_server.js +31 -0
  2641. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/generate_commands.js +39 -0
  2642. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/index.js +1113 -0
  2643. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/commands.js +147 -0
  2644. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/parser/hiredis.js +46 -0
  2645. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/parser/javascript.js +317 -0
  2646. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/queue.js +61 -0
  2647. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/to_array.js +12 -0
  2648. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/util.js +11 -0
  2649. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/mem.js +11 -0
  2650. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/multi_bench.js +225 -0
  2651. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/package.json +48 -0
  2652. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/test.js +1618 -0
  2653. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/.npmignore +2 -0
  2654. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/History.md +237 -0
  2655. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/Makefile +20 -0
  2656. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/README.md +246 -0
  2657. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/bin/builder.js +303 -0
  2658. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json +14 -0
  2659. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js +24 -0
  2660. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-emitter/component.json +13 -0
  2661. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-emitter/index.js +147 -0
  2662. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json-fallback/component.json +15 -0
  2663. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json-fallback/index.js +486 -0
  2664. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json/component.json +17 -0
  2665. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json/index.js +4 -0
  2666. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/component.json +24 -0
  2667. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/emitter.js +52 -0
  2668. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js +2 -0
  2669. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/parser.js +163 -0
  2670. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/socket.js +492 -0
  2671. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transport.js +141 -0
  2672. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/flashsocket.js +254 -0
  2673. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/index.js +62 -0
  2674. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-jsonp.js +221 -0
  2675. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-xhr.js +288 -0
  2676. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling.js +210 -0
  2677. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/websocket.js +158 -0
  2678. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/util.js +265 -0
  2679. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json +12 -0
  2680. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-socket.io-protocol/index.js +177 -0
  2681. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/timoxley-to-array/component.json +16 -0
  2682. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/timoxley-to-array/index.js +27 -0
  2683. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/component.json +16 -0
  2684. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/debug.js +122 -0
  2685. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/index.js +5 -0
  2686. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/WebSocketMain.swf +0 -0
  2687. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf +0 -0
  2688. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.js +3873 -0
  2689. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.min.js +2 -0
  2690. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/events.js +182 -0
  2691. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/io.js +206 -0
  2692. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/json.js +322 -0
  2693. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/namespace.js +242 -0
  2694. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/parser.js +262 -0
  2695. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/socket.js +579 -0
  2696. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transport.js +256 -0
  2697. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/flashsocket.js +191 -0
  2698. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/htmlfile.js +173 -0
  2699. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/jsonp-polling.js +256 -0
  2700. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/websocket.js +197 -0
  2701. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/xhr-polling.js +177 -0
  2702. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/xhr.js +217 -0
  2703. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/util.js +365 -0
  2704. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore +1 -0
  2705. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/README.md +157 -0
  2706. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf +0 -0
  2707. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip +0 -0
  2708. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/IWebSocketLogger.as +8 -0
  2709. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocket.as +464 -0
  2710. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketEvent.as +33 -0
  2711. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMain.as +150 -0
  2712. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as +19 -0
  2713. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/build.sh +10 -0
  2714. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/adobe/net/proxies/RFC2817Socket.as +204 -0
  2715. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/gsolo/encryption/MD5.as +375 -0
  2716. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/Crypto.as +287 -0
  2717. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/MozillaRootCertificates.as +3235 -0
  2718. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509Certificate.as +218 -0
  2719. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509CertificateCollection.as +57 -0
  2720. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/HMAC.as +82 -0
  2721. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHMAC.as +27 -0
  2722. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as +21 -0
  2723. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MAC.as +137 -0
  2724. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD2.as +124 -0
  2725. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD5.as +204 -0
  2726. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA1.as +106 -0
  2727. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA224.as +28 -0
  2728. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA256.as +115 -0
  2729. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHABase.as +71 -0
  2730. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/ARC4.as +90 -0
  2731. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as +20 -0
  2732. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/Random.as +119 -0
  2733. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/TLSPRF.as +142 -0
  2734. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/rsa/RSAKey.as +339 -0
  2735. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/AESKey.as +2797 -0
  2736. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/BlowFishKey.as +375 -0
  2737. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CBCMode.as +55 -0
  2738. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFB8Mode.as +61 -0
  2739. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFBMode.as +64 -0
  2740. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CTRMode.as +58 -0
  2741. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/DESKey.as +365 -0
  2742. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ECBMode.as +86 -0
  2743. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ICipher.as +21 -0
  2744. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as +15 -0
  2745. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as +32 -0
  2746. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as +21 -0
  2747. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ISymmetricKey.as +35 -0
  2748. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IVMode.as +110 -0
  2749. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/NullPad.as +34 -0
  2750. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/OFBMode.as +52 -0
  2751. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/PKCS5.as +44 -0
  2752. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SSLPad.as +44 -0
  2753. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SimpleIVMode.as +60 -0
  2754. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TLSPad.as +42 -0
  2755. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TripleDESKey.as +88 -0
  2756. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/XTeaKey.as +94 -0
  2757. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/aeskey.pl +29 -0
  2758. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/dump.txt +2304 -0
  2759. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/AESKeyTest.as +1220 -0
  2760. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ARC4Test.as +58 -0
  2761. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BigIntegerTest.as +39 -0
  2762. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BlowFishKeyTest.as +148 -0
  2763. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CBCModeTest.as +160 -0
  2764. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFB8ModeTest.as +71 -0
  2765. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFBModeTest.as +98 -0
  2766. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CTRModeTest.as +109 -0
  2767. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/DESKeyTest.as +112 -0
  2768. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ECBModeTest.as +151 -0
  2769. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/HMACTest.as +184 -0
  2770. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as +20 -0
  2771. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD2Test.as +56 -0
  2772. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD5Test.as +58 -0
  2773. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/OFBModeTest.as +101 -0
  2774. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/RSAKeyTest.as +92 -0
  2775. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA1Test.as +198 -0
  2776. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA224Test.as +58 -0
  2777. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA256Test.as +60 -0
  2778. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TLSPRFTest.as +51 -0
  2779. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TestCase.as +42 -0
  2780. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TripleDESKeyTest.as +59 -0
  2781. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/XTeaKeyTest.as +66 -0
  2782. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/BulkCiphers.as +102 -0
  2783. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/CipherSuites.as +117 -0
  2784. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as +14 -0
  2785. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/ISecurityParameters.as +29 -0
  2786. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as +24 -0
  2787. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/MACs.as +38 -0
  2788. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLConnectionState.as +171 -0
  2789. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLEvent.as +26 -0
  2790. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLSecurityParameters.as +340 -0
  2791. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConfig.as +70 -0
  2792. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConnectionState.as +151 -0
  2793. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEngine.as +895 -0
  2794. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSError.as +39 -0
  2795. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEvent.as +27 -0
  2796. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSecurityParameters.as +197 -0
  2797. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocket.as +370 -0
  2798. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocketEvent.as +26 -0
  2799. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSTest.as +180 -0
  2800. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BarrettReduction.as +90 -0
  2801. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BigInteger.as +1543 -0
  2802. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/ClassicReduction.as +35 -0
  2803. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as +11 -0
  2804. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/MontgomeryReduction.as +85 -0
  2805. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as +34 -0
  2806. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as +11 -0
  2807. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/ArrayUtil.as +25 -0
  2808. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Base64.as +189 -0
  2809. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Hex.as +66 -0
  2810. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as +28 -0
  2811. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ByteString.as +43 -0
  2812. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/DER.as +210 -0
  2813. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as +21 -0
  2814. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as +44 -0
  2815. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/OID.as +35 -0
  2816. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ObjectIdentifier.as +112 -0
  2817. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PEM.as +118 -0
  2818. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as +49 -0
  2819. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Sequence.as +90 -0
  2820. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as +27 -0
  2821. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Type.as +94 -0
  2822. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/UTCTime.as +60 -0
  2823. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/sample.html +75 -0
  2824. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/swfobject.js +6 -0
  2825. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/web_socket.js +349 -0
  2826. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/uglifyjs +323 -0
  2827. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/wscat +222 -0
  2828. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/..gitignore.un~ +0 -0
  2829. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.Readme.md.un~ +0 -0
  2830. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.index.js.un~ +0 -0
  2831. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.npmignore +2 -0
  2832. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.package.json.un~ +0 -0
  2833. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.test.js.un~ +0 -0
  2834. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/Readme.md +33 -0
  2835. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/index.js +83 -0
  2836. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/.npmignore +1 -0
  2837. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/LICENSE +19 -0
  2838. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/README +37 -0
  2839. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/Tokenizer.js +646 -0
  2840. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/ZeParser.js +2180 -0
  2841. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/benchmark.html +111608 -0
  2842. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/index.js +1 -0
  2843. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/package.json +47 -0
  2844. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/test-parser.html +26 -0
  2845. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/test-tokenizer.html +23 -0
  2846. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/tests.js +478 -0
  2847. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/unicodecategories.js +49 -0
  2848. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/package.json +50 -0
  2849. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/test.js +53 -0
  2850. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/.npmignore +4 -0
  2851. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/README.html +981 -0
  2852. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/README.org +574 -0
  2853. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/bin/uglifyjs +323 -0
  2854. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/docstyle.css +75 -0
  2855. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/object-ast.js +75 -0
  2856. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/parse-js.js +1342 -0
  2857. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/process.js +2011 -0
  2858. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/squeeze-more.js +69 -0
  2859. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/package.json +54 -0
  2860. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/package.json~ +24 -0
  2861. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/beautify.js +28 -0
  2862. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/testparser.js +403 -0
  2863. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array1.js +1 -0
  2864. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array2.js +1 -0
  2865. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array3.js +1 -0
  2866. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array4.js +1 -0
  2867. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/assignment.js +1 -0
  2868. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +1 -0
  2869. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/const.js +1 -0
  2870. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +1 -0
  2871. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +1 -0
  2872. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/if.js +1 -0
  2873. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +1 -0
  2874. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +1 -0
  2875. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue10.js +1 -0
  2876. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue11.js +1 -0
  2877. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue13.js +1 -0
  2878. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue14.js +1 -0
  2879. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue16.js +1 -0
  2880. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue17.js +1 -0
  2881. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue20.js +1 -0
  2882. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue21.js +1 -0
  2883. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue25.js +1 -0
  2884. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue27.js +1 -0
  2885. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue278.js +1 -0
  2886. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue28.js +1 -0
  2887. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue29.js +1 -0
  2888. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue30.js +1 -0
  2889. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue34.js +1 -0
  2890. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue4.js +1 -0
  2891. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue48.js +1 -0
  2892. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue50.js +1 -0
  2893. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue53.js +1 -0
  2894. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +1 -0
  2895. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue68.js +1 -0
  2896. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue69.js +1 -0
  2897. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue9.js +1 -0
  2898. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/mangle.js +1 -0
  2899. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/null_string.js +1 -0
  2900. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +1 -0
  2901. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/var.js +1 -0
  2902. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/whitespace.js +1 -0
  2903. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/with.js +1 -0
  2904. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array1.js +3 -0
  2905. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array2.js +4 -0
  2906. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array3.js +4 -0
  2907. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array4.js +6 -0
  2908. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/assignment.js +20 -0
  2909. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/concatstring.js +3 -0
  2910. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/const.js +5 -0
  2911. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +4 -0
  2912. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/forstatement.js +10 -0
  2913. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/if.js +6 -0
  2914. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +9 -0
  2915. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +16 -0
  2916. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue10.js +1 -0
  2917. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue11.js +3 -0
  2918. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue13.js +1 -0
  2919. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue14.js +1 -0
  2920. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue16.js +1 -0
  2921. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue17.js +4 -0
  2922. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue20.js +1 -0
  2923. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue21.js +6 -0
  2924. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue25.js +7 -0
  2925. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue27.js +1 -0
  2926. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue278.js +1 -0
  2927. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue28.js +3 -0
  2928. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue29.js +1 -0
  2929. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue30.js +3 -0
  2930. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue34.js +3 -0
  2931. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue4.js +3 -0
  2932. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue48.js +1 -0
  2933. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue50.js +9 -0
  2934. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue53.js +1 -0
  2935. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +3 -0
  2936. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue68.js +5 -0
  2937. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue69.js +1 -0
  2938. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue9.js +4 -0
  2939. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/mangle.js +5 -0
  2940. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/null_string.js +1 -0
  2941. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +3 -0
  2942. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/var.js +3 -0
  2943. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/whitespace.js +21 -0
  2944. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/with.js +2 -0
  2945. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/scripts.js +55 -0
  2946. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/269.js +13 -0
  2947. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/app.js +22315 -0
  2948. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/embed-tokens.js +15 -0
  2949. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/goto.js +26 -0
  2950. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/goto2.js +8 -0
  2951. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/hoist.js +33 -0
  2952. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/instrument.js +97 -0
  2953. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/instrument2.js +138 -0
  2954. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/liftvars.js +8 -0
  2955. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/test.js +30 -0
  2956. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/uglify-hangs.js +3930 -0
  2957. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/uglify-hangs2.js +166 -0
  2958. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/uglify-js.js +17 -0
  2959. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/.npmignore +11 -0
  2960. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/.travis.yml +5 -0
  2961. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/History.md +312 -0
  2962. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/Makefile +40 -0
  2963. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/README.md +171 -0
  2964. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/bin/wscat +222 -0
  2965. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/binding.gyp +16 -0
  2966. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Makefile +355 -0
  2967. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/bufferutil.node.d +1 -0
  2968. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/obj.target/bufferutil/src/bufferutil.o.d +33 -0
  2969. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/obj.target/validation/src/validation.o.d +33 -0
  2970. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/validation.node.d +1 -0
  2971. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/bufferutil.node +0 -0
  2972. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/linker.lock +0 -0
  2973. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/validation.node +0 -0
  2974. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/binding.Makefile +6 -0
  2975. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/bufferutil.target.mk +156 -0
  2976. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/config.gypi +136 -0
  2977. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/gyp-mac-tool +512 -0
  2978. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/validation.target.mk +156 -0
  2979. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/builderror.log +0 -0
  2980. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/index.js +26 -0
  2981. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferPool.js +59 -0
  2982. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferUtil.fallback.js +47 -0
  2983. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferUtil.js +16 -0
  2984. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/ErrorCodes.js +24 -0
  2985. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Receiver.hixie.js +180 -0
  2986. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Receiver.js +585 -0
  2987. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Sender.hixie.js +118 -0
  2988. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Sender.js +227 -0
  2989. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Validation.fallback.js +12 -0
  2990. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Validation.js +16 -0
  2991. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/WebSocket.js +794 -0
  2992. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/WebSocketServer.js +465 -0
  2993. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/browser.js +43 -0
  2994. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/Readme.md +195 -0
  2995. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/index.js +851 -0
  2996. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/package.json +57 -0
  2997. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/.dntrc +36 -0
  2998. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/LICENSE +46 -0
  2999. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/README.md +947 -0
  3000. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/build/config.gypi +38 -0
  3001. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/include_dirs.js +1 -0
  3002. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/nan.h +1910 -0
  3003. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/package.json +67 -0
  3004. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/.npmignore +7 -0
  3005. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/Makefile +12 -0
  3006. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/README.md +69 -0
  3007. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/lib/options.js +86 -0
  3008. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/package.json +50 -0
  3009. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/.npmignore +5 -0
  3010. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/README.md +3 -0
  3011. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/example.js +3 -0
  3012. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/package.json +43 -0
  3013. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/tinycolor.js +31 -0
  3014. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/package.json +81 -0
  3015. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/src/bufferutil.cc +117 -0
  3016. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/src/validation.cc +145 -0
  3017. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/README.md +53 -0
  3018. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/autotest.watchr +8 -0
  3019. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/example/demo.js +16 -0
  3020. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/lib/XMLHttpRequest.js +548 -0
  3021. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/package.json +59 -0
  3022. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-constants.js +13 -0
  3023. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-events.js +50 -0
  3024. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-exceptions.js +62 -0
  3025. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-headers.js +61 -0
  3026. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-request-methods.js +62 -0
  3027. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-request-protocols.js +34 -0
  3028. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/testdata.txt +1 -0
  3029. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/package.json +80 -0
  3030. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/events.test.js +120 -0
  3031. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/io.test.js +31 -0
  3032. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/node/builder.common.js +102 -0
  3033. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/node/builder.test.js +131 -0
  3034. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/parser.test.js +360 -0
  3035. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/socket.test.js +422 -0
  3036. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/util.test.js +156 -0
  3037. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/worker.js +20 -0
  3038. data/jasmine/node_modules/karma/node_modules/socket.io/package.json +83 -0
  3039. data/jasmine/node_modules/karma/node_modules/source-map/.npmignore +2 -0
  3040. data/jasmine/node_modules/karma/node_modules/source-map/.travis.yml +4 -0
  3041. data/jasmine/node_modules/karma/node_modules/source-map/CHANGELOG.md +194 -0
  3042. data/jasmine/node_modules/karma/node_modules/source-map/LICENSE +28 -0
  3043. data/jasmine/node_modules/karma/node_modules/source-map/Makefile.dryice.js +166 -0
  3044. data/jasmine/node_modules/karma/node_modules/source-map/README.md +475 -0
  3045. data/jasmine/node_modules/karma/node_modules/source-map/build/assert-shim.js +56 -0
  3046. data/jasmine/node_modules/karma/node_modules/source-map/build/mini-require.js +152 -0
  3047. data/jasmine/node_modules/karma/node_modules/source-map/build/prefix-source-map.jsm +20 -0
  3048. data/jasmine/node_modules/karma/node_modules/source-map/build/prefix-utils.jsm +18 -0
  3049. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-browser.js +8 -0
  3050. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-source-map.jsm +6 -0
  3051. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-utils.jsm +21 -0
  3052. data/jasmine/node_modules/karma/node_modules/source-map/build/test-prefix.js +8 -0
  3053. data/jasmine/node_modules/karma/node_modules/source-map/build/test-suffix.js +3 -0
  3054. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map.js +8 -0
  3055. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/array-set.js +97 -0
  3056. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/base64-vlq.js +142 -0
  3057. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/base64.js +42 -0
  3058. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/binary-search.js +80 -0
  3059. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/mapping-list.js +86 -0
  3060. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-map-consumer.js +575 -0
  3061. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-map-generator.js +400 -0
  3062. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-node.js +414 -0
  3063. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/util.js +319 -0
  3064. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/LICENSE +58 -0
  3065. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/README.md +171 -0
  3066. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/amdefine.js +299 -0
  3067. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/intercept.js +36 -0
  3068. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/package.json +54 -0
  3069. data/jasmine/node_modules/karma/node_modules/source-map/package.json +186 -0
  3070. data/jasmine/node_modules/karma/node_modules/source-map/test/run-tests.js +62 -0
  3071. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-api.js +26 -0
  3072. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-array-set.js +104 -0
  3073. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-base64-vlq.js +23 -0
  3074. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-base64.js +35 -0
  3075. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
  3076. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-dog-fooding.js +84 -0
  3077. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-map-consumer.js +702 -0
  3078. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-map-generator.js +679 -0
  3079. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-node.js +612 -0
  3080. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-util.js +216 -0
  3081. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/util.js +192 -0
  3082. data/jasmine/node_modules/karma/node_modules/useragent/.npmignore +3 -0
  3083. data/jasmine/node_modules/karma/node_modules/useragent/.travis.yml +4 -0
  3084. data/jasmine/node_modules/karma/node_modules/useragent/CHANGELOG.md +63 -0
  3085. data/jasmine/node_modules/karma/node_modules/useragent/CREDITS +16 -0
  3086. data/jasmine/node_modules/karma/node_modules/useragent/LICENSE +19 -0
  3087. data/jasmine/node_modules/karma/node_modules/useragent/README.md +395 -0
  3088. data/jasmine/node_modules/karma/node_modules/useragent/bin/testfiles.js +24 -0
  3089. data/jasmine/node_modules/karma/node_modules/useragent/bin/update.js +17 -0
  3090. data/jasmine/node_modules/karma/node_modules/useragent/features/index.js +19 -0
  3091. data/jasmine/node_modules/karma/node_modules/useragent/index.js +607 -0
  3092. data/jasmine/node_modules/karma/node_modules/useragent/lib/regexps.js +2872 -0
  3093. data/jasmine/node_modules/karma/node_modules/useragent/lib/update.js +202 -0
  3094. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/.npmignore +1 -0
  3095. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/AUTHORS +8 -0
  3096. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/LICENSE +23 -0
  3097. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/README.md +88 -0
  3098. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/lib/lru-cache.js +242 -0
  3099. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/package.json +75 -0
  3100. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/s.js +25 -0
  3101. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/basic.js +317 -0
  3102. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/foreach.js +52 -0
  3103. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/memory-leak.js +50 -0
  3104. data/jasmine/node_modules/karma/node_modules/useragent/package.json +79 -0
  3105. data/jasmine/node_modules/karma/node_modules/useragent/static/user_agent.after.yaml +17 -0
  3106. data/jasmine/node_modules/karma/node_modules/useragent/test/features.test.js +16 -0
  3107. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/firefoxes.yaml +1386 -0
  3108. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/pgts.yaml +62356 -0
  3109. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/static.custom.yaml +13 -0
  3110. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/testcases.yaml +389 -0
  3111. data/jasmine/node_modules/karma/node_modules/useragent/test/mocha.opts +4 -0
  3112. data/jasmine/node_modules/karma/node_modules/useragent/test/parser.qa.js +45 -0
  3113. data/jasmine/node_modules/karma/node_modules/useragent/test/parser.test.js +251 -0
  3114. data/jasmine/node_modules/karma/package.json +675 -0
  3115. data/jasmine/node_modules/karma/requirejs.config.tpl.coffee +19 -0
  3116. data/jasmine/node_modules/karma/requirejs.config.tpl.js +24 -0
  3117. data/jasmine/node_modules/karma/static/client.html +116 -0
  3118. data/jasmine/node_modules/karma/static/context.html +35 -0
  3119. data/jasmine/node_modules/karma/static/debug.html +58 -0
  3120. data/jasmine/node_modules/karma/static/karma.js +411 -0
  3121. data/jasmine/node_modules/requirejs/README.md +9 -0
  3122. data/jasmine/node_modules/requirejs/bin/r.js +29003 -0
  3123. data/jasmine/node_modules/requirejs/package.json +56 -0
  3124. data/jasmine/node_modules/requirejs/require.js +2083 -0
  3125. data/jasmine/spec/hoochSpec.js +25 -0
  3126. data/jasmine/test-main.js +24 -0
  3127. data/lib/hooch/hooch_helper.rb +93 -2
  3128. data/lib/hooch/version.rb +1 -1
  3129. data/test/dummy/README.rdoc +28 -0
  3130. data/test/dummy/Rakefile +6 -0
  3131. data/test/dummy/app/assets/images/.keep +0 -0
  3132. data/test/dummy/app/assets/javascripts/application.js +13 -0
  3133. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  3134. data/test/dummy/app/controllers/application_controller.rb +5 -0
  3135. data/test/dummy/app/controllers/concerns/.keep +0 -0
  3136. data/test/dummy/app/helpers/application_helper.rb +2 -0
  3137. data/test/dummy/app/mailers/.keep +0 -0
  3138. data/test/dummy/app/models/.keep +0 -0
  3139. data/test/dummy/app/models/concerns/.keep +0 -0
  3140. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  3141. data/test/dummy/bin/bundle +3 -0
  3142. data/test/dummy/bin/rails +4 -0
  3143. data/test/dummy/bin/rake +4 -0
  3144. data/test/dummy/config.ru +4 -0
  3145. data/test/dummy/config/application.rb +23 -0
  3146. data/test/dummy/config/boot.rb +5 -0
  3147. data/test/dummy/config/database.yml +25 -0
  3148. data/test/dummy/config/environment.rb +5 -0
  3149. data/test/dummy/config/environments/development.rb +37 -0
  3150. data/test/dummy/config/environments/production.rb +82 -0
  3151. data/test/dummy/config/environments/test.rb +39 -0
  3152. data/test/dummy/config/initializers/assets.rb +8 -0
  3153. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  3154. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  3155. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  3156. data/test/dummy/config/initializers/inflections.rb +16 -0
  3157. data/test/dummy/config/initializers/mime_types.rb +4 -0
  3158. data/test/dummy/config/initializers/session_store.rb +3 -0
  3159. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  3160. data/test/dummy/config/locales/en.yml +23 -0
  3161. data/test/dummy/config/routes.rb +56 -0
  3162. data/test/dummy/config/secrets.yml +22 -0
  3163. data/test/dummy/db/development.sqlite3 +0 -0
  3164. data/test/dummy/db/schema.rb +16 -0
  3165. data/test/dummy/db/test.sqlite3 +0 -0
  3166. data/test/dummy/lib/assets/.keep +0 -0
  3167. data/test/dummy/log/.keep +0 -0
  3168. data/test/dummy/log/development.log +4 -0
  3169. data/test/dummy/log/test.log +1418 -0
  3170. data/test/dummy/public/404.html +67 -0
  3171. data/test/dummy/public/422.html +67 -0
  3172. data/test/dummy/public/500.html +66 -0
  3173. data/test/dummy/public/favicon.ico +0 -0
  3174. data/test/hooch_helper_test.rb +141 -0
  3175. data/test/test_helper.rb +20 -0
  3176. metadata +3281 -3
@@ -0,0 +1,2180 @@
1
+ if (typeof exports !== 'undefined') {
2
+ var Tokenizer = require('./Tokenizer').Tokenizer;
3
+ exports.ZeParser = ZeParser;
4
+ }
5
+
6
+ /**
7
+ * This is my js Parser: Ze. It's actually the post-dev pre-cleanup version. Clearly.
8
+ * Some optimizations have been applied :)
9
+ * (c) Peter van der Zee, qfox.nl
10
+ * @param {String} inp Input
11
+ * @param {Tokenizer} tok
12
+ * @param {Array} stack The tokens will be put in this array. If you're looking for the AST, this would be it :)
13
+ */
14
+ function ZeParser(inp, tok, stack, simple){
15
+ this.input = inp;
16
+ this.tokenizer = tok;
17
+ this.stack = stack;
18
+ this.stack.root = true;
19
+ this.scope = stack.scope = [{value:'this', isDeclared:true, isEcma:true, thisIsGlobal:true}]; // names of variables
20
+ this.scope.global = true;
21
+ this.statementLabels = [];
22
+
23
+ this.errorStack = [];
24
+
25
+ stack.scope = this.scope; // hook root
26
+ stack.labels = this.statementLabels;
27
+
28
+ this.regexLhsStart = ZeParser.regexLhsStart;
29
+ /*
30
+ this.regexStartKeyword = ZeParser.regexStartKeyword;
31
+ this.regexKeyword = ZeParser.regexKeyword;
32
+ this.regexStartReserved = ZeParser.regexStartReserved;
33
+ this.regexReserved = ZeParser.regexReserved;
34
+ */
35
+ this.regexStartKeyOrReserved = ZeParser.regexStartKeyOrReserved;
36
+ this.hashStartKeyOrReserved = ZeParser.hashStartKeyOrReserved;
37
+ this.regexIsKeywordOrReserved = ZeParser.regexIsKeywordOrReserved;
38
+ this.regexAssignments = ZeParser.regexAssignments;
39
+ this.regexNonAssignmentBinaryExpressionOperators = ZeParser.regexNonAssignmentBinaryExpressionOperators;
40
+ this.regexUnaryKeywords = ZeParser.regexUnaryKeywords;
41
+ this.hashUnaryKeywordStart = ZeParser.hashUnaryKeywordStart;
42
+ this.regexUnaryOperators = ZeParser.regexUnaryOperators;
43
+ this.regexLiteralKeywords = ZeParser.regexLiteralKeywords;
44
+ this.testing = {'this':1,'null':1,'true':1,'false':1};
45
+
46
+ this.ast = !simple; ///#define FULL_AST
47
+ };
48
+ /**
49
+ * Returns just a stacked parse tree (regular array)
50
+ * @param {string} input
51
+ * @param {boolean} simple=false
52
+ * @return {Array}
53
+ */
54
+ ZeParser.parse = function(input, simple){
55
+ var tok = new Tokenizer(input);
56
+ var stack = [];
57
+ try {
58
+ var parser = new ZeParser(input, tok, stack);
59
+ if (simple) parser.ast = false;
60
+ parser.parse();
61
+ return stack;
62
+ } catch (e) {
63
+ console.log("Parser has a bug for this input, please report it :)", e);
64
+ return null;
65
+ }
66
+ };
67
+ /**
68
+ * Returns a new parser instance with parse details for input
69
+ * @param {string} input
70
+ * @returns {ZeParser}
71
+ */
72
+ ZeParser.createParser = function(input){
73
+ var tok = new Tokenizer(input);
74
+ var stack = [];
75
+ try {
76
+ var parser = new ZeParser(input, tok, stack);
77
+ parser.parse();
78
+ return parser;
79
+ } catch (e) {
80
+ console.log("Parser has a bug for this input, please report it :)", e);
81
+ return null;
82
+ }
83
+ };
84
+ ZeParser.prototype = {
85
+ input: null,
86
+ tokenizer: null,
87
+ stack: null,
88
+ scope: null,
89
+ statementLabels: null,
90
+ errorStack: null,
91
+
92
+ ast: null,
93
+
94
+ parse: function(match){
95
+ if (match) match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, this.stack); // meh
96
+ else match = this.tokenizer.storeCurrentAndFetchNextToken(false, null, this.stack, true); // initialization step, dont store the match (there isnt any!)
97
+
98
+ match = this.eatSourceElements(match, this.stack);
99
+
100
+ var cycled = false;
101
+ do {
102
+ if (match && match.name != 12/*eof*/) {
103
+ // if not already an error, insert an error before it
104
+ if (match.name != 14/*error*/) this.failignore('UnexpectedToken', match, this.stack);
105
+ // just parse the token as is and continue.
106
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, this.stack);
107
+ cycled = true;
108
+ }
109
+
110
+ // keep gobbling any errors...
111
+ } while (match && match.name == 14/*error*/);
112
+
113
+ // now try again (but only if we gobbled at least one token)...
114
+ if (cycled && match && match.name != 12/*eof*/) match = this.parse(match);
115
+
116
+ // pop the last token off the stack if it caused an error at eof
117
+ if (this.tokenizer.errorEscape) {
118
+ this.stack.push(this.tokenizer.errorEscape);
119
+ this.tokenizer.errorEscape = null;
120
+ }
121
+
122
+ return match;
123
+ },
124
+
125
+ eatSemiColon: function(match, stack){
126
+ //this.stats.eatSemiColon = (+//this.stats.eatSemiColon||0)+1;
127
+ if (match.value == ';') match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
128
+ else {
129
+ // try asi
130
+ // only if:
131
+ // - this token was preceeded by at least one newline (match.newline) or next token is }
132
+ // - this is EOF
133
+ // - prev token was one of return,continue,break,throw (restricted production), not checked here.
134
+
135
+ // the exceptions to this rule are
136
+ // - if the next line is a regex
137
+ // - the semi is part of the for-header.
138
+ // these exceptions are automatically caught by the way the parser is built
139
+
140
+ // not eof and just parsed semi or no newline preceeding and next isnt }
141
+ if (match.name != 12/*EOF*/ && (match.semi || (!match.newline && match.value != '}')) && !(match.newline && (match.value == '++' || match.value == '--'))) {
142
+ this.failignore('NoASI', match, stack);
143
+ } else {
144
+ // ASI
145
+ // (match is actually the match _after_ this asi, so the position of asi is match.start, not stop (!)
146
+ var asi = {start:match.start,stop:match.start,name:13/*ASI*/};
147
+ stack.push(asi);
148
+
149
+ // slip it in the stream, before the current match.
150
+ // for the other tokens see the tokenizer near the end of the main parsing function
151
+ this.tokenizer.addTokenToStreamBefore(asi, match);
152
+ }
153
+ }
154
+ match.semi = true;
155
+ return match;
156
+ },
157
+ /**
158
+ * Eat one or more "AssignmentExpression"s. May also eat a labeled statement if
159
+ * the parameters are set that way. This is the only way to linearly distinct between
160
+ * an expression-statement and a labeled-statement without double lookahead. (ok, maybe not "only")
161
+ * @param {boolean} mayParseLabeledStatementInstead=false If the first token is an identifier and the second a colon, accept this match as a labeled statement instead... Only true if the match in the parameter is an (unreserved) identifier (so no need to validate that further)
162
+ * @param {Object} match
163
+ * @param {Array} stack
164
+ * @param {boolean} onlyOne=false Only parse a AssignmentExpression
165
+ * @param {boolean} forHeader=false Do not allow the `in` operator
166
+ * @param {boolean} isBreakOrContinueArg=false The argument for break or continue is always a single identifier
167
+ * @return {Object}
168
+ */
169
+ eatExpressions: function(mayParseLabeledStatementInstead, match, stack, onlyOne, forHeader, isBreakOrContinueArg){
170
+ if (this.ast) { //#ifdef FULL_AST
171
+ var pstack = stack;
172
+ stack = [];
173
+ stack.desc = 'expressions';
174
+ stack.nextBlack = match.tokposb;
175
+ pstack.push(stack);
176
+
177
+ var parsedExpressions = 0;
178
+ } //#endif
179
+
180
+ var first = true;
181
+ do {
182
+ var parsedNonAssignmentOperator = false; // once we parse a non-assignment, this expression can no longer parse an assignment
183
+ // TOFIX: can probably get the regex out somehow...
184
+ if (!first) {
185
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
186
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('ExpectedAnotherExpressionComma', match);
187
+ }
188
+
189
+ if (this.ast) { //#ifdef FULL_AST
190
+ ++parsedExpressions;
191
+
192
+ var astack = stack;
193
+ stack = [];
194
+ stack.desc = 'expression';
195
+ stack.nextBlack = match.tokposb;
196
+ astack.push(stack);
197
+ } //#endif
198
+
199
+ // start of expression is given: match
200
+ // it should indeed be a properly allowed lhs
201
+ // first eat all unary operators
202
+ // they can be added to the stack, but we need to ensure they have indeed a valid operator
203
+
204
+ var parseAnotherExpression = true;
205
+ while (parseAnotherExpression) { // keep parsing lhs+operator as long as there is an operator after the lhs.
206
+ if (this.ast) { //#ifdef FULL_AST
207
+ var estack = stack;
208
+ stack = [];
209
+ stack.desc = 'sub-expression';
210
+ stack.nextBlack = match.tokposb;
211
+ estack.push(stack);
212
+
213
+ var news = 0; // encountered new operators waiting for parenthesis
214
+ } //#endif
215
+
216
+ // start checking lhs
217
+ // if lhs is identifier (new/call expression), allow to parse an assignment operator next
218
+ // otherwise keep eating unary expressions and then any "value"
219
+ // after that search for a binary operator. if we only ate a new/call expression then
220
+ // also allow to eat assignments. repeat for the rhs.
221
+ var parsedUnaryOperator = false;
222
+ var isUnary = null;
223
+ while (
224
+ !isBreakOrContinueArg && // no unary for break/continue
225
+ (isUnary =
226
+ (match.value && this.hashUnaryKeywordStart[match.value[0]] && this.regexUnaryKeywords.test(match.value)) || // (match.value == 'delete' || match.value == 'void' || match.value == 'typeof' || match.value == 'new') ||
227
+ (match.name == 11/*PUNCTUATOR*/ && this.regexUnaryOperators.test(match.value))
228
+ )
229
+ ) {
230
+ if (isUnary) match.isUnaryOp = true;
231
+ if (this.ast) { //#ifdef FULL_AST
232
+ // find parenthesis
233
+ if (match.value == 'new') ++news;
234
+ } //#endif
235
+
236
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
237
+ // ensure that it is in fact a valid lhs-start
238
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('ExpectedAnotherExpressionRhs', match);
239
+ // not allowed to parse assignment
240
+ parsedUnaryOperator = true;
241
+ };
242
+
243
+ // if we parsed any kind of unary operator, we cannot be parsing a labeled statement
244
+ if (parsedUnaryOperator) mayParseLabeledStatementInstead = false;
245
+
246
+ // so now we know match is a valid lhs-start and not a unary operator
247
+ // it must be a string, number, regex, identifier
248
+ // or the start of an object literal ({), array literal ([) or group operator (().
249
+
250
+ var acceptAssignment = false;
251
+
252
+ // take care of the "open" cases first (group, array, object)
253
+ if (match.value == '(') {
254
+ if (this.ast) { //#ifdef FULL_AST
255
+ var groupStack = stack;
256
+ stack = [];
257
+ stack.desc = 'grouped';
258
+ stack.nextBlack = match.tokposb;
259
+ groupStack.push(stack);
260
+
261
+ var lhp = match;
262
+
263
+ match.isGroupStart = true;
264
+ } //#endif
265
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
266
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('GroupingShouldStartWithExpression', match);
267
+ // keep parsing expressions as long as they are followed by a comma
268
+ match = this.eatExpressions(false, match, stack);
269
+
270
+ if (match.value != ')') match = this.failsafe('UnclosedGroupingOperator', match);
271
+ if (this.ast) { //#ifdef FULL_AST
272
+ match.twin = lhp;
273
+ lhp.twin = match;
274
+
275
+ match.isGroupStop = true;
276
+
277
+ if (stack[stack.length-1].desc == 'expressions') {
278
+ // create ref to this expression group to the opening paren
279
+ lhp.expressionArg = stack[stack.length-1];
280
+ }
281
+ } //#endif
282
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
283
+
284
+ if (this.ast) { //#ifdef FULL_AST
285
+ stack = groupStack;
286
+ } //#endif
287
+ // you can assign to group results. and as long as the group does not contain a comma (and valid ref), it will work too :)
288
+ acceptAssignment = true;
289
+ // there's an extra rule for [ namely that, it must start with an expression but after that, expressions are optional
290
+ } else if (match.value == '[') {
291
+ if (this.ast) { //#ifdef FULL_AST
292
+ stack.sub = 'array literal';
293
+ stack.hasArrayLiteral = true;
294
+ var lhsb = match;
295
+
296
+ match.isArrayLiteralStart = true;
297
+
298
+ if (!this.scope.arrays) this.scope.arrays = [];
299
+ match.arrayId = this.scope.arrays.length;
300
+ this.scope.arrays.push(match);
301
+
302
+ match.targetScope = this.scope;
303
+ } //#endif
304
+ // keep parsing expressions as long as they are followed by a comma
305
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
306
+
307
+ // arrays may start with "elided" commas
308
+ while (match.value == ',') match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
309
+
310
+ var foundAtLeastOneComma = true; // for entry in while
311
+ while (foundAtLeastOneComma && match.value != ']') {
312
+ foundAtLeastOneComma = false;
313
+
314
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value)) && match.name != 14/*error*/) match = this.failsafe('ArrayShouldStartWithExpression', match);
315
+ match = this.eatExpressions(false, match, stack, true);
316
+
317
+ while (match.value == ',') {
318
+ foundAtLeastOneComma = true;
319
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
320
+ }
321
+ }
322
+ if (match.value != ']') {
323
+ match = this.failsafe('UnclosedPropertyBracket', match);
324
+ }
325
+ if (this.ast) { //#ifdef FULL_AST
326
+ match.twin = lhsb;
327
+ lhsb.twin = match;
328
+
329
+ match.isArrayLiteralStop = true;
330
+ } //#endif
331
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
332
+ while (match.value == '++' || match.value == '--') {
333
+ // gobble and ignore?
334
+ this.failignore('InvalidPostfixOperandArray', match, stack);
335
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
336
+ }
337
+ // object literals need seperate handling...
338
+ } else if (match.value == '{') {
339
+ if (this.ast) { //#ifdef FULL_AST
340
+ stack.sub = 'object literal';
341
+ stack.hasObjectLiteral = true;
342
+
343
+ match.isObjectLiteralStart = true;
344
+
345
+ if (!this.scope.objects) this.scope.objects = [];
346
+ match.objectId = this.scope.objects.length;
347
+ this.scope.objects.push(match);
348
+
349
+ var targetObject = match;
350
+ match.targetScope = this.scope;
351
+
352
+ var lhc = match;
353
+ } //#endif
354
+
355
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
356
+ if (match.name == 12/*eof*/) {
357
+ match = this.failsafe('ObjectLiteralExpectsColonAfterName', match);
358
+ }
359
+ // ObjectLiteral
360
+ // PropertyNameAndValueList
361
+
362
+ while (match.value != '}' && match.name != 14/*error*/) { // will stop if next token is } or throw if not and no comma is found
363
+ // expecting a string, number, or identifier
364
+ //if (match.name != 5/*STRING_SINGLE*/ && match.name != 6/*STRING_DOUBLE*/ && match.name != 3/*NUMERIC_HEX*/ && match.name != 4/*NUMERIC_DEC*/ && match.name != 2/*IDENTIFIER*/) {
365
+ // TOFIX: more specific errors depending on type...
366
+ if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) {
367
+ match = this.failsafe('IllegalPropertyNameToken', match);
368
+ }
369
+
370
+ if (this.ast) { //#ifdef FULL_AST
371
+ var objLitStack = stack;
372
+ stack = [];
373
+ stack.desc = 'objlit pair';
374
+ stack.isObjectLiteralPair = true;
375
+ stack.nextBlack = match.tokposb;
376
+ objLitStack.push(stack);
377
+
378
+ var propNameStack = stack;
379
+ stack = [];
380
+ stack.desc = 'objlit pair name';
381
+ stack.nextBlack = match.tokposb;
382
+ propNameStack.push(stack);
383
+
384
+ propNameStack.sub = 'data';
385
+
386
+ var propName = match;
387
+ propName.isPropertyName = true;
388
+ } //#endif
389
+
390
+ var getset = match.value;
391
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
392
+ if (this.ast) { //#ifdef FULL_AST
393
+ stack = propNameStack;
394
+ } //#endif
395
+
396
+ // for get/set we parse a function-like definition. but only if it's immediately followed by an identifier (otherwise it'll just be the property 'get' or 'set')
397
+ if (getset == 'get') {
398
+ // "get" PropertyName "(" ")" "{" FunctionBody "}"
399
+ if (match.value == ':') {
400
+ if (this.ast) { //#ifdef FULL_AST
401
+ propName.isPropertyOf = targetObject;
402
+ } //#endif
403
+ match = this.eatObjectLiteralColonAndBody(match, stack);
404
+ } else {
405
+ if (this.ast) { //#ifdef FULL_AST
406
+ match.isPropertyOf = targetObject;
407
+ propNameStack.sub = 'getter';
408
+ propNameStack.isAccessor = true;
409
+ } //#endif
410
+ // if (match.name != 2/*IDENTIFIER*/ && match.name != 5/*STRING_SINGLE*/ && match.name != 6/*STRING_DOUBLE*/ && match.name != 3/*NUMERIC_HEX*/ && match.name != 4/*NUMERIC_DEC*/) {
411
+ if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) match = this.failsafe('IllegalGetterSetterNameToken', match, true);
412
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
413
+ if (match.value != '(') match = this.failsafe('GetterSetterNameFollowedByOpenParen', match);
414
+ if (this.ast) { //#ifdef FULL_AST
415
+ var lhp = match;
416
+ } //#endif
417
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
418
+ if (match.value != ')') match = this.failsafe('GetterHasNoArguments', match);
419
+ if (this.ast) { //#ifdef FULL_AST
420
+ match.twin = lhp;
421
+ lhp.twin = match;
422
+ } //#endif
423
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
424
+ match = this.eatFunctionBody(match, stack);
425
+ }
426
+ } else if (getset == 'set') {
427
+ // "set" PropertyName "(" PropertySetParameterList ")" "{" FunctionBody "}"
428
+ if (match.value == ':') {
429
+ if (this.ast) { //#ifdef FULL_AST
430
+ propName.isPropertyOf = targetObject;
431
+ } //#endif
432
+ match = this.eatObjectLiteralColonAndBody(match, stack);
433
+ } else {
434
+ if (this.ast) { //#ifdef FULL_AST
435
+ match.isPropertyOf = targetObject;
436
+ propNameStack.sub = 'setter';
437
+ propNameStack.isAccessor = true;
438
+ } //#endif
439
+ if (!match.isNumber && !match.isString && match.name != 2/*IDENTIFIER*/) match = this.failsafe('IllegalGetterSetterNameToken', match);
440
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
441
+ if (match.value != '(') match = this.failsafe('GetterSetterNameFollowedByOpenParen', match);
442
+ if (this.ast) { //#ifdef FULL_AST
443
+ var lhp = match;
444
+ } //#endif
445
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
446
+ if (match.name != 2/*IDENTIFIER*/) {
447
+ if (match.value == ')') match = this.failsafe('SettersMustHaveArgument', match);
448
+ else match = this.failsafe('IllegalSetterArgumentNameToken', match);
449
+ }
450
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
451
+ if (match.value != ')') {
452
+ if (match.value == ',') match = this.failsafe('SettersOnlyGetOneArgument', match);
453
+ else match = this.failsafe('SetterHeaderShouldHaveClosingParen', match);
454
+ }
455
+ if (this.ast) { //#ifdef FULL_AST
456
+ match.twin = lhp;
457
+ lhp.twin = match;
458
+ } //#endif
459
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
460
+ match = this.eatFunctionBody(match, stack);
461
+ }
462
+ } else {
463
+ // PropertyName ":" AssignmentExpression
464
+ if (this.ast) { //#ifdef FULL_AST
465
+ propName.isPropertyOf = targetObject;
466
+ } //#endif
467
+ match = this.eatObjectLiteralColonAndBody(match, stack);
468
+ }
469
+
470
+ if (this.ast) { //#ifdef FULL_AST
471
+ stack = objLitStack;
472
+ } //#endif
473
+
474
+ // one trailing comma allowed
475
+ if (match.value == ',') {
476
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
477
+ if (match.value == ',') match = this.failsafe('IllegalDoubleCommaInObjectLiteral', match);
478
+ } else if (match.value != '}') match = this.failsafe('UnclosedObjectLiteral', match);
479
+
480
+ // either the next token is } and the loop breaks or
481
+ // the next token is the start of the next PropertyAssignment...
482
+ }
483
+ // closing curly
484
+ if (this.ast) { //#ifdef FULL_AST
485
+ match.twin = lhc;
486
+ lhc.twin = match;
487
+
488
+ match.isObjectLiteralStop = true;
489
+ } //#endif
490
+
491
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // next may be div
492
+ while (match.value == '++' || match.value == '--') {
493
+ this.failignore('InvalidPostfixOperandObject', match, stack);
494
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
495
+ }
496
+ } else if (match.value == 'function') { // function expression
497
+ if (this.ast) { //#ifdef FULL_AST
498
+ var oldstack = stack;
499
+ stack = [];
500
+ stack.desc = 'func expr';
501
+ stack.isFunction = true;
502
+ stack.nextBlack = match.tokposb;
503
+ if (!this.scope.functions) this.scope.functions = [];
504
+ match.functionId = this.scope.functions.length;
505
+ this.scope.functions.push(match);
506
+ oldstack.push(stack);
507
+ var oldscope = this.scope;
508
+ // add new scope
509
+ match.scope = stack.scope = this.scope = [
510
+ this.scope,
511
+ {value:'this', isDeclared:true, isEcma:true, functionStack: stack},
512
+ {value:'arguments', isDeclared:true, isEcma:true, varType:['Object']}
513
+ ]; // add the current scope (to build chain up-down)
514
+ this.scope.upper = oldscope;
515
+ // ref to back to function that's the cause for this scope
516
+ this.scope.scopeFor = match;
517
+ match.targetScope = oldscope; // consistency
518
+ match.isFuncExprKeyword = true;
519
+ match.functionStack = stack;
520
+ } //#endif
521
+ var funcExprToken = match;
522
+
523
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
524
+ if (mayParseLabeledStatementInstead && match.value == ':') match = this.failsafe('LabelsMayNotBeReserved', match);
525
+ if (match.name == 2/*IDENTIFIER*/) {
526
+ funcExprToken.funcName = match;
527
+ match.meta = "func expr name";
528
+ match.varType = ['Function'];
529
+ match.functionStack = stack; // ref to the stack, in case we detect the var being a constructor
530
+ if (this.ast) { //#ifdef FULL_AST
531
+ // name is only available to inner scope
532
+ this.scope.push({value:match.value});
533
+ } //#endif
534
+ if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) match = this.failsafe('FunctionNameMustNotBeReserved', match);
535
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
536
+ }
537
+ match = this.eatFunctionParametersAndBody(match, stack, true, funcExprToken); // first token after func-expr is div
538
+
539
+ while (match.value == '++' || match.value == '--') {
540
+ this.failignore('InvalidPostfixOperandFunction', match, stack);
541
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
542
+ }
543
+
544
+ if (this.ast) { //#ifdef FULL_AST
545
+ // restore stack and scope
546
+ stack = oldstack;
547
+ this.scope = oldscope;
548
+ } //#endif
549
+ } else if (match.name <= 6) { // IDENTIFIER STRING_SINGLE STRING_DOUBLE NUMERIC_HEX NUMERIC_DEC REG_EX
550
+ // save it in case it turns out to be a label.
551
+ var possibleLabel = match;
552
+
553
+ // validate the identifier, if any
554
+ if (match.name == 2/*IDENTIFIER*/) {
555
+ if (
556
+ // this, null, true, false are actually allowed here
557
+ !this.regexLiteralKeywords.test(match.value) &&
558
+ // other reserved words are not
559
+ this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)
560
+ ) {
561
+ // if break/continue, we skipped the unary operator check so throw the proper error here
562
+ if (isBreakOrContinueArg) {
563
+ this.failignore('BreakOrContinueArgMustBeJustIdentifier', match, stack);
564
+ } else if (match.value == 'else') {
565
+ this.failignore('DidNotExpectElseHere', match, stack);
566
+ } else {
567
+ //if (mayParseLabeledStatementInstead) {new ZeParser.Error('LabelsMayNotBeReserved', match);
568
+ // TOFIX: lookahead to see if colon is following. throw label error instead if that's the case
569
+ // any forbidden keyword at this point is likely to be a statement start.
570
+ // its likely that the parser will take a while to recover from this point...
571
+ this.failignore('UnexpectedToken', match, stack);
572
+ // TOFIX: maybe i should just return at this point. cut my losses and hope for the best.
573
+ }
574
+ }
575
+
576
+ // only accept assignments after a member expression (identifier or ending with a [] suffix)
577
+ acceptAssignment = true;
578
+ } else if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
579
+
580
+ // the current match is the lead value being queried. tag it that way
581
+ if (this.ast) { //#ifdef FULL_AST
582
+ // dont mark labels
583
+ if (!isBreakOrContinueArg) {
584
+ match.meta = 'lead value';
585
+ match.leadValue = true;
586
+ }
587
+ } //#endif
588
+
589
+
590
+ // ok. gobble it.
591
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // division allowed
592
+
593
+ // now check for labeled statement (if mayParseLabeledStatementInstead then the first token for this expression must be an (unreserved) identifier)
594
+ if (mayParseLabeledStatementInstead && match.value == ':') {
595
+ if (possibleLabel.name != 2/*IDENTIFIER*/) {
596
+ // label was not an identifier
597
+ // TOFIX: this colon might be a different type of error... more analysis required
598
+ this.failignore('LabelsMayOnlyBeIdentifiers', match, stack);
599
+ }
600
+
601
+ mayParseLabeledStatementInstead = true; // mark label parsed (TOFIX:speed?)
602
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
603
+
604
+ possibleLabel.isLabel = true;
605
+ if (this.ast) { //#ifdef FULL_AST
606
+ delete possibleLabel.meta; // oh oops, it's not a lead value.
607
+
608
+ possibleLabel.isLabelDeclaration = true;
609
+ this.statementLabels.push(possibleLabel.value);
610
+
611
+ stack.desc = 'labeled statement';
612
+ } //#endif
613
+
614
+ var errorIdToReplace = this.errorStack.length;
615
+ // eat another statement now, its the body of the labeled statement (like if and while)
616
+ match = this.eatStatement(false, match, stack);
617
+
618
+ // if no statement was found, check here now and correct error
619
+ if (match.error && match.error.msg == ZeParser.Errors.UnableToParseStatement.msg) {
620
+ // replace with better error...
621
+ match.error = new ZeParser.Error('LabelRequiresStatement');
622
+ // also replace on stack
623
+ this.errorStack[errorIdToReplace] = match.error;
624
+ }
625
+
626
+ match.wasLabel = true;
627
+
628
+ return match;
629
+ }
630
+
631
+ mayParseLabeledStatementInstead = false;
632
+ } else if (match.value == '}') {
633
+ // ignore... its certainly the end of this expression, but maybe asi can be applied...
634
+ // it might also be an object literal expecting more, but that case has been covered else where.
635
+ // if it turns out the } is bad after all, .parse() will try to recover
636
+ } else if (match.name == 14/*error*/) {
637
+ do {
638
+ if (match.tokenError) {
639
+ var pe = new ZeParser.Error('TokenizerError', match);
640
+ pe.msg += ': '+match.error.msg;
641
+ this.errorStack.push(pe);
642
+
643
+ this.failSpecial({start:match.start,stop:match.start,name:14/*error*/,error:pe}, match, stack)
644
+ }
645
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
646
+ } while (match.name == 14/*error*/);
647
+ } else if (match.name == 12/*eof*/) {
648
+ // cant parse any further. you're probably just typing...
649
+ return match;
650
+ } else {
651
+ //if (!this.errorStack.length && match.name != 12/*eof*/) console.log(["unknown token", match, stack, Gui.escape(this.input)]);
652
+ this.failignore('UnknownToken', match, stack);
653
+ // we cant really ignore this. eat the token and try again. possibly you're just typing?
654
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
655
+ }
656
+
657
+ // search for "value" suffix. property access and call parens.
658
+ while (match.value == '.' || match.value == '[' || match.value == '(') {
659
+ if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
660
+
661
+ if (match.value == '.') {
662
+ // property access. read in an IdentifierName (no keyword checks). allow assignments
663
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
664
+ if (match.name != 2/*IDENTIFIER*/) this.failignore('PropertyNamesMayOnlyBeIdentifiers', match, stack);
665
+ if (this.ast) { //#ifdef FULL_AST
666
+ match.isPropertyName = true;
667
+ } //#endif
668
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // may parse div
669
+ acceptAssignment = true;
670
+ } else if (match.value == '[') {
671
+ if (this.ast) { //#ifdef FULL_AST
672
+ var lhsb = match;
673
+ match.propertyAccessStart = true;
674
+ } //#endif
675
+ // property access, read expression list. allow assignments
676
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
677
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) {
678
+ if (match.value == ']') match = this.failsafe('SquareBracketsMayNotBeEmpty', match);
679
+ else match = this.failsafe('SquareBracketExpectsExpression', match);
680
+ }
681
+ match = this.eatExpressions(false, match, stack);
682
+ if (match.value != ']') match = this.failsafe('UnclosedSquareBrackets', match);
683
+ if (this.ast) { //#ifdef FULL_AST
684
+ match.twin = lhsb;
685
+ match.propertyAccessStop = true;
686
+ lhsb.twin = match;
687
+
688
+ if (stack[stack.length-1].desc == 'expressions') {
689
+ // create ref to this expression group to the opening bracket
690
+ lhsb.expressionArg = stack[stack.length-1];
691
+ }
692
+ } //#endif
693
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
694
+ acceptAssignment = true;
695
+ } else if (match.value == '(') {
696
+ if (this.ast) { //#ifdef FULL_AST
697
+ var lhp = match;
698
+ match.isCallExpressionStart = true;
699
+ if (news) {
700
+ match.parensBelongToNew = true;
701
+ --news;
702
+ }
703
+ } //#endif
704
+ // call expression, eat optional expression list, disallow assignments
705
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
706
+ if (/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value)) match = this.eatExpressions(false, match, stack); // arguments are optional
707
+ if (match.value != ')') match = this.failsafe('UnclosedCallParens', match);
708
+ if (this.ast) { //#ifdef FULL_AST
709
+ match.twin = lhp;
710
+ lhp.twin = match;
711
+ match.isCallExpressionStop = true;
712
+
713
+ if (stack[stack.length-1].desc == 'expressions') {
714
+ // create ref to this expression group to the opening bracket
715
+ lhp.expressionArg = stack[stack.length-1];
716
+ }
717
+ } //#endif
718
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // might be div
719
+ acceptAssignment = false;
720
+ }
721
+ }
722
+
723
+ // check for postfix operators ++ and --
724
+ // they are stronger than the + or - binary operators
725
+ // they can be applied to any lhs (even when it wouldnt make sense)
726
+ // if there was a newline, it should get an ASI
727
+ if ((match.value == '++' || match.value == '--') && !match.newline) {
728
+ if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
729
+ match = this.tokenizer.storeCurrentAndFetchNextToken(true, match, stack); // may parse div
730
+ }
731
+
732
+ if (this.ast) { //#ifdef FULL_AST
733
+ // restore "expression" stack
734
+ stack = estack;
735
+ } //#endif
736
+ // now see if there is an operator following...
737
+
738
+ do { // this do allows us to parse multiple ternary expressions in succession without screwing up.
739
+ var ternary = false;
740
+ if (
741
+ (!forHeader && match.value == 'in') || // one of two named binary operators, may not be first expression in for-header (when semi's occur in the for-header)
742
+ (match.value == 'instanceof') || // only other named binary operator
743
+ ((match.name == 11/*PUNCTUATOR*/) && // we can only expect a punctuator now
744
+ (match.isAssignment = this.regexAssignments.test(match.value)) || // assignments are only okay with proper lhs
745
+ this.regexNonAssignmentBinaryExpressionOperators.test(match.value) // test all other binary operators
746
+ )
747
+ ) {
748
+ if (match.isAssignment) {
749
+ if (!acceptAssignment) this.failignore('IllegalLhsForAssignment', match, stack);
750
+ else if (parsedNonAssignmentOperator) this.failignore('AssignmentNotAllowedAfterNonAssignmentInExpression', match, stack);
751
+ }
752
+ if (isBreakOrContinueArg) match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
753
+
754
+ if (!match.isAssignment) parsedNonAssignmentOperator = true; // last allowed assignment
755
+ if (this.ast) { //#ifdef FULL_AST
756
+ match.isBinaryOperator = true;
757
+ // we build a stack to ensure any whitespace doesnt break the 1+(n*2) children rule for expressions
758
+ var ostack = stack;
759
+ stack = [];
760
+ stack.desc = 'operator-expression';
761
+ stack.isBinaryOperator = true;
762
+ stack.sub = match.value;
763
+ stack.nextBlack = match.tokposb;
764
+ ostack.sub = match.value;
765
+ stack.isAssignment = match.isAssignment;
766
+ ostack.push(stack);
767
+ } //#endif
768
+ ternary = match.value == '?';
769
+ // math, logic, assignment or in or instanceof
770
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
771
+
772
+ if (this.ast) { //#ifdef FULL_AST
773
+ // restore "expression" stack
774
+ stack = ostack;
775
+ } //#endif
776
+
777
+ // minor exception to ternary operator, we need to parse two expressions nao. leave the trailing expression to the loop.
778
+ if (ternary) {
779
+ // LogicalORExpression "?" AssignmentExpression ":" AssignmentExpression
780
+ // so that means just one expression center and right.
781
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) this.failignore('InvalidCenterTernaryExpression', match, stack);
782
+ match = this.eatExpressions(false, match, stack, true, forHeader); // only one expression allowed inside ternary center/right
783
+
784
+ if (match.value != ':') {
785
+ if (match.value == ',') match = this.failsafe('TernarySecondExpressionCanNotContainComma', match);
786
+ else match = this.failsafe('UnfinishedTernaryOperator', match);
787
+ }
788
+ if (this.ast) { //#ifdef FULL_AST
789
+ // we build a stack to ensure any whitespace doesnt break the 1+(n*2) children rule for expressions
790
+ var ostack = stack;
791
+ stack = [];
792
+ stack.desc = 'operator-expression';
793
+ stack.sub = match.value;
794
+ stack.nextBlack = match.tokposb;
795
+ ostack.sub = match.value;
796
+ stack.isAssignment = match.isAssignment;
797
+ ostack.push(stack);
798
+ } //#endif
799
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
800
+ if (this.ast) { //#ifdef FULL_AST
801
+ stack = ostack;
802
+ } //#endif
803
+ // rhs of the ternary can not contain a comma either
804
+ match = this.eatExpressions(false, match, stack, true, forHeader); // only one expression allowed inside ternary center/right
805
+ }
806
+ } else {
807
+ parseAnotherExpression = false;
808
+ }
809
+ } while (ternary); // if we just parsed a ternary expression, we need to check _again_ whether the next token is a binary operator.
810
+
811
+ // start over. match is the rhs for the lhs we just parsed, but lhs for the next expression
812
+ if (parseAnotherExpression && !(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) {
813
+ // no idea what to do now. lets just ignore and see where it ends. TOFIX: maybe just break the loop or return?
814
+ this.failignore('InvalidRhsExpression', match, stack);
815
+ }
816
+ }
817
+
818
+ if (this.ast) { //#ifdef FULL_AST
819
+ // restore "expressions" stack
820
+ stack = astack;
821
+ } //#endif
822
+
823
+ // at this point we should have parsed one AssignmentExpression
824
+ // lets see if we can parse another one...
825
+ mayParseLabeledStatementInstead = first = false;
826
+ } while (!onlyOne && match.value == ',');
827
+
828
+ if (this.ast) { //#ifdef FULL_AST
829
+ // remove empty array
830
+ if (!stack.length) pstack.length = pstack.length-1;
831
+ pstack.numberOfExpressions = parsedExpressions;
832
+ if (pstack[0]) pstack[0].numberOfExpressions = parsedExpressions;
833
+ stack.expressionCount = parsedExpressions;
834
+ } //#endif
835
+ return match;
836
+ },
837
+ eatFunctionDeclaration: function(match, stack){
838
+ if (this.ast) { //#ifdef FULL_AST
839
+ stack.push(stack = []);
840
+ var prevscope = this.scope;
841
+ stack.desc = 'func decl';
842
+ stack.isFunction = true;
843
+ stack.nextBlack = match.tokposb;
844
+ if (!this.scope.functions) this.scope.functions = [];
845
+ match.functionId = this.scope.functions.length;
846
+ this.scope.functions.push(match);
847
+ // add new scope
848
+ match.scope = stack.scope = this.scope = [
849
+ this.scope, // add current scope (build scope chain up-down)
850
+ // Object.create(null,
851
+ {value:'this', isDeclared:true, isEcma:true, functionStack:stack},
852
+ // Object.create(null,
853
+ {value:'arguments', isDeclared:true, isEcma:true, varType:['Object']}
854
+ ];
855
+ // ref to back to function that's the cause for this scope
856
+ this.scope.scopeFor = match;
857
+ match.targetScope = prevscope; // consistency
858
+
859
+ match.functionStack = stack;
860
+
861
+ match.isFuncDeclKeyword = true;
862
+ } //#endif
863
+ // only place that this function is used already checks whether next token is function
864
+ var functionKeyword = match;
865
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
866
+ if (match.name != 2/*IDENTIFIER*/) match = this.failsafe('FunctionDeclarationsMustHaveName', match);
867
+ if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) this.failignore('FunctionNameMayNotBeReserved', match, stack);
868
+ if (this.ast) { //#ifdef FULL_AST
869
+ functionKeyword.funcName = match;
870
+ prevscope.push({value:match.value});
871
+ match.meta = 'func decl name'; // that's what it is, really
872
+ match.varType = ['Function'];
873
+ match.functionStack = stack;
874
+ } //#endif
875
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
876
+ match = this.eatFunctionParametersAndBody(match, stack, false, functionKeyword); // first token after func-decl is regex
877
+ if (this.ast) { //#ifdef FULL_AST
878
+ // restore previous scope
879
+ this.scope = prevscope;
880
+ } //#endif
881
+ return match;
882
+ },
883
+ eatObjectLiteralColonAndBody: function(match, stack){
884
+ if (this.ast) { //#ifdef FULL_AST
885
+ var propValueStack = stack;
886
+ stack = [];
887
+ stack.desc = 'objlit pair colon';
888
+ stack.nextBlack = match.tokposb;
889
+ propValueStack.push(stack);
890
+ } //#endif
891
+ if (match.value != ':') match = this.failsafe('ObjectLiteralExpectsColonAfterName', match);
892
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
893
+ if (this.ast) { //#ifdef FULL_AST
894
+ stack = propValueStack;
895
+ } //#endif
896
+
897
+ // this might actually fail due to ASI optimization.
898
+ // if the property name does not exist and it is the last item
899
+ // of the objlit, the expression parser will see an unexpected
900
+ // } and ignore it, giving some leeway to apply ASI. of course,
901
+ // that doesnt work for objlits. but we dont want to break the
902
+ // existing mechanisms. so we check this differently... :)
903
+ var prevMatch = match;
904
+ match = this.eatExpressions(false, match, stack, true); // only one expression
905
+ if (match == prevMatch) match = this.failsafe('ObjectLiteralMissingPropertyValue', match);
906
+
907
+ return match;
908
+ },
909
+ eatFunctionParametersAndBody: function(match, stack, div, funcToken){
910
+ // div: the first token _after_ a function expression may be a division...
911
+ if (match.value != '(') match = this.failsafe('ExpectingFunctionHeaderStart', match);
912
+ else if (this.ast) { //#ifdef FULL_AST
913
+ var lhp = match;
914
+ funcToken.lhp = match;
915
+ } //#endif
916
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
917
+ if (match.name == 2/*IDENTIFIER*/) { // params
918
+ if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) this.failignore('FunctionArgumentsCanNotBeReserved', match, stack);
919
+ if (this.ast) { //#ifdef FULL_AST
920
+ if (!funcToken.paramNames) funcToken.paramNames = [];
921
+ stack.paramNames = funcToken.paramNames;
922
+ funcToken.paramNames.push(match);
923
+ this.scope.push({value:match.value}); // add param name to scope
924
+ match.meta = 'parameter';
925
+ } //#endif
926
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
927
+ while (match.value == ',') {
928
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
929
+ if (match.name != 2/*IDENTIFIER*/) {
930
+ // example: if name is 12, the source is incomplete...
931
+ this.failignore('FunctionParametersMustBeIdentifiers', match, stack);
932
+ } else if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) {
933
+ this.failignore('FunctionArgumentsCanNotBeReserved', match, stack);
934
+ }
935
+ if (this.ast) { //#ifdef FULL_AST
936
+ // Object.create(null,
937
+ this.scope.push({value:match.value}); // add param name to scope
938
+ match.meta = 'parameter';
939
+ if (match.name == 2/*IDENTIFIER*/) funcToken.paramNames.push(match);
940
+ } //#endif
941
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
942
+ }
943
+ }
944
+ if (this.ast) { //#ifdef FULL_AST
945
+ if (lhp) {
946
+ match.twin = lhp;
947
+ lhp.twin = match;
948
+ funcToken.rhp = match;
949
+ }
950
+ } //#endif
951
+ if (match.value != ')') match = this.failsafe('ExpectedFunctionHeaderClose', match); // TOFIX: can be various things here...
952
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
953
+ match = this.eatFunctionBody(match, stack, div, funcToken);
954
+ return match;
955
+ },
956
+ eatFunctionBody: function(match, stack, div, funcToken){
957
+ if (this.ast) { //#ifdef FULL_AST
958
+ stack.push(stack = []);
959
+ stack.desc = 'func body';
960
+ stack.nextBlack = match.tokposb;
961
+
962
+ // create EMPTY list of functions. labels cannot cross function boundaries
963
+ var labelBackup = this.statementLabels;
964
+ this.statementLabels = [];
965
+ stack.labels = this.statementLabels;
966
+ } //#endif
967
+
968
+ // if div, a division can occur _after_ this function expression
969
+ //this.stats.eatFunctionBody = (+//this.stats.eatFunctionBody||0)+1;
970
+ if (match.value != '{') match = this.failsafe('ExpectedFunctionBodyCurlyOpen', match);
971
+ if (this.ast) { //#ifdef FULL_AST
972
+ var lhc = match;
973
+ if (funcToken) funcToken.lhc = lhc;
974
+ } //#endif
975
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
976
+ match = this.eatSourceElements(match, stack);
977
+ if (match.value != '}') match = this.failsafe('ExpectedFunctionBodyCurlyClose', match);
978
+ if (this.ast) { //#ifdef FULL_AST
979
+ match.twin = lhc;
980
+ lhc.twin = match;
981
+ if (funcToken) funcToken.rhc = match;
982
+ } //#endif
983
+ match = this.tokenizer.storeCurrentAndFetchNextToken(div, match, stack);
984
+
985
+ if (this.ast) { //#ifdef FULL_AST
986
+ // restore label set
987
+ this.statementLabels = labelBackup;
988
+ } //#endif
989
+
990
+ return match;
991
+ },
992
+ eatVar: function(match, stack){
993
+ if (this.ast) { //#ifdef FULL_AST
994
+ stack.push(stack = []);
995
+ stack.desc = 'statement';
996
+ stack.sub = 'var';
997
+ stack.nextBlack = match.tokposb;
998
+ match.stack = stack;
999
+ match.isVarKeyword = true;
1000
+ } //#endif
1001
+ match = this.eatVarDecl(match, stack);
1002
+ match = this.eatSemiColon(match, stack);
1003
+
1004
+ return match;
1005
+ },
1006
+ eatVarDecl: function(match, stack, forHeader){
1007
+ // assumes match is indeed the identifier 'var'
1008
+ if (this.ast) { //#ifdef FULL_AST
1009
+ stack.push(stack = []);
1010
+ stack.desc = 'var decl';
1011
+ stack.nextBlack = match.tokposb;
1012
+
1013
+ var targetScope = this.scope;
1014
+ while (targetScope.catchScope) targetScope = targetScope[0];
1015
+ } //#endif
1016
+ var first = true;
1017
+ var varsDeclared = 0;
1018
+ do {
1019
+ ++varsDeclared;
1020
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack); // start: var, iteration: comma
1021
+ if (this.ast) { //#ifdef FULL_AST
1022
+ var declStack = stack;
1023
+ var stack = [];
1024
+ stack.desc = 'single var decl';
1025
+ stack.varStack = declStack; // reference to the var statement stack, it might hook to jsdoc needed for these vars
1026
+ stack.nextBlack = match.tokposb;
1027
+ declStack.push(stack);
1028
+
1029
+ var singleDecStack = stack;
1030
+ stack = [];
1031
+ stack.desc = 'sub-expression';
1032
+ stack.nextBlack = match.tokposb;
1033
+ singleDecStack.push(stack);
1034
+ } //#endif
1035
+
1036
+ // next token should be a valid identifier
1037
+ if (match.name == 12/*eof*/) {
1038
+ if (first) match = this.failsafe('VarKeywordMissingName', match);
1039
+ // else, ignore. TOFIX: return?
1040
+ else match = this.failsafe('IllegalTrailingComma', match);
1041
+ } else if (match.name != 2/*IDENTIFIER*/) {
1042
+ match = this.failsafe('VarNamesMayOnlyBeIdentifiers', match);
1043
+ } else if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) {
1044
+ match = this.failsafe('VarNamesCanNotBeReserved', match);
1045
+ }
1046
+ // mark the match as being a variable name. we need it for lookup later :)
1047
+ if (this.ast) { //#ifdef FULL_AST
1048
+ match.meta = 'var name';
1049
+ targetScope.push({value:match.value});
1050
+ } //#endif
1051
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1052
+
1053
+ if (this.ast) { //#ifdef FULL_AST
1054
+ stack = singleDecStack;
1055
+ } //#endif
1056
+
1057
+ // next token should either be a = , or ;
1058
+ // if = parse an expression and optionally a comma
1059
+ if (match.value == '=') {
1060
+ if (this.ast) { //#ifdef FULL_AST
1061
+ singleDecStack = stack;
1062
+ stack = [];
1063
+ stack.desc = 'operator-expression';
1064
+ stack.sub = '=';
1065
+ stack.nextBlack = match.tokposb;
1066
+ singleDecStack.push(stack);
1067
+
1068
+ stack.isAssignment = true;
1069
+ } //#endif
1070
+ match.isInitialiser = true;
1071
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1072
+ if (this.ast) { //#ifdef FULL_AST
1073
+ stack = singleDecStack;
1074
+ } //#endif
1075
+
1076
+ if (!(/*is left hand side start?*/ match.name <= 6 || match.name == 14/*error*/ || this.regexLhsStart.test(match.value))) match = this.failsafe('VarInitialiserExpressionExpected', match);
1077
+ match = this.eatExpressions(false, match, stack, true, forHeader); // only one expression
1078
+ // var statement: comma or semi now
1079
+ // for statement: semi, comma or 'in'
1080
+ }
1081
+ if (this.ast) { //#ifdef FULL_AST
1082
+ stack = declStack;
1083
+ } //#endif
1084
+
1085
+ // determines proper error message in one case
1086
+ first = false;
1087
+ // keep parsing name(=expression) sequences as long as you see a comma here
1088
+ } while (match.value == ',');
1089
+
1090
+ if (this.ast) { //#ifdef FULL_AST
1091
+ stack.varsDeclared = varsDeclared;
1092
+ } //#endif
1093
+
1094
+ return match;
1095
+ },
1096
+
1097
+ eatIf: function(match, stack){
1098
+ if (this.ast) { //#ifdef FULL_AST
1099
+ stack.push(stack = []);
1100
+ stack.desc = 'statement';
1101
+ stack.sub = 'if';
1102
+ stack.hasElse = false;
1103
+ stack.nextBlack = match.tokposb;
1104
+ } //#endif
1105
+ // (
1106
+ // expression
1107
+ // )
1108
+ // statement
1109
+ // [else statement]
1110
+ var ifKeyword = match;
1111
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1112
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1113
+ if (this.ast) { //#ifdef FULL_AST
1114
+ var lhp = match;
1115
+ match.statementHeaderStart = true;
1116
+ } //#endif
1117
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1118
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('StatementHeaderIsNotOptional', match);
1119
+ match = this.eatExpressions(false, match, stack);
1120
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1121
+ if (this.ast) { //#ifdef FULL_AST
1122
+ match.twin = lhp;
1123
+ match.statementHeaderStop = true;
1124
+ lhp.twin = match;
1125
+
1126
+ if (stack[stack.length-1].desc == 'expressions') {
1127
+ // create ref to this expression group to the opening bracket
1128
+ lhp.expressionArg = stack[stack.length-1];
1129
+ }
1130
+ } //#endif
1131
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1132
+ match = this.eatStatement(false, match, stack);
1133
+
1134
+ // match might be null here... (if the if-statement was end part of the source)
1135
+ if (match && match.value == 'else') {
1136
+ if (this.ast) { //#ifdef FULL_AST
1137
+ ifKeyword.hasElse = match;
1138
+ } //#endif
1139
+ match = this.eatElse(match, stack);
1140
+ }
1141
+
1142
+ return match;
1143
+ },
1144
+ eatElse: function(match, stack){
1145
+ if (this.ast) { //#ifdef FULL_AST
1146
+ stack.hasElse = true;
1147
+ stack.push(stack = []);
1148
+ stack.desc = 'statement';
1149
+ stack.sub = 'else';
1150
+ stack.nextBlack = match.tokposb;
1151
+ } //#endif
1152
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1153
+ match = this.eatStatement(false, match, stack);
1154
+
1155
+ return match;
1156
+ },
1157
+ eatDo: function(match, stack){
1158
+ if (this.ast) { //#ifdef FULL_AST
1159
+ stack.push(stack = []);
1160
+ stack.desc = 'statement';
1161
+ stack.sub = 'do';
1162
+ stack.isIteration = true;
1163
+ stack.nextBlack = match.tokposb;
1164
+ this.statementLabels.push(''); // add "empty"
1165
+ var doToken = match;
1166
+ } //#endif
1167
+ // statement
1168
+ // while
1169
+ // (
1170
+ // expression
1171
+ // )
1172
+ // semi-colon
1173
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1174
+ match = this.eatStatement(false, match, stack);
1175
+ if (match.value != 'while') match = this.failsafe('DoShouldBeFollowedByWhile', match);
1176
+ if (this.ast) { //#ifdef FULL_AST
1177
+ match.hasDo = doToken;
1178
+ } //#endif
1179
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1180
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1181
+ if (this.ast) { //#ifdef FULL_AST
1182
+ var lhp = match;
1183
+ match.statementHeaderStart = true;
1184
+ } //#endif
1185
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1186
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('StatementHeaderIsNotOptional', match);
1187
+ match = this.eatExpressions(false, match, stack);
1188
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1189
+ if (this.ast) { //#ifdef FULL_AST
1190
+ match.twin = lhp;
1191
+ match.statementHeaderStop = true;
1192
+ match.isForDoWhile = true; // prevents missing block warnings
1193
+ lhp.twin = match;
1194
+
1195
+ if (stack[stack.length-1].desc == 'expressions') {
1196
+ // create ref to this expression group to the opening bracket
1197
+ lhp.expressionArg = stack[stack.length-1];
1198
+ }
1199
+ } //#endif
1200
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1201
+ match = this.eatSemiColon(match, stack); // TOFIX: this is not optional according to the spec, but browsers apply ASI anyways
1202
+
1203
+ return match;
1204
+ },
1205
+ eatWhile: function(match, stack){
1206
+ if (this.ast) { //#ifdef FULL_AST
1207
+ stack.push(stack = []);
1208
+ stack.desc = 'statement';
1209
+ stack.sub = 'while';
1210
+ stack.isIteration = true;
1211
+ stack.nextBlack = match.tokposb;
1212
+ this.statementLabels.push(''); // add "empty"
1213
+ } //#endif
1214
+
1215
+ // (
1216
+ // expression
1217
+ // )
1218
+ // statement
1219
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1220
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1221
+ if (this.ast) { //#ifdef FULL_AST
1222
+ var lhp = match;
1223
+ match.statementHeaderStart = true;
1224
+ } //#endif
1225
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1226
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('StatementHeaderIsNotOptional', match);
1227
+ match = this.eatExpressions(false, match, stack);
1228
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1229
+ if (this.ast) { //#ifdef FULL_AST
1230
+ match.twin = lhp;
1231
+ match.statementHeaderStop = true;
1232
+ lhp.twin = match;
1233
+
1234
+ if (stack[stack.length-1].desc == 'expressions') {
1235
+ // create ref to this expression group to the opening bracket
1236
+ lhp.expressionArg = stack[stack.length-1];
1237
+ }
1238
+ } //#endif
1239
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1240
+ match = this.eatStatement(false, match, stack);
1241
+
1242
+ return match;
1243
+ },
1244
+
1245
+ eatFor: function(match, stack){
1246
+ if (this.ast) { //#ifdef FULL_AST
1247
+ stack.push(stack = []);
1248
+ stack.desc = 'statement';
1249
+ stack.sub = 'for';
1250
+ stack.isIteration = true;
1251
+ stack.nextBlack = match.tokposb;
1252
+ this.statementLabels.push(''); // add "empty"
1253
+ } //#endif
1254
+ // either a for(..in..) or for(..;..;..)
1255
+ // start eating an expression but refuse to parse
1256
+ // 'in' on the top-level of that expression. they are fine
1257
+ // in sub-levels (group, array, etc). Now the expression
1258
+ // must be followed by either ';' or 'in'. Else throw.
1259
+ // Branch on that case, ; requires two.
1260
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1261
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1262
+ if (this.ast) { //#ifdef FULL_AST
1263
+ var lhp = match;
1264
+ match.statementHeaderStart = true;
1265
+ match.forHeaderStart = true;
1266
+ } //#endif
1267
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1268
+
1269
+ // for (either case) may start with var, in which case you'll parse a var declaration before encountering the 'in' or first semi.
1270
+ if (match.value == 'var') {
1271
+ match = this.eatVarDecl(match, stack, true);
1272
+ } else if (match.value != ';') { // expressions are optional in for-each
1273
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) {
1274
+ this.failignore('StatementHeaderIsNotOptional', match, stack);
1275
+ }
1276
+ match = this.eatExpressions(false, match, stack, false, true); // can parse multiple expressions, in is not ok here
1277
+ }
1278
+
1279
+ // now we parsed an expression if it existed. the next token should be either ';' or 'in'. branch accordingly
1280
+ if (match.value == 'in') {
1281
+ var declStack = stack[stack.length-1];
1282
+ if (declStack.varsDeclared > 1) {
1283
+ // disallowed. for-in var decls can only have one var name declared
1284
+ this.failignore('ForInCanOnlyDeclareOnVar', match, stack);
1285
+ }
1286
+
1287
+ if (this.ast) { //#ifdef FULL_AST
1288
+ stack.forType = 'in';
1289
+ match.forFor = true; // make easy distinction between conditional and iterational operator
1290
+ } //#endif
1291
+
1292
+ // just parse another expression, where 'in' is allowed.
1293
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1294
+ match = this.eatExpressions(false, match, stack);
1295
+ } else {
1296
+ if (match.value != ';') match = this.failsafe('ForHeaderShouldHaveSemisOrIn', match);
1297
+
1298
+ if (this.ast) { //#ifdef FULL_AST
1299
+ stack.forType = 'each';
1300
+ match.forEachHeaderStart = true;
1301
+ } //#endif
1302
+ // parse another optional no-in expression, another semi and then one more optional no-in expression
1303
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1304
+ if (/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value)) match = this.eatExpressions(false, match, stack); // in is ok here
1305
+ if (match.value != ';') match = this.failsafe('ExpectedSecondSemiOfForHeader', match);
1306
+ if (this.ast) { //#ifdef FULL_AST
1307
+ match.forEachHeaderStop = true;
1308
+ } //#endif
1309
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1310
+ if (/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value)) match = this.eatExpressions(false, match, stack); // in is ok here
1311
+ }
1312
+
1313
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1314
+ if (this.ast) { //#ifdef FULL_AST
1315
+ match.twin = lhp;
1316
+ match.statementHeaderStop = true;
1317
+ match.forHeaderStop = true;
1318
+ lhp.twin = match;
1319
+
1320
+ if (match.forType == 'in' && stack[stack.length-1].desc == 'expressions') {
1321
+ // create ref to this expression group to the opening bracket
1322
+ lhp.expressionArg = stack[stack.length-1];
1323
+ }
1324
+ } //#endif
1325
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1326
+
1327
+ match = this.eatStatement(false, match, stack);
1328
+
1329
+ return match;
1330
+ },
1331
+ eatContinue: function(match, stack){
1332
+ if (this.ast) { //#ifdef FULL_AST
1333
+ stack.push(stack = []);
1334
+ stack.desc = 'statement';
1335
+ stack.sub = 'continue';
1336
+ stack.nextBlack = match.tokposb;
1337
+
1338
+ match.restricted = true;
1339
+ } //#endif
1340
+ // (no-line-break identifier)
1341
+ // ;
1342
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack); // may not have line terminator...
1343
+ if (!match.newline && match.value != ';' && match.name != 12/*EOF*/ && match.value != '}') {
1344
+ if (this.ast) { //#ifdef FULL_AST
1345
+ match.isLabel = true;
1346
+ match.isLabelTarget = true;
1347
+
1348
+ var continueArg = match; // remember to see if this continue parsed a label
1349
+ } //#endif
1350
+ // may only parse exactly an identifier at this point
1351
+ match = this.eatExpressions(false, match, stack, true, false, true); // first true=onlyOne, second: continue/break arg
1352
+ if (this.ast) { //#ifdef FULL_AST
1353
+ stack.hasLabel = continueArg != match;
1354
+ } //#endif
1355
+ if (match.value != ';' && !match.newline && match.name != 12/*eof*/ && match.value != '}') match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
1356
+ }
1357
+ match = this.eatSemiColon(match, stack);
1358
+
1359
+ return match;
1360
+ },
1361
+ eatBreak: function(match, stack){
1362
+ if (this.ast) { //#ifdef FULL_AST
1363
+ var parentstack = stack
1364
+ stack = [];
1365
+ stack.desc = 'statement';
1366
+ stack.sub = 'break';
1367
+ stack.nextBlack = match.tokposb;
1368
+
1369
+ parentstack.push(stack);
1370
+
1371
+ match.restricted = true;
1372
+ } //#endif
1373
+ // (no-line-break identifier)
1374
+ // ;
1375
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack); // may not have line terminator...
1376
+ if (!match.newline && match.value != ';' && match.name != 12/*EOF*/ && match.value != '}') {
1377
+ if (this.ast) { //#ifdef FULL_AST
1378
+ match.isLabel = true;
1379
+ match.isLabelTarget = true;
1380
+ var breakArg = match; // remember to see if this break parsed a label
1381
+ } //#endif
1382
+ // may only parse exactly an identifier at this point
1383
+ match = this.eatExpressions(false, match, stack, true, false, true); // first true=onlyOne, second: continue/break arg
1384
+ if (this.ast) { //#ifdef FULL_AST
1385
+ stack.hasLabel = breakArg != match;
1386
+ } //#endif
1387
+
1388
+ if (match.value != ';' && !match.newline && match.name != 12/*eof*/ && match.value != '}') match = this.failsafe('BreakOrContinueArgMustBeJustIdentifier', match);
1389
+ }
1390
+ match = this.eatSemiColon(match, stack);
1391
+
1392
+ return match;
1393
+ },
1394
+ eatReturn: function(match, stack){
1395
+ if (this.ast) { //#ifdef FULL_AST
1396
+ stack.push(stack = []);
1397
+ stack.desc = 'statement';
1398
+ stack.sub = 'return';
1399
+ stack.nextBlack = match.tokposb;
1400
+ stack.returnFor = this.scope.scopeFor;
1401
+
1402
+ match.restricted = true;
1403
+ } //#endif
1404
+ // (no-line-break expression)
1405
+ // ;
1406
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack); // may not have line terminator...
1407
+ if (!match.newline && match.value != ';' && match.name != 12/*EOF*/ && match.value != '}') {
1408
+ match = this.eatExpressions(false, match, stack);
1409
+ }
1410
+ match = this.eatSemiColon(match, stack);
1411
+
1412
+ return match;
1413
+ },
1414
+ eatThrow: function(match, stack){
1415
+ if (this.ast) { //#ifdef FULL_AST
1416
+ stack.push(stack = []);
1417
+ stack.desc = 'statement';
1418
+ stack.sub = 'throw';
1419
+ stack.nextBlack = match.tokposb;
1420
+
1421
+ match.restricted = true;
1422
+ } //#endif
1423
+ // (no-line-break expression)
1424
+ // ;
1425
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack); // may not have line terminator...
1426
+ if (match.newline) match = this.failsafe('ThrowCannotHaveReturn', match);
1427
+ if (match.value == ';') match = this.failsafe('ThrowMustHaveArgument', match);
1428
+ match = this.eatExpressions(false, match, stack);
1429
+ match = this.eatSemiColon(match, stack);
1430
+
1431
+ return match;
1432
+ },
1433
+ eatSwitch: function(match, stack){
1434
+ if (this.ast) { //#ifdef FULL_AST
1435
+ stack.push(stack = []);
1436
+ stack.desc = 'statement';
1437
+ stack.sub = 'switch';
1438
+ stack.nextBlack = match.tokposb;
1439
+
1440
+ this.statementLabels.push(''); // add "empty"
1441
+ } //#endif
1442
+ // meh.
1443
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1444
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1445
+ if (this.ast) { //#ifdef FULL_AST
1446
+ var lhp = match;
1447
+ match.statementHeaderStart = true;
1448
+ } //#endif
1449
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1450
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) {
1451
+ this.failignore('StatementHeaderIsNotOptional', match, stack);
1452
+ }
1453
+ match = this.eatExpressions(false, match, stack);
1454
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1455
+ if (this.ast) { //#ifdef FULL_AST
1456
+ match.twin = lhp;
1457
+ match.statementHeaderStop = true;
1458
+ lhp.twin = match;
1459
+
1460
+ if (stack[stack.length-1].desc == 'expressions') {
1461
+ // create ref to this expression group to the opening bracket
1462
+ lhp.expressionArg = stack[stack.length-1];
1463
+ }
1464
+ } //#endif
1465
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1466
+ if (match.value != '{') match = this.failsafe('SwitchBodyStartsWithCurly', match);
1467
+
1468
+ if (this.ast) { //#ifdef FULL_AST
1469
+ var lhc = match;
1470
+ } //#endif
1471
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1472
+
1473
+ // you may parse a default case, and only once per switch. but you may do so anywhere.
1474
+ var parsedAnything = false;
1475
+
1476
+ while (match.value == 'case' || (!stack.parsedSwitchDefault && match.value == 'default')) {
1477
+ parsedAnything = true;
1478
+
1479
+ match = this.eatSwitchClause(match, stack);
1480
+ }
1481
+
1482
+ // if you didnt parse anything but not encountering a closing curly now, you might be thinking that switches may start with silly stuff
1483
+ if (!parsedAnything && match.value != '}') {
1484
+ match = this.failsafe('SwitchBodyMustStartWithClause', match);
1485
+ }
1486
+
1487
+ if (stack.parsedSwitchDefault && match.value == 'default') {
1488
+ this.failignore('SwitchCannotHaveDoubleDefault', match, stack);
1489
+ }
1490
+
1491
+ if (match.value != '}' && match.name != 14/*error*/) match = this.failsafe('SwitchBodyEndsWithCurly', match);
1492
+
1493
+ if (this.ast) { //#ifdef FULL_AST
1494
+ match.twin = lhc;
1495
+ lhc.twin = match;
1496
+ } //#endif
1497
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1498
+
1499
+ return match;
1500
+ },
1501
+ eatSwitchClause: function(match, stack){
1502
+ match = this.eatSwitchHeader(match, stack);
1503
+ match = this.eatSwitchBody(match, stack);
1504
+
1505
+ return match;
1506
+ },
1507
+ eatSwitchHeader: function(match, stack){
1508
+ if (this.ast) { //#ifdef FULL_AST
1509
+ // collect whitespace...
1510
+ var switchHeaderStack = stack
1511
+ stack.push(stack = []);
1512
+ stack.desc = 'switch clause header';
1513
+ stack.nextBlack = match.tokposb;
1514
+ } //#endif
1515
+
1516
+ if (match.value == 'case') {
1517
+ match = this.eatSwitchCaseHead(match, stack);
1518
+ } else { // default
1519
+ if (this.ast) { //#ifdef FULL_AST
1520
+ switchHeaderStack.hasDefaultClause = true;
1521
+ } //#endif
1522
+ match = this.eatSwitchDefaultHead(match, stack);
1523
+ }
1524
+
1525
+ if (this.ast) { //#ifdef FULL_AST
1526
+ // just to group whitespace (makes certain navigation easier..)
1527
+ stack.push(stack = []);
1528
+ stack.desc = 'colon';
1529
+ stack.nextBlack = match.tokposb;
1530
+ } //#endif
1531
+
1532
+ if (match.value != ':') {
1533
+ match = this.failsafe('SwitchClausesEndWithColon', match);
1534
+ }
1535
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1536
+
1537
+ return match;
1538
+ },
1539
+ eatSwitchBody: function(match, stack){
1540
+ if (this.ast) { //#ifdef FULL_AST
1541
+ stack.push(stack = []);
1542
+ stack.desc = 'switch clause body';
1543
+ stack.nextBlack = match.tokposb;
1544
+ } //#endif
1545
+
1546
+ // parse body of case or default, just so long case and default keywords are not seen and end of switch is not reached
1547
+ // (clause bodies may be empty, for instance to fall through)
1548
+ var lastMatch = null;
1549
+ while (match.value != 'default' && match.value != 'case' && match.value != '}' && match.name != 14/*error*/ && match.name != 12/*eof*/ && lastMatch != match) {
1550
+ lastMatch = match; // prevents endless loops on error ;)
1551
+ match = this.eatStatement(true, match, stack);
1552
+ }
1553
+ if (lastMatch == match) this.failsafe('UnexpectedInputSwitch', match);
1554
+
1555
+ return match;
1556
+ },
1557
+ eatSwitchCaseHead: function(match, stack){
1558
+ if (this.ast) { //#ifdef FULL_AST
1559
+ stack.sub = 'case';
1560
+ var caseHeadStack = stack;
1561
+
1562
+ stack.push(stack = []);
1563
+ stack.desc = 'case';
1564
+ stack.nextBlack = match.tokposb;
1565
+
1566
+ match.isCase = true;
1567
+ } //#endif
1568
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1569
+
1570
+ if (match.value == ':') {
1571
+ this.failignore('CaseMissingExpression', match, stack);
1572
+ } else {
1573
+ if (this.ast) { //#ifdef FULL_AST
1574
+ caseHeadStack.push(stack = []);
1575
+ stack.desc = 'case arg';
1576
+ stack.nextBlack = match.tokposb;
1577
+ } //#endif
1578
+ match = this.eatExpressions(false, match, stack);
1579
+ }
1580
+
1581
+ return match;
1582
+ },
1583
+ eatSwitchDefaultHead: function(match, stack){
1584
+ if (this.ast) { //#ifdef FULL_AST
1585
+ stack.sub = 'default';
1586
+
1587
+ stack.push(stack = []);
1588
+ stack.desc = 'case';
1589
+ stack.nextBlack = match.tokposb;
1590
+
1591
+ match.isDefault = true;
1592
+ } //#endif
1593
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1594
+
1595
+ return match;
1596
+ },
1597
+ eatTryCatchFinally: function(match, stack){
1598
+ if (this.ast) { //#ifdef FULL_AST
1599
+ stack.push(stack = []);
1600
+ stack.desc = 'statement';
1601
+ stack.sub = 'try';
1602
+ stack.nextBlack = match.tokposb;
1603
+ } //#endif
1604
+
1605
+ match = this.eatTry(match, stack);
1606
+
1607
+ if (match.value == 'catch') {
1608
+ if (this.ast) { //#ifdef FULL_AST
1609
+ stack.hasCatch = true;
1610
+ } //#endif
1611
+ match = this.eatCatch(match, stack);
1612
+ }
1613
+ if (match.value == 'finally') {
1614
+ if (this.ast) { //#ifdef FULL_AST
1615
+ stack.hasFinally = true;
1616
+ } //#endif
1617
+ match = this.eatFinally(match, stack);
1618
+ }
1619
+
1620
+ // at least a catch or finally block must follow. may be both.
1621
+ if (!stack.tryHasCatchOrFinally) {
1622
+ this.failignore('TryMustHaveCatchOrFinally', match, stack);
1623
+ }
1624
+
1625
+ return match;
1626
+ },
1627
+ eatTry: function(match, stack){
1628
+ // block
1629
+ // (catch ( identifier ) block )
1630
+ // (finally block)
1631
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1632
+ if (match.value != '{') match = this.failsafe('MissingTryBlockCurlyOpen', match);
1633
+
1634
+ if (this.ast) { //#ifdef FULL_AST
1635
+ stack.push(stack = []);
1636
+ stack.desc = 'statement';
1637
+ stack.sub = 'tryblock';
1638
+ stack.nextBlack = match.tokposb;
1639
+ var lhc = match;
1640
+ } //#endif
1641
+
1642
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1643
+ if (match.value != '}') match = this.eatStatements(match, stack);
1644
+ if (match.value != '}') match = this.failsafe('MissingTryBlockCurlyClose', match);
1645
+
1646
+ if (this.ast) { //#ifdef FULL_AST
1647
+ match.twin = lhc;
1648
+ lhc.twin = match;
1649
+ } //#endif
1650
+
1651
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1652
+
1653
+ return match;
1654
+ },
1655
+ eatCatch: function(match, stack){
1656
+ stack.tryHasCatchOrFinally = true;
1657
+ if (this.ast) { //#ifdef FULL_AST
1658
+ stack.push(stack = []);
1659
+ stack.desc = 'statement';
1660
+ stack.sub = 'catch';
1661
+ stack.nextBlack = match.tokposb;
1662
+
1663
+ // the catch block has a header which can contain at most one parameter
1664
+ // this parameter is bound to a local stack. formally, if that parameter
1665
+ // shadows another variable, changes made to the variable inside the catch
1666
+ // should not be reflected by the variable being shadowed. however, this
1667
+ // is not very safe to rely on so there ought to be a warning. note that
1668
+ // only this parameter gets bound to this inner scope, other parameters.
1669
+
1670
+ var catchScopeBackup = this.scope;
1671
+ match.scope = this.scope = stack.scope = [this.scope];
1672
+ this.scope.catchScope = true; // mark this as being a catchScope
1673
+
1674
+ // find first function scope or global scope object...
1675
+ var nonCatchScope = catchScopeBackup;
1676
+ while (nonCatchScope.catchScope) nonCatchScope = nonCatchScope[0];
1677
+
1678
+ // get catch id, which is governed by the function/global scope only
1679
+ if (!nonCatchScope.catches) nonCatchScope.catches = [];
1680
+ match.catchId = nonCatchScope.catches.length;
1681
+ nonCatchScope.catches.push(match);
1682
+ match.targetScope = nonCatchScope;
1683
+ match.catchScope = this.scope;
1684
+
1685
+ // ref to back to function that's the cause for this scope
1686
+ this.scope.scopeFor = match;
1687
+ // catch clauses dont have a special `this` or `arguments`, map them to their parent scope
1688
+ if (catchScopeBackup.global) this.scope.push(catchScopeBackup[0]); // global (has no `arguments` but always a `this`)
1689
+ else if (catchScopeBackup.catchScope) {
1690
+ // tricky. there will at least be a this
1691
+ this.scope.push(catchScopeBackup[1]);
1692
+ // but there might not be an arguments
1693
+ if (catchScopeBackup[2] && catchScopeBackup[2].value == 'arguments') this.scope.push(catchScopeBackup[2]);
1694
+ } else this.scope.push(catchScopeBackup[1], catchScopeBackup[2]); // function scope, copy this and arguments
1695
+ } //#endif
1696
+
1697
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1698
+ if (match.value != '(') match = this.failsafe('CatchHeaderMissingOpen', match);
1699
+ if (this.ast) { //#ifdef FULL_AST
1700
+ var lhp = match;
1701
+ } //#endif
1702
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1703
+ if (match.name != 2/*IDENTIFIER*/) match = this.failsafe('MissingCatchParameter', match);
1704
+ if (this.hashStartKeyOrReserved[match.value[0]] /*this.regexStartKeyOrReserved.test(match.value[0])*/ && this.regexIsKeywordOrReserved.test(match.value)) {
1705
+ this.failignore('CatchParameterNameMayNotBeReserved', match, stack);
1706
+ }
1707
+
1708
+ if (this.ast) { //#ifdef FULL_AST
1709
+ match.meta = 'var name';
1710
+ // this is the catch variable. bind it to a scope but keep the scope as
1711
+ // it currently is.
1712
+ this.scope.push(match);
1713
+ match.isCatchVar = true;
1714
+ } //#endif
1715
+
1716
+ // now the catch body will use the outer scope to bind new variables. the problem is that
1717
+ // inner scopes, if any, should have access to the scope variable, so their scope should
1718
+ // be linked to the catch scope. this is a problem in the current architecture but the
1719
+ // idea is to pass on the catchScope as the scope to the eatStatements call, etc.
1720
+
1721
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1722
+ if (match.value != ')') match = this.failsafe('CatchHeaderMissingClose', match);
1723
+ if (this.ast) { //#ifdef FULL_AST
1724
+ match.twin = lhp;
1725
+ lhp.twin = match;
1726
+ } //#endif
1727
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1728
+ if (match.value != '{') match = this.failsafe('MissingCatchBlockCurlyOpen', match);
1729
+ if (this.ast) { //#ifdef FULL_AST
1730
+ var lhc = match;
1731
+ } //#endif
1732
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1733
+
1734
+ // catch body. statements are optional.
1735
+ if (match.value != '}') match = this.eatStatements(match, stack);
1736
+
1737
+ if (match.value != '}') match = this.failsafe('MissingCatchBlockCurlyClose', match);
1738
+ if (this.ast) { //#ifdef FULL_AST
1739
+ match.twin = lhc;
1740
+ lhc.twin = match;
1741
+ } //#endif
1742
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1743
+
1744
+ if (this.ast) { //#ifdef FULL_AST
1745
+ this.scope = catchScopeBackup;
1746
+ } //#endif
1747
+
1748
+ return match;
1749
+ },
1750
+ eatFinally: function(match, stack){
1751
+ stack.tryHasCatchOrFinally = true;
1752
+ if (this.ast) { //#ifdef FULL_AST
1753
+ stack.push(stack = []);
1754
+ stack.desc = 'statement';
1755
+ stack.sub = 'finally';
1756
+ stack.nextBlack = match.tokposb;
1757
+ } //#endif
1758
+
1759
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1760
+ if (match.value != '{') match = this.failsafe('MissingFinallyBlockCurlyOpen', match);
1761
+ if (this.ast) { //#ifdef FULL_AST
1762
+ var lhc = match;
1763
+ } //#endif
1764
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1765
+ if (match.value != '}') match = this.eatStatements(match, stack);
1766
+ if (match.value != '}') match = this.failsafe('MissingFinallyBlockCurlyClose', match);
1767
+ if (this.ast) { //#ifdef FULL_AST
1768
+ match.twin = lhc;
1769
+ lhc.twin = match;
1770
+ } //#endif
1771
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1772
+
1773
+ return match;
1774
+ },
1775
+ eatDebugger: function(match, stack){
1776
+ if (this.ast) { //#ifdef FULL_AST
1777
+ stack.push(stack = []);
1778
+ stack.desc = 'statement';
1779
+ stack.sub = 'debugger';
1780
+ stack.nextBlack = match.tokposb;
1781
+ } //#endif
1782
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1783
+ match = this.eatSemiColon(match, stack);
1784
+
1785
+ return match;
1786
+ },
1787
+ eatWith: function(match, stack){
1788
+ if (this.ast) { //#ifdef FULL_AST
1789
+ stack.push(stack = []);
1790
+ stack.desc = 'statement';
1791
+ stack.sub = 'with';
1792
+ stack.nextBlack = match.tokposb;
1793
+ } //#endif
1794
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1795
+ if (match.value != '(') match = this.failsafe('ExpectedStatementHeaderOpen', match);
1796
+ if (this.ast) { //#ifdef FULL_AST
1797
+ var lhp = match;
1798
+ match.statementHeaderStart = true;
1799
+ } //#endif
1800
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1801
+ if (!(/*is left hand side start?*/ match.name <= 6 || this.regexLhsStart.test(match.value))) match = this.failsafe('StatementHeaderIsNotOptional', match);
1802
+ match = this.eatExpressions(false, match, stack);
1803
+ if (match.value != ')') match = this.failsafe('ExpectedStatementHeaderClose', match);
1804
+ if (this.ast) { //#ifdef FULL_AST
1805
+ match.twin = lhp;
1806
+ match.statementHeaderStop = true;
1807
+ lhp.twin = match;
1808
+
1809
+ if (stack[stack.length-1].desc == 'expressions') {
1810
+ // create ref to this expression group to the opening bracket
1811
+ lhp.expressionArg = stack[stack.length-1];
1812
+ }
1813
+ } //#endif
1814
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1815
+ match = this.eatStatement(false, match, stack);
1816
+
1817
+ return match;
1818
+ },
1819
+ eatFunction: function(match, stack){
1820
+ var pe = new ZeParser.Error
1821
+ this.errorStack.push(pe);
1822
+ // ignore. browsers will accept it anyways
1823
+ var error = {start:match.stop,stop:match.stop,name:14/*error*/,error:pe};
1824
+ this.specialError(error, match, stack);
1825
+ // now try parsing a function declaration...
1826
+ match = this.eatFunctionDeclaration(match, stack);
1827
+
1828
+ return match;
1829
+ },
1830
+ eatLabelOrExpression: function(match, stack){
1831
+ if (this.ast) { //#ifdef FULL_AST
1832
+ var parentstack = stack;
1833
+
1834
+ stack = [];
1835
+ stack.desc = 'statement';
1836
+ stack.sub = 'expression';
1837
+ stack.nextBlack = match.tokposb;
1838
+ parentstack.push(stack);
1839
+ } //#endif
1840
+ // must be an expression or a labeled statement.
1841
+ // in order to prevent very weird return constructs, we'll first check the first match
1842
+ // if that's an identifier, we'll gobble it here and move on to the second.
1843
+ // if that's a colon, we'll gobble it as a labeled statement. otherwise, we'll pass on
1844
+ // control to eatExpression, with the note that we've already gobbled a
1845
+
1846
+ match = this.eatExpressions(true, match, stack);
1847
+ // if we parsed a label, the returned match (colon) will have this property
1848
+ if (match.wasLabel) {
1849
+ if (this.ast) { //#ifdef FULL_AST
1850
+ stack.sub = 'labeled';
1851
+ } //#endif
1852
+ // it will have already eaten another statement for the label
1853
+ } else {
1854
+ if (this.ast) { //#ifdef FULL_AST
1855
+ stack.sub = 'expression';
1856
+ } //#endif
1857
+ // only parse semi if we didnt parse a label just now...
1858
+ match = this.eatSemiColon(match, stack);
1859
+ }
1860
+
1861
+ return match;
1862
+ },
1863
+ eatBlock: function(match, stack){
1864
+ if (this.ast) { //#ifdef FULL_AST
1865
+ stack.sub = 'block';
1866
+ var lhc = match;
1867
+ } //#endif
1868
+
1869
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1870
+
1871
+ if (match.value == '}') {
1872
+ if (this.ast) { //#ifdef FULL_AST
1873
+ stack.isEmptyBlock = true;
1874
+ } //#endif
1875
+ } else {
1876
+ match = this.eatStatements(match, stack);
1877
+ }
1878
+ if (match.value != '}') match = this.failsafe('BlockCurlyClose', match);
1879
+ if (this.ast) { //#ifdef FULL_AST
1880
+ match.twin = lhc;
1881
+ lhc.twin = match;
1882
+ } //#endif
1883
+ match = this.tokenizer.storeCurrentAndFetchNextToken(false, match, stack);
1884
+
1885
+ return match;
1886
+ },
1887
+
1888
+ eatStatements: function(match, stack){
1889
+ //this.stats.eatStatements = (+//this.stats.eatStatements||0)+1;
1890
+ // detecting the start of a statement "quickly" is virtually impossible.
1891
+ // instead we keep eating statements until the match stops changing
1892
+ // the first argument indicates that the statement is optional. if that
1893
+ // statement was not found, the input match will also be the output.
1894
+
1895
+ while (match != (match = this.eatStatement(true, match, stack)));
1896
+ return match;
1897
+ },
1898
+ eatStatement: function(isOptional, match, stack){
1899
+ if (!match && isOptional) return match; // eof
1900
+
1901
+ if (this.ast) { //#ifdef FULL_AST
1902
+ match.statementStart = true;
1903
+ var pstack = stack;
1904
+ stack = [];
1905
+ stack.desc = 'statement-parent';
1906
+ stack.nextBlack = match.tokposb;
1907
+ pstack.push(stack);
1908
+
1909
+ // list of labels, these are bound to statements (and can access any label higher up, but not cross functions)
1910
+ var labelBackup = this.statementLabels;
1911
+ this.statementLabels = [labelBackup]; // make ref like tree. we need this to catch labels parsed beyond the current position (not yet known to use)
1912
+ stack.labels = this.statementLabels;
1913
+ } //#endif
1914
+
1915
+ if (match.name == 2/*IDENTIFIER*/) {
1916
+ // try to determine whether it's a statement
1917
+ // (block/empty statements come later, this branch is only for identifiers)
1918
+ switch (match.value) {
1919
+ case 'var':
1920
+ match = this.eatVar(match, stack);
1921
+ break;
1922
+ case 'if':
1923
+ match = this.eatIf(match, stack);
1924
+ break;
1925
+ case 'do':
1926
+ match = this.eatDo(match, stack);
1927
+ break;
1928
+ case 'while':
1929
+ match = this.eatWhile(match, stack);
1930
+ break;
1931
+ case 'for':
1932
+ match = this.eatFor(match, stack);
1933
+ break;
1934
+ case 'continue':
1935
+ match = this.eatContinue(match, stack);
1936
+ break;
1937
+ case 'break':
1938
+ match = this.eatBreak(match, stack);
1939
+ break;
1940
+ case 'return':
1941
+ match = this.eatReturn(match, stack);
1942
+ break;
1943
+ case 'throw':
1944
+ match = this.eatThrow(match, stack);
1945
+ break;
1946
+ case 'switch':
1947
+ match = this.eatSwitch(match, stack);
1948
+ break;
1949
+ case 'try':
1950
+ match = this.eatTryCatchFinally(match, stack);
1951
+ break;
1952
+ case 'debugger':
1953
+ match = this.eatDebugger(match, stack);
1954
+ break;
1955
+ case 'with':
1956
+ match = this.eatWith(match, stack);
1957
+ break;
1958
+ case 'function':
1959
+ // I'm not sure whether this is at all possible.... (but it's bad, either way ;)
1960
+ // so add an error token, but parse the function as if it was a declaration.
1961
+ this.failignore('StatementMayNotStartWithFunction', match, stack);
1962
+
1963
+ // now parse as declaration... (most likely?)
1964
+ match = this.eatFunctionDeclaration(match, stack);
1965
+
1966
+ break;
1967
+ default: // either a label or an expression-statement
1968
+ match = this.eatLabelOrExpression(match, stack);
1969
+ }
1970
+ } else if (match.value == '{') { // Block (make sure you do this before checking for expression...)
1971
+ match = this.eatBlock(match, stack);
1972
+ } else if (
1973
+ // expression statements:
1974
+ match.isString ||
1975
+ match.isNumber ||
1976
+ match.name == 1/*REG_EX*/ ||
1977
+ this.regexLhsStart.test(match.value)
1978
+ ) {
1979
+ match = this.eatExpressions(false, match,stack);
1980
+ match = this.eatSemiColon(match, stack);
1981
+ } else if (match.value == ';') { // empty statement
1982
+ match.emptyStatement = true;
1983
+ match = this.eatSemiColon(match, stack);
1984
+ } else if (!isOptional) {
1985
+ if (this.ast) { //#ifdef FULL_AST
1986
+ // unmark token as being start of a statement, since it's obviously not
1987
+ match.statementStart = false;
1988
+ } //#endif
1989
+ match = this.failsafe('UnableToParseStatement', match);
1990
+ } else {
1991
+ // unmark token as being start of a statement, since it's obviously not
1992
+ if (this.ast) match.statementStart = true;
1993
+ }
1994
+
1995
+ if (this.ast) { //#ifdef FULL_AST
1996
+ if (!stack.length) pstack.length = pstack.length-1;
1997
+
1998
+ // restore label set
1999
+ this.statementLabels = labelBackup;
2000
+ } //#endif
2001
+
2002
+ return match;
2003
+ },
2004
+
2005
+ eatSourceElements: function(match, stack){
2006
+ //this.stats.eatSourceElements = (+//this.stats.eatSourceElements||0)+1;
2007
+ // detecting the start of a statement "quickly" is virtually impossible.
2008
+ // instead we keep eating statements until the match stops changing
2009
+ // the first argument indicates that the statement is optional. if that
2010
+ // statement was not found, the input match will also be the output.
2011
+ while (match != oldMatch) { // difficult to determine whether ` && match.name != 12/*EOF*/` is actually speeding things up. it's an extra check vs one less call to eatStatement...
2012
+ var oldMatch = match;
2013
+ // always try to eat function declaration first. otherwise 'function' at the start might cause eatStatement to throw up
2014
+ if (match.value == 'function') match = this.eatFunctionDeclaration(match, stack);
2015
+ else match = this.eatStatement(true, match, stack);
2016
+ }
2017
+ return match;
2018
+ },
2019
+
2020
+ failsafe: function(name, match, doNotAddMatch){
2021
+ var pe = new ZeParser.Error(name, match);
2022
+ this.errorStack.push(pe);
2023
+
2024
+ if (!doNotAddMatch) {
2025
+ // the match was bad, but add it to the ast anyways. in most cases this is the case but in some its not.
2026
+ // the tokenizer will pick up on the errorEscape property and add it after the match we passed on.
2027
+ if (this.tokenizer.errorEscape) this.stack.push(this.tokenizer.errorEscape);
2028
+ this.tokenizer.errorEscape = match;
2029
+ }
2030
+ var error = {start:match.start,stop:match.start,len:0, name:14/*error*/,error:pe, value:''};
2031
+ this.tokenizer.addTokenToStreamBefore(error, match);
2032
+ return error;
2033
+ },
2034
+ failignore: function(name, match, stack){
2035
+ var pe = new ZeParser.Error(name, match);
2036
+ this.errorStack.push(pe);
2037
+ // ignore the error (this will screw up :)
2038
+ var error = {start:match.start,stop:match.start,len:0,name:14/*error*/,error:pe, value:''};
2039
+ stack.push(error);
2040
+ this.tokenizer.addTokenToStreamBefore(error, match);
2041
+ },
2042
+ failSpecial: function(error, match, stack){
2043
+ // we cant really ignore this. eat the token
2044
+ stack.push(error);
2045
+ this.tokenizer.addTokenToStreamBefore(error, match);
2046
+ },
2047
+
2048
+ 0:0};
2049
+
2050
+ //#ifdef TEST_SUITE
2051
+ ZeParser.testSuite = function(tests){
2052
+ var ok = 0;
2053
+ var fail = 0;
2054
+ var start = +new Date;
2055
+ for (var i = 0; i < tests.length; ++i) {
2056
+ var test = tests[i], input = test[0], desc = test[test.length - 1], stack = [];
2057
+ try {
2058
+ new ZeParser(input, new Tokenizer(input), stack).parse();
2059
+ ++ok;
2060
+ } catch (e) {
2061
+ ++fail;
2062
+ }
2063
+ document.getElementsByTagName('div')[0].innerHTML = ('Ze parser test suite finished ('+(+new Date - start)+' ms). ok:'+ok+', fail:'+fail);
2064
+ };
2065
+ };
2066
+ //#endif
2067
+
2068
+ ZeParser.regexLhsStart = /[\+\-\~\!\(\{\[]/;
2069
+ /*
2070
+ ZeParser.regexStartKeyword = /[bcdefinrstvw]/;
2071
+ ZeParser.regexKeyword = /^break$|^catch$|^continue$|^debugger$|^default$|^delete$|^do$|^else$|^finally$|^for$|^function$|^if$|^in$|^instanceof$|^new$|^return$|^switch$|^this$|^throw$|^try$|^typeof$|^var$|^void$|^while$|^with$/;
2072
+ ZeParser.regexStartReserved = /[ceis]/;
2073
+ ZeParser.regexReserved = /^class$|^const$|^enum$|^export$|^extends$|^import$|^super$/;
2074
+ */
2075
+ ZeParser.regexStartKeyOrReserved = /[bcdefinrstvw]/;
2076
+ ZeParser.hashStartKeyOrReserved = Object.create ? Object.create(null, {b:{value:1},c:{value:1},d:{value:1},e:{value:1},f:{value:1},i:{value:1},n:{value:1},r:{value:1},s:{value:1},t:{value:1},v:{value:1},w:{value:1}}) : {b:1,c:1,d:1,e:1,f:1,i:1,n:1,r:1,s:1,t:1,v:1,w:1};
2077
+ ZeParser.regexIsKeywordOrReserved = /^break$|^catch$|^continue$|^debugger$|^default$|^delete$|^do$|^else$|^finally$|^for$|^function$|^if$|^in$|^instanceof$|^new$|^return$|^switch$|^case$|^this$|^true$|^false$|^null$|^throw$|^try$|^typeof$|^var$|^void$|^while$|^with$|^class$|^const$|^enum$|^export$|^extends$|^import$|^super$/;
2078
+ ZeParser.regexAssignments = /^[\+\-\*\%\&\|\^\/]?=$|^\<\<\=$|^\>{2,3}\=$/;
2079
+ ZeParser.regexNonAssignmentBinaryExpressionOperators = /^[\+\-\*\%\|\^\&\?\/]$|^[\<\>]\=?$|^[\=\!]\=\=?$|^\<\<|\>\>\>?$|^\&\&$|^\|\|$/;
2080
+ ZeParser.regexUnaryKeywords = /^delete$|^void$|^typeof$|^new$/;
2081
+ ZeParser.hashUnaryKeywordStart = Object.create ? Object.create(null, {d:{value:1},v:{value:1},t:{value:1},n:{value:1}}) : {d:1,v:1,t:1,n:1};
2082
+ ZeParser.regexUnaryOperators = /[\+\-\~\!]/;
2083
+ ZeParser.regexLiteralKeywords = /^this$|^null$|^true$|^false$/;
2084
+
2085
+ ZeParser.Error = function(type, match){
2086
+ //if (type == 'BreakOrContinueArgMustBeJustIdentifier') throw here;
2087
+ this.msg = ZeParser.Errors[type].msg;
2088
+ this.before = ZeParser.Errors[type].before;
2089
+ this.match = match;
2090
+ };
2091
+
2092
+ ZeParser.Errors = {
2093
+ NoASI: {msg:'Expected semi-colon, was unable to apply ASI'},
2094
+ ExpectedAnotherExpressionComma: {msg:'expecting another (left hand sided) expression after the comma'},
2095
+ ExpectedAnotherExpressionRhs: {msg:"expected a rhs expression"},
2096
+ UnclosedGroupingOperator: {msg:"Unclosed grouping operator"},
2097
+ GroupingShouldStartWithExpression: {msg:'The grouping operator (`(`) should start with a left hand sided expression'},
2098
+ ArrayShouldStartWithExpression: {msg:'The array literal (`[`) should start with a left hand sided expression'},
2099
+ UnclosedPropertyBracket: {msg:'Property bracket was not closed after expression (expecting `]`)'},
2100
+ IllegalPropertyNameToken: {msg:'Object literal property names can only be assigned as strings, numbers or identifiers'},
2101
+ IllegalGetterSetterNameToken: {msg:'Name of a getter/setter can only be assigned as strings, numbers or identifiers'},
2102
+ GetterSetterNameFollowedByOpenParen: {msg:'The name of the getter/setter should immediately be followed by the opening parenthesis `(`'},
2103
+ GetterHasNoArguments: {msg:'The opening parenthesis `(` of the getter should be immediately followed by the closing parenthesis `)`, the getter cannot have an argument'},
2104
+ IllegalSetterArgumentNameToken: {msg:'Expecting the name of the argument of a setter, can only be assigned as strings, numbers or identifiers'},
2105
+ SettersOnlyGetOneArgument: {msg:'Setters have one and only one argument, missing the closing parenthesis `)`'},
2106
+ SetterHeaderShouldHaveClosingParen: {msg:'After the first argument of a setter should come a closing parenthesis `)`'},
2107
+ SettersMustHaveArgument: {msg:'Setters must have exactly one argument defined'},
2108
+ UnclosedObjectLiteral: {msg:'Expected to find a comma `,` for the next expression or a closing curly brace `}` to end the object literal'},
2109
+ FunctionNameMustNotBeReserved: {msg:'Function name may not be a keyword or a reserved word'},
2110
+ ExpressionMayNotStartWithKeyword: {msg:'Expressions may not start with keywords or reserved words that are not in this list: [this, null, true, false, void, typeof, delete, new]'},
2111
+ LabelsMayOnlyBeIdentifiers: {msg:'Label names may only be defined as an identifier'},
2112
+ LabelsMayNotBeReserved: {msg:'Labels may not be a keyword or a reserved word'},
2113
+ UnknownToken: {msg:'Unknown token encountered, dont know how to proceed'},
2114
+ PropertyNamesMayOnlyBeIdentifiers: {msg:'The tokens of property names accessed through the dot operator may only be identifiers'},
2115
+ SquareBracketExpectsExpression: {msg:'The square bracket property access expects an expression'},
2116
+ SquareBracketsMayNotBeEmpty: {msg:'Square brackets may never be empty, expecting an expression'},
2117
+ UnclosedSquareBrackets: {msg:'Unclosed square bracket encountered, was expecting `]` after the expression'},
2118
+ UnclosedCallParens: {msg:'Unclosed call parenthesis, expecting `)` after the optional expression'},
2119
+ InvalidCenterTernaryExpression: {msg:'Center expression of ternary operator should be a regular expression (but may not contain the comma operator directly)'},
2120
+ UnfinishedTernaryOperator: {msg:'Encountered a ternary operator start (`?`) but did not find the required colon (`:`) after the center expression'},
2121
+ TernarySecondExpressionCanNotContainComma: {msg:'The second and third expressions of the ternary operator can/may not "directly" contain a comma operator'},
2122
+ InvalidRhsExpression: {msg:'Expected a right hand side expression after the operator (which should also be a valid lhs) but did not find one'},
2123
+ FunctionDeclarationsMustHaveName: {msg:'Function declaration must have name'},
2124
+ FunctionNameMayNotBeReserved: {msg:'Function name may not be a keyword or reserved word'},
2125
+ ExpectingFunctionHeaderStart: {msg:'Expected the opening parenthesis of the function header'},
2126
+ FunctionArgumentsCanNotBeReserved: {msg:'Function arguments may not be keywords or reserved words'},
2127
+ FunctionParametersMustBeIdentifiers: {msg:'Function arguments must be identifiers'},
2128
+ ExpectedFunctionHeaderClose: {msg:'Expected the closing parenthesis `)` of the function header'},
2129
+ ExpectedFunctionBodyCurlyOpen: {msg:'Expected the opening curly brace `{` for the function body'},
2130
+ ExpectedFunctionBodyCurlyClose: {msg:'Expected the closing curly brace `}` for the function body'},
2131
+ VarNamesMayOnlyBeIdentifiers: {msg:'Missing variable name, must be a proper identifier'},
2132
+ VarNamesCanNotBeReserved: {msg:'Variable names may not be keywords or reserved words'},
2133
+ VarInitialiserExpressionExpected: {msg:'The initialiser of the variable statement should be an expression without comma'},
2134
+ ExpectedStatementHeaderOpen: {msg:'Expected opening parenthesis `(` for statement header'},
2135
+ StatementHeaderIsNotOptional: {msg:'Statement header must not be empty'},
2136
+ ExpectedStatementHeaderClose: {msg:'Expected closing parenthesis `)` for statement header'},
2137
+ DoShouldBeFollowedByWhile: {msg:'The do-while statement requires the `while` keyword after the expression'},
2138
+ ExpectedSecondSemiOfForHeader: {msg:'Expected the second semi-colon of the for-each header'},
2139
+ ForHeaderShouldHaveSemisOrIn: {msg:'The for-header should contain at least the `in` operator or two semi-colons (`;`)'},
2140
+ SwitchBodyStartsWithCurly: {msg:'The body of a switch statement starts with a curly brace `{`'},
2141
+ SwitchClausesEndWithColon: {msg:'Switch clauses (`case` and `default`) end with a colon (`:`)'},
2142
+ SwitchCannotHaveDoubleDefault: {msg:'Switches cannot have more than one `default` clause'},
2143
+ SwitchBodyEndsWithCurly: {msg:'The body of a switch statement ends with a curly brace `}`'},
2144
+ MissingTryBlockCurlyOpen: {msg:'Missing the opening curly brace (`{`) for the block of the try statement'},
2145
+ MissingTryBlockCurlyClose: {msg:'Missing the closing curly brace (`}`) for the block of the try statement'},
2146
+ CatchHeaderMissingOpen: {msg:'Missing the opening parenthesis of the catch header'},
2147
+ MissingCatchParameter: {msg:'Catch clauses should have exactly one argument which will be bound to the error object being thrown'},
2148
+ CatchParameterNameMayNotBeReserved: {msg:'Catch clause parameter may not be a keyword or reserved word'},
2149
+ CatchHeaderMissingClose: {msg:'Missing the closing parenthesis of the catch header'},
2150
+ MissingCatchBlockCurlyOpen: {msg:'Missing the opening curly brace (`{`) for the block of the catch statement'},
2151
+ MissingCatchBlockCurlyClose: {msg:'Missing the closing curly brace (`}`) for the block of the catch statement'},
2152
+ MissingFinallyBlockCurlyOpen: {msg:'Missing the opening curly brace (`{`) for the block of the finally statement'},
2153
+ MissingFinallyBlockCurlyClose: {msg:'Missing the closing curly brace (`}`) for the block of the finally statement'},
2154
+ StatementMayNotStartWithFunction: {msg:'statements may not start with function...', before:true},
2155
+ BlockCurlyClose: {msg:'Expected the closing curly (`}`) for a block statement'},
2156
+ BlockCurlyOpen: {msg:'Expected the closing curly (`}`) for a block statement'},
2157
+ UnableToParseStatement: {msg:'Was unable to find a statement when it was requested'},
2158
+ IllegalDoubleCommaInObjectLiteral: {msg:'A double comma in object literals is not allowed'},
2159
+ ObjectLiteralExpectsColonAfterName: {msg:'After every property name (identifier, string or number) a colon (`:`) should follow'},
2160
+ ThrowMustHaveArgument: {msg:'The expression argument for throw is not optional'},
2161
+ ThrowCannotHaveReturn: {msg:'There may not be a return between throw and the start of its expression argument'},
2162
+ SwitchBodyMustStartWithClause: {msg:'The body of a switch clause must start with at a case or default clause (but may be empty, which would be silly)'},
2163
+ BreakOrContinueArgMustBeJustIdentifier: {msg:'The argument to a break or continue statement must be exactly and only an identifier (an existing label)'},
2164
+ AssignmentNotAllowedAfterNonAssignmentInExpression: {msg:'An assignment is not allowed if it is preceeded by a non-expression operator in the same expression-level'},
2165
+ IllegalLhsForAssignment: {msg:'Illegal left hand side for assignment (you cannot assign to things like string literals, number literals or function calls}'},
2166
+ VarKeywordMissingName: {msg:'Var keyword should be followed by a variable name'},
2167
+ IllegalTrailingComma: {msg:'Illegal trailing comma found'},
2168
+ ObjectLiteralMissingPropertyValue: {msg:'Missing object literal property value'},
2169
+ TokenizerError: {msg:'Tokenizer encountered unexpected input'},
2170
+ LabelRequiresStatement: {msg:'Saw a label without the (required) statement following'},
2171
+ DidNotExpectElseHere: {msg:'Did not expect an else here. To what if should it belong? Maybe you put a ; after the if-block? (if(x){};else{})'},
2172
+ UnexpectedToken: {msg:'Found an unexpected token and have no idea why'},
2173
+ InvalidPostfixOperandArray: {msg:'You cannot apply ++ or -- to an array'},
2174
+ InvalidPostfixOperandObject: {msg:'You cannot apply ++ or -- to an object'},
2175
+ InvalidPostfixOperandFunction: {msg:'You cannot apply ++ or -- to a function'},
2176
+ CaseMissingExpression: {msg:'Case expects an expression before the colon'},
2177
+ TryMustHaveCatchOrFinally: {msg:'The try statement must have a catch or finally block'},
2178
+ UnexpectedInputSwitch: {msg:'Unexpected input while parsing a switch clause...'},
2179
+ ForInCanOnlyDeclareOnVar: {msg:'For-in header can only introduce one new variable'}
2180
+ };