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,181 @@
1
+ var tap = require('tap');
2
+ var test = tap.test;
3
+ var semver = require('../semver.js');
4
+ var ltr = semver.ltr;
5
+
6
+ test('\nltr tests', function(t) {
7
+ // [range, version, loose]
8
+ // Version should be less than range
9
+ [
10
+ ['~1.2.2', '1.2.1'],
11
+ ['~0.6.1-1', '0.6.1-0'],
12
+ ['1.0.0 - 2.0.0', '0.0.1'],
13
+ ['1.0.0-beta.2', '1.0.0-beta.1'],
14
+ ['1.0.0', '0.0.0'],
15
+ ['>=2.0.0', '1.1.1'],
16
+ ['>=2.0.0', '1.2.9'],
17
+ ['>2.0.0', '2.0.0'],
18
+ ['0.1.20 || 1.2.4', '0.1.5'],
19
+ ['2.x.x', '1.0.0'],
20
+ ['1.2.x', '1.1.0'],
21
+ ['1.2.x || 2.x', '1.0.0'],
22
+ ['2.*.*', '1.0.1'],
23
+ ['1.2.*', '1.1.3'],
24
+ ['1.2.* || 2.*', '1.1.9999'],
25
+ ['2', '1.0.0'],
26
+ ['2.3', '2.2.2'],
27
+ ['~2.4', '2.3.0'], // >=2.4.0 <2.5.0
28
+ ['~2.4', '2.3.5'],
29
+ ['~>3.2.1', '3.2.0'], // >=3.2.1 <3.3.0
30
+ ['~1', '0.2.3'], // >=1.0.0 <2.0.0
31
+ ['~>1', '0.2.4'],
32
+ ['~> 1', '0.2.3'],
33
+ ['~1.0', '0.1.2'], // >=1.0.0 <1.1.0
34
+ ['~ 1.0', '0.1.0'],
35
+ ['>1.2', '1.2.0'],
36
+ ['> 1.2', '1.2.1'],
37
+ ['1', '0.0.0beta', true],
38
+ ['~v0.5.4-pre', '0.5.4-alpha'],
39
+ ['~v0.5.4-pre', '0.5.4-alpha'],
40
+ ['=0.7.x', '0.6.0'],
41
+ ['=0.7.x', '0.6.0-asdf'],
42
+ ['>=0.7.x', '0.6.0'],
43
+ ['~1.2.2', '1.2.1'],
44
+ ['1.0.0 - 2.0.0', '0.2.3'],
45
+ ['1.0.0', '0.0.1'],
46
+ ['>=2.0.0', '1.0.0'],
47
+ ['>=2.0.0', '1.9999.9999'],
48
+ ['>=2.0.0', '1.2.9'],
49
+ ['>2.0.0', '2.0.0'],
50
+ ['>2.0.0', '1.2.9'],
51
+ ['2.x.x', '1.1.3'],
52
+ ['1.2.x', '1.1.3'],
53
+ ['1.2.x || 2.x', '1.1.3'],
54
+ ['2.*.*', '1.1.3'],
55
+ ['1.2.*', '1.1.3'],
56
+ ['1.2.* || 2.*', '1.1.3'],
57
+ ['2', '1.9999.9999'],
58
+ ['2.3', '2.2.1'],
59
+ ['~2.4', '2.3.0'], // >=2.4.0 <2.5.0
60
+ ['~>3.2.1', '2.3.2'], // >=3.2.1 <3.3.0
61
+ ['~1', '0.2.3'], // >=1.0.0 <2.0.0
62
+ ['~>1', '0.2.3'],
63
+ ['~1.0', '0.0.0'], // >=1.0.0 <1.1.0
64
+ ['>1', '1.0.0'],
65
+ ['2', '1.0.0beta', true],
66
+ ['>1', '1.0.0beta', true],
67
+ ['> 1', '1.0.0beta', true],
68
+ ['=0.7.x', '0.6.2'],
69
+ ['=0.7.x', '0.7.0-asdf'],
70
+ ['^1', '1.0.0-0'],
71
+ ['>=0.7.x', '0.7.0-asdf'],
72
+ ['1', '1.0.0beta', true],
73
+ ['>=0.7.x', '0.6.2']
74
+ ].forEach(function(tuple) {
75
+ var range = tuple[0];
76
+ var version = tuple[1];
77
+ var loose = tuple[2] || false;
78
+ var msg = 'ltr(' + version + ', ' + range + ', ' + loose + ')';
79
+ t.ok(ltr(version, range, loose), msg);
80
+ });
81
+ t.end();
82
+ });
83
+
84
+ test('\nnegative ltr tests', function(t) {
85
+ // [range, version, loose]
86
+ // Version should NOT be greater than range
87
+ [
88
+ ['~ 1.0', '1.1.0'],
89
+ ['~0.6.1-1', '0.6.1-1'],
90
+ ['1.0.0 - 2.0.0', '1.2.3'],
91
+ ['1.0.0 - 2.0.0', '2.9.9'],
92
+ ['1.0.0', '1.0.0'],
93
+ ['>=*', '0.2.4'],
94
+ ['', '1.0.0', true],
95
+ ['*', '1.2.3'],
96
+ ['*', 'v1.2.3-foo'],
97
+ ['>=1.0.0', '1.0.0'],
98
+ ['>=1.0.0', '1.0.1'],
99
+ ['>=1.0.0', '1.1.0'],
100
+ ['>1.0.0', '1.0.1'],
101
+ ['>1.0.0', '1.1.0'],
102
+ ['<=2.0.0', '2.0.0'],
103
+ ['<=2.0.0', '1.9999.9999'],
104
+ ['<=2.0.0', '0.2.9'],
105
+ ['<2.0.0', '1.9999.9999'],
106
+ ['<2.0.0', '0.2.9'],
107
+ ['>= 1.0.0', '1.0.0'],
108
+ ['>= 1.0.0', '1.0.1'],
109
+ ['>= 1.0.0', '1.1.0'],
110
+ ['> 1.0.0', '1.0.1'],
111
+ ['> 1.0.0', '1.1.0'],
112
+ ['<= 2.0.0', '2.0.0'],
113
+ ['<= 2.0.0', '1.9999.9999'],
114
+ ['<= 2.0.0', '0.2.9'],
115
+ ['< 2.0.0', '1.9999.9999'],
116
+ ['<\t2.0.0', '0.2.9'],
117
+ ['>=0.1.97', 'v0.1.97'],
118
+ ['>=0.1.97', '0.1.97'],
119
+ ['0.1.20 || 1.2.4', '1.2.4'],
120
+ ['0.1.20 || >1.2.4', '1.2.4'],
121
+ ['0.1.20 || 1.2.4', '1.2.3'],
122
+ ['0.1.20 || 1.2.4', '0.1.20'],
123
+ ['>=0.2.3 || <0.0.1', '0.0.0'],
124
+ ['>=0.2.3 || <0.0.1', '0.2.3'],
125
+ ['>=0.2.3 || <0.0.1', '0.2.4'],
126
+ ['||', '1.3.4'],
127
+ ['2.x.x', '2.1.3'],
128
+ ['1.2.x', '1.2.3'],
129
+ ['1.2.x || 2.x', '2.1.3'],
130
+ ['1.2.x || 2.x', '1.2.3'],
131
+ ['x', '1.2.3'],
132
+ ['2.*.*', '2.1.3'],
133
+ ['1.2.*', '1.2.3'],
134
+ ['1.2.* || 2.*', '2.1.3'],
135
+ ['1.2.* || 2.*', '1.2.3'],
136
+ ['1.2.* || 2.*', '1.2.3'],
137
+ ['*', '1.2.3'],
138
+ ['2', '2.1.2'],
139
+ ['2.3', '2.3.1'],
140
+ ['~2.4', '2.4.0'], // >=2.4.0 <2.5.0
141
+ ['~2.4', '2.4.5'],
142
+ ['~>3.2.1', '3.2.2'], // >=3.2.1 <3.3.0
143
+ ['~1', '1.2.3'], // >=1.0.0 <2.0.0
144
+ ['~>1', '1.2.3'],
145
+ ['~> 1', '1.2.3'],
146
+ ['~1.0', '1.0.2'], // >=1.0.0 <1.1.0
147
+ ['~ 1.0', '1.0.2'],
148
+ ['>=1', '1.0.0'],
149
+ ['>= 1', '1.0.0'],
150
+ ['<1.2', '1.1.1'],
151
+ ['< 1.2', '1.1.1'],
152
+ ['~v0.5.4-pre', '0.5.5'],
153
+ ['~v0.5.4-pre', '0.5.4'],
154
+ ['=0.7.x', '0.7.2'],
155
+ ['>=0.7.x', '0.7.2'],
156
+ ['<=0.7.x', '0.6.2'],
157
+ ['>0.2.3 >0.2.4 <=0.2.5', '0.2.5'],
158
+ ['>=0.2.3 <=0.2.4', '0.2.4'],
159
+ ['1.0.0 - 2.0.0', '2.0.0'],
160
+ ['^3.0.0', '4.0.0'],
161
+ ['^1.0.0 || ~2.0.1', '2.0.0'],
162
+ ['^0.1.0 || ~3.0.1 || 5.0.0', '3.2.0'],
163
+ ['^0.1.0 || ~3.0.1 || 5.0.0', '1.0.0beta', true],
164
+ ['^0.1.0 || ~3.0.1 || 5.0.0', '5.0.0-0', true],
165
+ ['^0.1.0 || ~3.0.1 || >4 <=5.0.0', '3.5.0'],
166
+ ['^1.0.0alpha', '1.0.0beta', true],
167
+ ['~1.0.0alpha', '1.0.0beta', true],
168
+ ['^1.0.0-alpha', '1.0.0beta', true],
169
+ ['~1.0.0-alpha', '1.0.0beta', true],
170
+ ['^1.0.0-alpha', '1.0.0-beta'],
171
+ ['~1.0.0-alpha', '1.0.0-beta'],
172
+ ['=0.1.0', '1.0.0']
173
+ ].forEach(function(tuple) {
174
+ var range = tuple[0];
175
+ var version = tuple[1];
176
+ var loose = tuple[2] || false;
177
+ var msg = '!ltr(' + version + ', ' + range + ', ' + loose + ')';
178
+ t.notOk(ltr(version, range, loose), msg);
179
+ });
180
+ t.end();
181
+ });
@@ -0,0 +1,72 @@
1
+ var tap = require('tap');
2
+ var test = tap.test;
3
+ var semver = require('../semver.js');
4
+
5
+ test('\nmajor tests', function(t) {
6
+ // [range, version]
7
+ // Version should be detectable despite extra characters
8
+ [
9
+ ['1.2.3', 1],
10
+ [' 1.2.3 ', 1],
11
+ [' 2.2.3-4 ', 2],
12
+ [' 3.2.3-pre ', 3],
13
+ ['v5.2.3', 5],
14
+ [' v8.2.3 ', 8],
15
+ ['\t13.2.3', 13],
16
+ ['=21.2.3', 21, true],
17
+ ['v=34.2.3', 34, true]
18
+ ].forEach(function(tuple) {
19
+ var range = tuple[0];
20
+ var version = tuple[1];
21
+ var loose = tuple[2] || false;
22
+ var msg = 'major(' + range + ') = ' + version;
23
+ t.equal(semver.major(range, loose), version, msg);
24
+ });
25
+ t.end();
26
+ });
27
+
28
+ test('\nminor tests', function(t) {
29
+ // [range, version]
30
+ // Version should be detectable despite extra characters
31
+ [
32
+ ['1.1.3', 1],
33
+ [' 1.1.3 ', 1],
34
+ [' 1.2.3-4 ', 2],
35
+ [' 1.3.3-pre ', 3],
36
+ ['v1.5.3', 5],
37
+ [' v1.8.3 ', 8],
38
+ ['\t1.13.3', 13],
39
+ ['=1.21.3', 21, true],
40
+ ['v=1.34.3', 34, true]
41
+ ].forEach(function(tuple) {
42
+ var range = tuple[0];
43
+ var version = tuple[1];
44
+ var loose = tuple[2] || false;
45
+ var msg = 'minor(' + range + ') = ' + version;
46
+ t.equal(semver.minor(range, loose), version, msg);
47
+ });
48
+ t.end();
49
+ });
50
+
51
+ test('\npatch tests', function(t) {
52
+ // [range, version]
53
+ // Version should be detectable despite extra characters
54
+ [
55
+ ['1.2.1', 1],
56
+ [' 1.2.1 ', 1],
57
+ [' 1.2.2-4 ', 2],
58
+ [' 1.2.3-pre ', 3],
59
+ ['v1.2.5', 5],
60
+ [' v1.2.8 ', 8],
61
+ ['\t1.2.13', 13],
62
+ ['=1.2.21', 21, true],
63
+ ['v=1.2.34', 34, true]
64
+ ].forEach(function(tuple) {
65
+ var range = tuple[0];
66
+ var version = tuple[1];
67
+ var loose = tuple[2] || false;
68
+ var msg = 'patch(' + range + ') = ' + version;
69
+ t.equal(semver.patch(range, loose), version, msg);
70
+ });
71
+ t.end();
72
+ });
@@ -0,0 +1,19 @@
1
+ var tap = require('tap');
2
+ var test = tap.test;
3
+
4
+ test('no module system', function(t) {
5
+ var fs = require('fs');
6
+ var vm = require('vm');
7
+ var head = fs.readFileSync(require.resolve('../head.js.txt'), 'utf8');
8
+ var src = fs.readFileSync(require.resolve('../'), 'utf8');
9
+ var foot = fs.readFileSync(require.resolve('../foot.js.txt'), 'utf8');
10
+ vm.runInThisContext(head + src + foot, 'semver.js');
11
+
12
+ // just some basic poking to see if it did some stuff
13
+ t.type(global.semver, 'object');
14
+ t.type(global.semver.SemVer, 'function');
15
+ t.type(global.semver.Range, 'function');
16
+ t.ok(global.semver.satisfies('1.2.3', '1.2'));
17
+ t.end();
18
+ });
19
+
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative
2
+ Reporters & Editors
3
+
4
+ Permission is hereby granted, free of charge, to any person
5
+ obtaining a copy of this software and associated documentation
6
+ files (the "Software"), to deal in the Software without
7
+ restriction, including without limitation the rights to use,
8
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following
11
+ conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ __
2
+ /\ \ __
3
+ __ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____
4
+ /\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\
5
+ \ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\
6
+ \ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/
7
+ \/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/
8
+ \ \____/
9
+ \/___/
10
+
11
+ Underscore.js is a utility-belt library for JavaScript that provides
12
+ support for the usual functional suspects (each, map, reduce, filter...)
13
+ without extending any core JavaScript objects.
14
+
15
+ For Docs, License, Tests, and pre-packed downloads, see:
16
+ http://underscorejs.org
17
+
18
+ Underscore is an open-sourced component of DocumentCloud:
19
+ https://github.com/documentcloud
20
+
21
+ Many thanks to our contributors:
22
+ https://github.com/jashkenas/underscore/contributors
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "underscore",
3
+ "description": "JavaScript's functional programming helper library.",
4
+ "homepage": "http://underscorejs.org",
5
+ "keywords": [
6
+ "util",
7
+ "functional",
8
+ "server",
9
+ "client",
10
+ "browser"
11
+ ],
12
+ "author": {
13
+ "name": "Jeremy Ashkenas",
14
+ "email": "jeremy@documentcloud.org"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git://github.com/jashkenas/underscore.git"
19
+ },
20
+ "main": "underscore.js",
21
+ "version": "1.8.2",
22
+ "devDependencies": {
23
+ "docco": "*",
24
+ "eslint": "0.6.x",
25
+ "karma": "~0.12.31",
26
+ "karma-qunit": "~0.1.4",
27
+ "qunit-cli": "~0.2.0",
28
+ "uglify-js": "2.4.x"
29
+ },
30
+ "scripts": {
31
+ "test": "npm run test-node && npm run lint",
32
+ "lint": "eslint underscore.js test/*.js",
33
+ "test-node": "qunit-cli test/*.js",
34
+ "test-browser": "npm i karma-phantomjs-launcher && ./node_modules/karma/bin/karma start",
35
+ "build": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m --source-map underscore-min.map -o underscore-min.js",
36
+ "doc": "docco underscore.js"
37
+ },
38
+ "license": "MIT",
39
+ "files": [
40
+ "underscore.js",
41
+ "underscore-min.js",
42
+ "underscore-min.map",
43
+ "LICENSE"
44
+ ],
45
+ "gitHead": "19db749b190a7cb5a8b7ab1aab42c0e9dc517250",
46
+ "bugs": {
47
+ "url": "https://github.com/jashkenas/underscore/issues"
48
+ },
49
+ "_id": "underscore@1.8.2",
50
+ "_shasum": "64df2eb590899de950782f3735190ba42ebf311d",
51
+ "_from": "underscore@1.8.2",
52
+ "_npmVersion": "1.4.28",
53
+ "_npmUser": {
54
+ "name": "jashkenas",
55
+ "email": "jashkenas@gmail.com"
56
+ },
57
+ "maintainers": [
58
+ {
59
+ "name": "jashkenas",
60
+ "email": "jashkenas@gmail.com"
61
+ }
62
+ ],
63
+ "dist": {
64
+ "shasum": "64df2eb590899de950782f3735190ba42ebf311d",
65
+ "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.8.2.tgz"
66
+ },
67
+ "directories": {},
68
+ "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.2.tgz"
69
+ }
@@ -0,0 +1,6 @@
1
+ // Underscore.js 1.8.2
2
+ // http://underscorejs.org
3
+ // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
4
+ // Underscore may be freely distributed under the MIT license.
5
+ (function(){function n(n){function t(t,r,e,u,i,o){for(;i>=0&&o>i;i+=n){var a=u?u[i]:i;e=r(e,t[a],a,t)}return e}return function(r,e,u,i){e=d(e,i,4);var o=!w(r)&&m.keys(r),a=(o||r).length,c=n>0?0:a-1;return arguments.length<3&&(u=r[o?o[c]:c],c+=n),t(r,e,u,o,c,a)}}function t(n){return function(t,r,e){r=b(r,e);for(var u=null!=t&&t.length,i=n>0?0:u-1;i>=0&&u>i;i+=n)if(r(t[i],i,t))return i;return-1}}function r(n,t){var r=S.length,e=n.constructor,u=m.isFunction(e)&&e.prototype||o,i="constructor";for(m.has(n,i)&&!m.contains(t,i)&&t.push(i);r--;)i=S[r],i in n&&n[i]!==u[i]&&!m.contains(t,i)&&t.push(i)}var e=this,u=e._,i=Array.prototype,o=Object.prototype,a=Function.prototype,c=i.push,l=i.slice,f=o.toString,s=o.hasOwnProperty,p=Array.isArray,h=Object.keys,v=a.bind,g=Object.create,y=function(){},m=function(n){return n instanceof m?n:this instanceof m?void(this._wrapped=n):new m(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=m),exports._=m):e._=m,m.VERSION="1.8.2";var d=function(n,t,r){if(t===void 0)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 2:return function(r,e){return n.call(t,r,e)};case 3:return function(r,e,u){return n.call(t,r,e,u)};case 4:return function(r,e,u,i){return n.call(t,r,e,u,i)}}return function(){return n.apply(t,arguments)}},b=function(n,t,r){return null==n?m.identity:m.isFunction(n)?d(n,t,r):m.isObject(n)?m.matcher(n):m.property(n)};m.iteratee=function(n,t){return b(n,t,1/0)};var x=function(n,t){return function(r){var e=arguments.length;if(2>e||null==r)return r;for(var u=1;e>u;u++)for(var i=arguments[u],o=n(i),a=o.length,c=0;a>c;c++){var l=o[c];t&&r[l]!==void 0||(r[l]=i[l])}return r}},_=function(n){if(!m.isObject(n))return{};if(g)return g(n);y.prototype=n;var t=new y;return y.prototype=null,t},j=Math.pow(2,53)-1,w=function(n){var t=n&&n.length;return"number"==typeof t&&t>=0&&j>=t};m.each=m.forEach=function(n,t,r){t=d(t,r);var e,u;if(w(n))for(e=0,u=n.length;u>e;e++)t(n[e],e,n);else{var i=m.keys(n);for(e=0,u=i.length;u>e;e++)t(n[i[e]],i[e],n)}return n},m.map=m.collect=function(n,t,r){t=b(t,r);for(var e=!w(n)&&m.keys(n),u=(e||n).length,i=Array(u),o=0;u>o;o++){var a=e?e[o]:o;i[o]=t(n[a],a,n)}return i},m.reduce=m.foldl=m.inject=n(1),m.reduceRight=m.foldr=n(-1),m.find=m.detect=function(n,t,r){var e;return e=w(n)?m.findIndex(n,t,r):m.findKey(n,t,r),e!==void 0&&e!==-1?n[e]:void 0},m.filter=m.select=function(n,t,r){var e=[];return t=b(t,r),m.each(n,function(n,r,u){t(n,r,u)&&e.push(n)}),e},m.reject=function(n,t,r){return m.filter(n,m.negate(b(t)),r)},m.every=m.all=function(n,t,r){t=b(t,r);for(var e=!w(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(!t(n[o],o,n))return!1}return!0},m.some=m.any=function(n,t,r){t=b(t,r);for(var e=!w(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(t(n[o],o,n))return!0}return!1},m.contains=m.includes=m.include=function(n,t,r){return w(n)||(n=m.values(n)),m.indexOf(n,t,"number"==typeof r&&r)>=0},m.invoke=function(n,t){var r=l.call(arguments,2),e=m.isFunction(t);return m.map(n,function(n){var u=e?t:n[t];return null==u?u:u.apply(n,r)})},m.pluck=function(n,t){return m.map(n,m.property(t))},m.where=function(n,t){return m.filter(n,m.matcher(t))},m.findWhere=function(n,t){return m.find(n,m.matcher(t))},m.max=function(n,t,r){var e,u,i=-1/0,o=-1/0;if(null==t&&null!=n){n=w(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],e>i&&(i=e)}else t=b(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(u>o||u===-1/0&&i===-1/0)&&(i=n,o=u)});return i},m.min=function(n,t,r){var e,u,i=1/0,o=1/0;if(null==t&&null!=n){n=w(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],i>e&&(i=e)}else t=b(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(o>u||1/0===u&&1/0===i)&&(i=n,o=u)});return i},m.shuffle=function(n){for(var t,r=w(n)?n:m.values(n),e=r.length,u=Array(e),i=0;e>i;i++)t=m.random(0,i),t!==i&&(u[i]=u[t]),u[t]=r[i];return u},m.sample=function(n,t,r){return null==t||r?(w(n)||(n=m.values(n)),n[m.random(n.length-1)]):m.shuffle(n).slice(0,Math.max(0,t))},m.sortBy=function(n,t,r){return t=b(t,r),m.pluck(m.map(n,function(n,r,e){return{value:n,index:r,criteria:t(n,r,e)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||r===void 0)return 1;if(e>r||e===void 0)return-1}return n.index-t.index}),"value")};var A=function(n){return function(t,r,e){var u={};return r=b(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=A(function(n,t,r){m.has(n,r)?n[r].push(t):n[r]=[t]}),m.indexBy=A(function(n,t,r){n[r]=t}),m.countBy=A(function(n,t,r){m.has(n,r)?n[r]++:n[r]=1}),m.toArray=function(n){return n?m.isArray(n)?l.call(n):w(n)?m.map(n,m.identity):m.values(n):[]},m.size=function(n){return null==n?0:w(n)?n.length:m.keys(n).length},m.partition=function(n,t,r){t=b(t,r);var e=[],u=[];return m.each(n,function(n,r,i){(t(n,r,i)?e:u).push(n)}),[e,u]},m.first=m.head=m.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:m.initial(n,n.length-t)},m.initial=function(n,t,r){return l.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))},m.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:m.rest(n,Math.max(0,n.length-t))},m.rest=m.tail=m.drop=function(n,t,r){return l.call(n,null==t||r?1:t)},m.compact=function(n){return m.filter(n,m.identity)};var k=function(n,t,r,e){for(var u=[],i=0,o=e||0,a=n&&n.length;a>o;o++){var c=n[o];if(w(c)&&(m.isArray(c)||m.isArguments(c))){t||(c=k(c,t,r));var l=0,f=c.length;for(u.length+=f;f>l;)u[i++]=c[l++]}else r||(u[i++]=c)}return u};m.flatten=function(n,t){return k(n,t,!1)},m.without=function(n){return m.difference(n,l.call(arguments,1))},m.uniq=m.unique=function(n,t,r,e){if(null==n)return[];m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=b(r,e));for(var u=[],i=[],o=0,a=n.length;a>o;o++){var c=n[o],l=r?r(c,o,n):c;t?(o&&i===l||u.push(c),i=l):r?m.contains(i,l)||(i.push(l),u.push(c)):m.contains(u,c)||u.push(c)}return u},m.union=function(){return m.uniq(k(arguments,!0,!0))},m.intersection=function(n){if(null==n)return[];for(var t=[],r=arguments.length,e=0,u=n.length;u>e;e++){var i=n[e];if(!m.contains(t,i)){for(var o=1;r>o&&m.contains(arguments[o],i);o++);o===r&&t.push(i)}}return t},m.difference=function(n){var t=k(arguments,!0,!0,1);return m.filter(n,function(n){return!m.contains(t,n)})},m.zip=function(){return m.unzip(arguments)},m.unzip=function(n){for(var t=n&&m.max(n,"length").length||0,r=Array(t),e=0;t>e;e++)r[e]=m.pluck(n,e);return r},m.object=function(n,t){for(var r={},e=0,u=n&&n.length;u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},m.indexOf=function(n,t,r){var e=0,u=n&&n.length;if("number"==typeof r)e=0>r?Math.max(0,u+r):r;else if(r&&u)return e=m.sortedIndex(n,t),n[e]===t?e:-1;if(t!==t)return m.findIndex(l.call(n,e),m.isNaN);for(;u>e;e++)if(n[e]===t)return e;return-1},m.lastIndexOf=function(n,t,r){var e=n?n.length:0;if("number"==typeof r&&(e=0>r?e+r+1:Math.min(e,r+1)),t!==t)return m.findLastIndex(l.call(n,0,e),m.isNaN);for(;--e>=0;)if(n[e]===t)return e;return-1},m.findIndex=t(1),m.findLastIndex=t(-1),m.sortedIndex=function(n,t,r,e){r=b(r,e,1);for(var u=r(t),i=0,o=n.length;o>i;){var a=Math.floor((i+o)/2);r(n[a])<u?i=a+1:o=a}return i},m.range=function(n,t,r){arguments.length<=1&&(t=n||0,n=0),r=r||1;for(var e=Math.max(Math.ceil((t-n)/r),0),u=Array(e),i=0;e>i;i++,n+=r)u[i]=n;return u};var O=function(n,t,r,e,u){if(!(e instanceof t))return n.apply(r,u);var i=_(n.prototype),o=n.apply(i,u);return m.isObject(o)?o:i};m.bind=function(n,t){if(v&&n.bind===v)return v.apply(n,l.call(arguments,1));if(!m.isFunction(n))throw new TypeError("Bind must be called on a function");var r=l.call(arguments,2),e=function(){return O(n,e,t,this,r.concat(l.call(arguments)))};return e},m.partial=function(n){var t=l.call(arguments,1),r=function(){for(var e=0,u=t.length,i=Array(u),o=0;u>o;o++)i[o]=t[o]===m?arguments[e++]:t[o];for(;e<arguments.length;)i.push(arguments[e++]);return O(n,r,this,this,i)};return r},m.bindAll=function(n){var t,r,e=arguments.length;if(1>=e)throw new Error("bindAll must be passed function names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var r=function(e){var u=r.cache,i=""+(t?t.apply(this,arguments):e);return m.has(u,i)||(u[i]=n.apply(this,arguments)),u[i]};return r.cache={},r},m.delay=function(n,t){var r=l.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},m.defer=m.partial(m.delay,m,1),m.throttle=function(n,t,r){var e,u,i,o=null,a=0;r||(r={});var c=function(){a=r.leading===!1?0:m.now(),o=null,i=n.apply(e,u),o||(e=u=null)};return function(){var l=m.now();a||r.leading!==!1||(a=l);var f=t-(l-a);return e=this,u=arguments,0>=f||f>t?(o&&(clearTimeout(o),o=null),a=l,i=n.apply(e,u),o||(e=u=null)):o||r.trailing===!1||(o=setTimeout(c,f)),i}},m.debounce=function(n,t,r){var e,u,i,o,a,c=function(){var l=m.now()-o;t>l&&l>=0?e=setTimeout(c,t-l):(e=null,r||(a=n.apply(i,u),e||(i=u=null)))};return function(){i=this,u=arguments,o=m.now();var l=r&&!e;return e||(e=setTimeout(c,t)),l&&(a=n.apply(i,u),i=u=null),a}},m.wrap=function(n,t){return m.partial(t,n)},m.negate=function(n){return function(){return!n.apply(this,arguments)}},m.compose=function(){var n=arguments,t=n.length-1;return function(){for(var r=t,e=n[t].apply(this,arguments);r--;)e=n[r].call(this,e);return e}},m.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},m.before=function(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),1>=n&&(t=null),r}},m.once=m.partial(m.before,2);var F=!{toString:null}.propertyIsEnumerable("toString"),S=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];m.keys=function(n){if(!m.isObject(n))return[];if(h)return h(n);var t=[];for(var e in n)m.has(n,e)&&t.push(e);return F&&r(n,t),t},m.allKeys=function(n){if(!m.isObject(n))return[];var t=[];for(var e in n)t.push(e);return F&&r(n,t),t},m.values=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},m.mapObject=function(n,t,r){t=b(t,r);for(var e,u=m.keys(n),i=u.length,o={},a=0;i>a;a++)e=u[a],o[e]=t(n[e],e,n);return o},m.pairs=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},m.invert=function(n){for(var t={},r=m.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},m.functions=m.methods=function(n){var t=[];for(var r in n)m.isFunction(n[r])&&t.push(r);return t.sort()},m.extend=x(m.allKeys),m.extendOwn=m.assign=x(m.keys),m.findKey=function(n,t,r){t=b(t,r);for(var e,u=m.keys(n),i=0,o=u.length;o>i;i++)if(e=u[i],t(n[e],e,n))return e},m.pick=function(n,t,r){var e,u,i={},o=n;if(null==o)return i;m.isFunction(t)?(u=m.allKeys(o),e=d(t,r)):(u=k(arguments,!1,!1,1),e=function(n,t,r){return t in r},o=Object(o));for(var a=0,c=u.length;c>a;a++){var l=u[a],f=o[l];e(f,l,o)&&(i[l]=f)}return i},m.omit=function(n,t,r){if(m.isFunction(t))t=m.negate(t);else{var e=m.map(k(arguments,!1,!1,1),String);t=function(n,t){return!m.contains(e,t)}}return m.pick(n,t,r)},m.defaults=x(m.allKeys,!0),m.clone=function(n){return m.isObject(n)?m.isArray(n)?n.slice():m.extend({},n):n},m.tap=function(n,t){return t(n),n},m.isMatch=function(n,t){var r=m.keys(t),e=r.length;if(null==n)return!e;for(var u=Object(n),i=0;e>i;i++){var o=r[i];if(t[o]!==u[o]||!(o in u))return!1}return!0};var E=function(n,t,r,e){if(n===t)return 0!==n||1/n===1/t;if(null==n||null==t)return n===t;n instanceof m&&(n=n._wrapped),t instanceof m&&(t=t._wrapped);var u=f.call(n);if(u!==f.call(t))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+n==""+t;case"[object Number]":return+n!==+n?+t!==+t:0===+n?1/+n===1/t:+n===+t;case"[object Date]":case"[object Boolean]":return+n===+t}var i="[object Array]"===u;if(!i){if("object"!=typeof n||"object"!=typeof t)return!1;var o=n.constructor,a=t.constructor;if(o!==a&&!(m.isFunction(o)&&o instanceof o&&m.isFunction(a)&&a instanceof a)&&"constructor"in n&&"constructor"in t)return!1}r=r||[],e=e||[];for(var c=r.length;c--;)if(r[c]===n)return e[c]===t;if(r.push(n),e.push(t),i){if(c=n.length,c!==t.length)return!1;for(;c--;)if(!E(n[c],t[c],r,e))return!1}else{var l,s=m.keys(n);if(c=s.length,m.keys(t).length!==c)return!1;for(;c--;)if(l=s[c],!m.has(t,l)||!E(n[l],t[l],r,e))return!1}return r.pop(),e.pop(),!0};m.isEqual=function(n,t){return E(n,t)},m.isEmpty=function(n){return null==n?!0:w(n)&&(m.isArray(n)||m.isString(n)||m.isArguments(n))?0===n.length:0===m.keys(n).length},m.isElement=function(n){return!(!n||1!==n.nodeType)},m.isArray=p||function(n){return"[object Array]"===f.call(n)},m.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},m.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(n){m["is"+n]=function(t){return f.call(t)==="[object "+n+"]"}}),m.isArguments(arguments)||(m.isArguments=function(n){return m.has(n,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(m.isFunction=function(n){return"function"==typeof n||!1}),m.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},m.isNaN=function(n){return m.isNumber(n)&&n!==+n},m.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"===f.call(n)},m.isNull=function(n){return null===n},m.isUndefined=function(n){return n===void 0},m.has=function(n,t){return null!=n&&s.call(n,t)},m.noConflict=function(){return e._=u,this},m.identity=function(n){return n},m.constant=function(n){return function(){return n}},m.noop=function(){},m.property=function(n){return function(t){return null==t?void 0:t[n]}},m.propertyOf=function(n){return null==n?function(){}:function(t){return n[t]}},m.matcher=m.matches=function(n){return n=m.extendOwn({},n),function(t){return m.isMatch(t,n)}},m.times=function(n,t,r){var e=Array(Math.max(0,n));t=d(t,r,1);for(var u=0;n>u;u++)e[u]=t(u);return e},m.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},m.now=Date.now||function(){return(new Date).getTime()};var M={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},N=m.invert(M),I=function(n){var t=function(t){return n[t]},r="(?:"+m.keys(n).join("|")+")",e=RegExp(r),u=RegExp(r,"g");return function(n){return n=null==n?"":""+n,e.test(n)?n.replace(u,t):n}};m.escape=I(M),m.unescape=I(N),m.result=function(n,t,r){var e=null==n?void 0:n[t];return e===void 0&&(e=r),m.isFunction(e)?e.call(n):e};var B=0;m.uniqueId=function(n){var t=++B+"";return n?n+t:t},m.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var T=/(.)^/,R={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},q=/\\|'|\r|\n|\u2028|\u2029/g,K=function(n){return"\\"+R[n]};m.template=function(n,t,r){!t&&r&&(t=r),t=m.defaults({},t,m.templateSettings);var e=RegExp([(t.escape||T).source,(t.interpolate||T).source,(t.evaluate||T).source].join("|")+"|$","g"),u=0,i="__p+='";n.replace(e,function(t,r,e,o,a){return i+=n.slice(u,a).replace(q,K),u=a+t.length,r?i+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":e?i+="'+\n((__t=("+e+"))==null?'':__t)+\n'":o&&(i+="';\n"+o+"\n__p+='"),t}),i+="';\n",t.variable||(i="with(obj||{}){\n"+i+"}\n"),i="var __t,__p='',__j=Array.prototype.join,"+"print=function(){__p+=__j.call(arguments,'');};\n"+i+"return __p;\n";try{var o=new Function(t.variable||"obj","_",i)}catch(a){throw a.source=i,a}var c=function(n){return o.call(this,n,m)},l=t.variable||"obj";return c.source="function("+l+"){\n"+i+"}",c},m.chain=function(n){var t=m(n);return t._chain=!0,t};var z=function(n,t){return n._chain?m(t).chain():t};m.mixin=function(n){m.each(m.functions(n),function(t){var r=m[t]=n[t];m.prototype[t]=function(){var n=[this._wrapped];return c.apply(n,arguments),z(this,r.apply(m,n))}})},m.mixin(m),m.each(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=i[n];m.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0],z(this,r)}}),m.each(["concat","join","slice"],function(n){var t=i[n];m.prototype[n]=function(){return z(this,t.apply(this._wrapped,arguments))}}),m.prototype.value=function(){return this._wrapped},m.prototype.valueOf=m.prototype.toJSON=m.prototype.value,m.prototype.toString=function(){return""+this._wrapped},"function"==typeof define&&define.amd&&define("underscore",[],function(){return m})}).call(this);
6
+ //# sourceMappingURL=underscore-min.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"underscore-min.js","sources":["underscore.js"],"names":["createReduce","dir","iterator","obj","iteratee","memo","keys","index","length","currentKey","context","optimizeCb","isArrayLike","_","arguments","createIndexFinder","array","predicate","cb","collectNonEnumProps","nonEnumIdx","nonEnumerableProps","constructor","proto","isFunction","prototype","ObjProto","prop","has","contains","push","root","this","previousUnderscore","ArrayProto","Array","Object","FuncProto","Function","slice","toString","hasOwnProperty","nativeIsArray","isArray","nativeKeys","nativeBind","bind","nativeCreate","create","Ctor","_wrapped","exports","module","VERSION","func","argCount","value","call","other","collection","accumulator","apply","identity","isObject","matcher","property","Infinity","createAssigner","keysFunc","undefinedOnly","source","l","i","key","baseCreate","result","MAX_ARRAY_INDEX","Math","pow","each","forEach","map","collect","results","reduce","foldl","inject","reduceRight","foldr","find","detect","findIndex","findKey","filter","select","list","reject","negate","every","all","some","any","includes","include","target","fromIndex","values","indexOf","invoke","method","args","isFunc","pluck","where","attrs","findWhere","max","computed","lastComputed","min","shuffle","rand","set","shuffled","random","sample","n","guard","sortBy","criteria","sort","left","right","a","b","group","behavior","groupBy","indexBy","countBy","toArray","size","partition","pass","fail","first","head","take","initial","last","rest","tail","drop","compact","flatten","input","shallow","strict","startIndex","output","idx","isArguments","j","len","without","difference","uniq","unique","isSorted","isBoolean","seen","union","intersection","argsLength","item","zip","unzip","object","sortedIndex","isNaN","lastIndexOf","from","findLastIndex","low","high","mid","floor","range","start","stop","step","ceil","executeBound","sourceFunc","boundFunc","callingContext","self","TypeError","bound","concat","partial","boundArgs","position","bindAll","Error","memoize","hasher","cache","address","delay","wait","setTimeout","defer","throttle","options","timeout","previous","later","leading","now","remaining","clearTimeout","trailing","debounce","immediate","timestamp","callNow","wrap","wrapper","compose","after","times","before","once","hasEnumBug","propertyIsEnumerable","allKeys","mapObject","pairs","invert","functions","methods","names","extend","extendOwn","assign","pick","oiteratee","omit","String","defaults","clone","tap","interceptor","isMatch","eq","aStack","bStack","className","areArrays","aCtor","bCtor","pop","isEqual","isEmpty","isString","isElement","nodeType","type","name","Int8Array","isFinite","parseFloat","isNumber","isNull","isUndefined","noConflict","constant","noop","propertyOf","matches","accum","Date","getTime","escapeMap","&","<",">","\"","'","`","unescapeMap","createEscaper","escaper","match","join","testRegexp","RegExp","replaceRegexp","string","test","replace","escape","unescape","fallback","idCounter","uniqueId","prefix","id","templateSettings","evaluate","interpolate","noMatch","escapes","\\","\r","\n","
","
","escapeChar","template","text","settings","oldSettings","offset","variable","render","e","data","argument","chain","instance","_chain","mixin","valueOf","toJSON","define","amd"],"mappings":";;;;CAKC,WAoKC,QAASA,GAAaC,GAGpB,QAASC,GAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,GAClD,KAAOD,GAAS,GAAaC,EAARD,EAAgBA,GAASN,EAAK,CACjD,GAAIQ,GAAaH,EAAOA,EAAKC,GAASA,CACtCF,GAAOD,EAASC,EAAMF,EAAIM,GAAaA,EAAYN,GAErD,MAAOE,GAGT,MAAO,UAASF,EAAKC,EAAUC,EAAMK,GACnCN,EAAWO,EAAWP,EAAUM,EAAS,EACzC,IAAIJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OACvBD,EAAQN,EAAM,EAAI,EAAIO,EAAS,CAMnC,OAJIM,WAAUN,OAAS,IACrBH,EAAOF,EAAIG,EAAOA,EAAKC,GAASA,GAChCA,GAASN,GAEJC,EAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,IA+btD,QAASO,GAAkBd,GACzB,MAAO,UAASe,EAAOC,EAAWP,GAChCO,EAAYC,EAAGD,EAAWP,EAG1B,KAFA,GAAIF,GAAkB,MAATQ,GAAiBA,EAAMR,OAChCD,EAAQN,EAAM,EAAI,EAAIO,EAAS,EAC5BD,GAAS,GAAaC,EAARD,EAAgBA,GAASN,EAC5C,GAAIgB,EAAUD,EAAMT,GAAQA,EAAOS,GAAQ,MAAOT,EAEpD,QAAQ,GAgQZ,QAASY,GAAoBhB,EAAKG,GAChC,GAAIc,GAAaC,EAAmBb,OAChCc,EAAcnB,EAAImB,YAClBC,EAASV,EAAEW,WAAWF,IAAgBA,EAAYG,WAAcC,EAGhEC,EAAO,aAGX,KAFId,EAAEe,IAAIzB,EAAKwB,KAAUd,EAAEgB,SAASvB,EAAMqB,IAAOrB,EAAKwB,KAAKH,GAEpDP,KACLO,EAAON,EAAmBD,GACtBO,IAAQxB,IAAOA,EAAIwB,KAAUJ,EAAMI,KAAUd,EAAEgB,SAASvB,EAAMqB,IAChErB,EAAKwB,KAAKH,GAt4BhB,GAAII,GAAOC,KAGPC,EAAqBF,EAAKlB,EAG1BqB,EAAaC,MAAMV,UAAWC,EAAWU,OAAOX,UAAWY,EAAYC,SAASb,UAIlFK,EAAmBI,EAAWJ,KAC9BS,EAAmBL,EAAWK,MAC9BC,EAAmBd,EAASc,SAC5BC,EAAmBf,EAASe,eAK5BC,EAAqBP,MAAMQ,QAC3BC,EAAqBR,OAAO9B,KAC5BuC,EAAqBR,EAAUS,KAC/BC,EAAqBX,OAAOY,OAG1BC,EAAO,aAGPpC,EAAI,SAASV,GACf,MAAIA,aAAeU,GAAUV,EACvB6B,eAAgBnB,QACtBmB,KAAKkB,SAAW/C,GADiB,GAAIU,GAAEV,GAOlB,oBAAZgD,UACa,mBAAXC,SAA0BA,OAAOD,UAC1CA,QAAUC,OAAOD,QAAUtC,GAE7BsC,QAAQtC,EAAIA,GAEZkB,EAAKlB,EAAIA,EAIXA,EAAEwC,QAAU,OAKZ,IAAI1C,GAAa,SAAS2C,EAAM5C,EAAS6C,GACvC,GAAI7C,QAAiB,GAAG,MAAO4C,EAC/B,QAAoB,MAAZC,EAAmB,EAAIA,GAC7B,IAAK,GAAG,MAAO,UAASC,GACtB,MAAOF,GAAKG,KAAK/C,EAAS8C,GAE5B,KAAK,GAAG,MAAO,UAASA,EAAOE,GAC7B,MAAOJ,GAAKG,KAAK/C,EAAS8C,EAAOE,GAEnC,KAAK,GAAG,MAAO,UAASF,EAAOjD,EAAOoD,GACpC,MAAOL,GAAKG,KAAK/C,EAAS8C,EAAOjD,EAAOoD,GAE1C,KAAK,GAAG,MAAO,UAASC,EAAaJ,EAAOjD,EAAOoD,GACjD,MAAOL,GAAKG,KAAK/C,EAASkD,EAAaJ,EAAOjD,EAAOoD,IAGzD,MAAO,YACL,MAAOL,GAAKO,MAAMnD,EAASI,aAO3BI,EAAK,SAASsC,EAAO9C,EAAS6C,GAChC,MAAa,OAATC,EAAsB3C,EAAEiD,SACxBjD,EAAEW,WAAWgC,GAAe7C,EAAW6C,EAAO9C,EAAS6C,GACvD1C,EAAEkD,SAASP,GAAe3C,EAAEmD,QAAQR,GACjC3C,EAAEoD,SAAST,GAEpB3C,GAAET,SAAW,SAASoD,EAAO9C,GAC3B,MAAOQ,GAAGsC,EAAO9C,EAASwD,KAI5B,IAAIC,GAAiB,SAASC,EAAUC,GACtC,MAAO,UAASlE,GACd,GAAIK,GAASM,UAAUN,MACvB,IAAa,EAATA,GAAqB,MAAPL,EAAa,MAAOA,EACtC,KAAK,GAAII,GAAQ,EAAWC,EAARD,EAAgBA,IAIlC,IAAK,GAHD+D,GAASxD,UAAUP,GACnBD,EAAO8D,EAASE,GAChBC,EAAIjE,EAAKE,OACJgE,EAAI,EAAOD,EAAJC,EAAOA,IAAK,CAC1B,GAAIC,GAAMnE,EAAKkE,EACVH,IAAiBlE,EAAIsE,SAAc,KAAGtE,EAAIsE,GAAOH,EAAOG,IAGjE,MAAOtE,KAKPuE,EAAa,SAASjD,GACxB,IAAKZ,EAAEkD,SAAStC,GAAY,QAC5B,IAAIsB,EAAc,MAAOA,GAAatB,EACtCwB,GAAKxB,UAAYA,CACjB,IAAIkD,GAAS,GAAI1B,EAEjB,OADAA,GAAKxB,UAAY,KACVkD,GAMLC,EAAkBC,KAAKC,IAAI,EAAG,IAAM,EACpClE,EAAc,SAAS+C,GACzB,GAAInD,GAASmD,GAAcA,EAAWnD,MACtC,OAAwB,gBAAVA,IAAsBA,GAAU,GAAeoE,GAAVpE,EASrDK,GAAEkE,KAAOlE,EAAEmE,QAAU,SAAS7E,EAAKC,EAAUM,GAC3CN,EAAWO,EAAWP,EAAUM,EAChC,IAAI8D,GAAGhE,CACP,IAAII,EAAYT,GACd,IAAKqE,EAAI,EAAGhE,EAASL,EAAIK,OAAYA,EAAJgE,EAAYA,IAC3CpE,EAASD,EAAIqE,GAAIA,EAAGrE,OAEjB,CACL,GAAIG,GAAOO,EAAEP,KAAKH,EAClB,KAAKqE,EAAI,EAAGhE,EAASF,EAAKE,OAAYA,EAAJgE,EAAYA,IAC5CpE,EAASD,EAAIG,EAAKkE,IAAKlE,EAAKkE,GAAIrE,GAGpC,MAAOA,IAITU,EAAEoE,IAAMpE,EAAEqE,QAAU,SAAS/E,EAAKC,EAAUM,GAC1CN,EAAWc,EAAGd,EAAUM,EAIxB,KAAK,GAHDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OACvB2E,EAAUhD,MAAM3B,GACXD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtC4E,GAAQ5E,GAASH,EAASD,EAAIM,GAAaA,EAAYN,GAEzD,MAAOgF,IA+BTtE,EAAEuE,OAASvE,EAAEwE,MAAQxE,EAAEyE,OAAStF,EAAa,GAG7Ca,EAAE0E,YAAc1E,EAAE2E,MAAQxF,GAAc,GAGxCa,EAAE4E,KAAO5E,EAAE6E,OAAS,SAASvF,EAAKc,EAAWP,GAC3C,GAAI+D,EAMJ,OAJEA,GADE7D,EAAYT,GACRU,EAAE8E,UAAUxF,EAAKc,EAAWP,GAE5BG,EAAE+E,QAAQzF,EAAKc,EAAWP,GAE9B+D,QAAa,IAAKA,KAAS,EAAUtE,EAAIsE,GAA7C,QAKF5D,EAAEgF,OAAShF,EAAEiF,OAAS,SAAS3F,EAAKc,EAAWP,GAC7C,GAAIyE,KAKJ,OAJAlE,GAAYC,EAAGD,EAAWP,GAC1BG,EAAEkE,KAAK5E,EAAK,SAASqD,EAAOjD,EAAOwF,GAC7B9E,EAAUuC,EAAOjD,EAAOwF,IAAOZ,EAAQrD,KAAK0B,KAE3C2B,GAITtE,EAAEmF,OAAS,SAAS7F,EAAKc,EAAWP,GAClC,MAAOG,GAAEgF,OAAO1F,EAAKU,EAAEoF,OAAO/E,EAAGD,IAAaP,IAKhDG,EAAEqF,MAAQrF,EAAEsF,IAAM,SAAShG,EAAKc,EAAWP,GACzCO,EAAYC,EAAGD,EAAWP,EAG1B,KAAK,GAFDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OAClBD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtC,KAAKU,EAAUd,EAAIM,GAAaA,EAAYN,GAAM,OAAO,EAE3D,OAAO,GAKTU,EAAEuF,KAAOvF,EAAEwF,IAAM,SAASlG,EAAKc,EAAWP,GACxCO,EAAYC,EAAGD,EAAWP,EAG1B,KAAK,GAFDJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OAClBD,EAAQ,EAAWC,EAARD,EAAgBA,IAAS,CAC3C,GAAIE,GAAaH,EAAOA,EAAKC,GAASA,CACtC,IAAIU,EAAUd,EAAIM,GAAaA,EAAYN,GAAM,OAAO,EAE1D,OAAO,GAKTU,EAAEgB,SAAWhB,EAAEyF,SAAWzF,EAAE0F,QAAU,SAASpG,EAAKqG,EAAQC,GAE1D,MADK7F,GAAYT,KAAMA,EAAMU,EAAE6F,OAAOvG,IAC/BU,EAAE8F,QAAQxG,EAAKqG,EAA4B,gBAAbC,IAAyBA,IAAc,GAI9E5F,EAAE+F,OAAS,SAASzG,EAAK0G,GACvB,GAAIC,GAAOvE,EAAMkB,KAAK3C,UAAW,GAC7BiG,EAASlG,EAAEW,WAAWqF,EAC1B,OAAOhG,GAAEoE,IAAI9E,EAAK,SAASqD,GACzB,GAAIF,GAAOyD,EAASF,EAASrD,EAAMqD,EACnC,OAAe,OAARvD,EAAeA,EAAOA,EAAKO,MAAML,EAAOsD,MAKnDjG,EAAEmG,MAAQ,SAAS7G,EAAKsE,GACtB,MAAO5D,GAAEoE,IAAI9E,EAAKU,EAAEoD,SAASQ,KAK/B5D,EAAEoG,MAAQ,SAAS9G,EAAK+G,GACtB,MAAOrG,GAAEgF,OAAO1F,EAAKU,EAAEmD,QAAQkD,KAKjCrG,EAAEsG,UAAY,SAAShH,EAAK+G,GAC1B,MAAOrG,GAAE4E,KAAKtF,EAAKU,EAAEmD,QAAQkD,KAI/BrG,EAAEuG,IAAM,SAASjH,EAAKC,EAAUM,GAC9B,GACI8C,GAAO6D,EADP1C,GAAUT,IAAUoD,GAAgBpD,GAExC,IAAgB,MAAZ9D,GAA2B,MAAPD,EAAa,CACnCA,EAAMS,EAAYT,GAAOA,EAAMU,EAAE6F,OAAOvG,EACxC,KAAK,GAAIqE,GAAI,EAAGhE,EAASL,EAAIK,OAAYA,EAAJgE,EAAYA,IAC/ChB,EAAQrD,EAAIqE,GACRhB,EAAQmB,IACVA,EAASnB,OAIbpD,GAAWc,EAAGd,EAAUM,GACxBG,EAAEkE,KAAK5E,EAAK,SAASqD,EAAOjD,EAAOwF,GACjCsB,EAAWjH,EAASoD,EAAOjD,EAAOwF,IAC9BsB,EAAWC,GAAgBD,KAAcnD,KAAYS,KAAYT,OACnES,EAASnB,EACT8D,EAAeD,IAIrB,OAAO1C,IAIT9D,EAAE0G,IAAM,SAASpH,EAAKC,EAAUM,GAC9B,GACI8C,GAAO6D,EADP1C,EAAST,IAAUoD,EAAepD,GAEtC,IAAgB,MAAZ9D,GAA2B,MAAPD,EAAa,CACnCA,EAAMS,EAAYT,GAAOA,EAAMU,EAAE6F,OAAOvG,EACxC,KAAK,GAAIqE,GAAI,EAAGhE,EAASL,EAAIK,OAAYA,EAAJgE,EAAYA,IAC/ChB,EAAQrD,EAAIqE,GACAG,EAARnB,IACFmB,EAASnB,OAIbpD,GAAWc,EAAGd,EAAUM,GACxBG,EAAEkE,KAAK5E,EAAK,SAASqD,EAAOjD,EAAOwF,GACjCsB,EAAWjH,EAASoD,EAAOjD,EAAOwF,IACnBuB,EAAXD,GAAwCnD,MAAbmD,GAAoCnD,MAAXS,KACtDA,EAASnB,EACT8D,EAAeD,IAIrB,OAAO1C,IAKT9D,EAAE2G,QAAU,SAASrH,GAInB,IAAK,GAAesH,GAHhBC,EAAM9G,EAAYT,GAAOA,EAAMU,EAAE6F,OAAOvG,GACxCK,EAASkH,EAAIlH,OACbmH,EAAWxF,MAAM3B,GACZD,EAAQ,EAAiBC,EAARD,EAAgBA,IACxCkH,EAAO5G,EAAE+G,OAAO,EAAGrH,GACfkH,IAASlH,IAAOoH,EAASpH,GAASoH,EAASF,IAC/CE,EAASF,GAAQC,EAAInH,EAEvB,OAAOoH,IAMT9G,EAAEgH,OAAS,SAAS1H,EAAK2H,EAAGC,GAC1B,MAAS,OAALD,GAAaC,GACVnH,EAAYT,KAAMA,EAAMU,EAAE6F,OAAOvG,IAC/BA,EAAIU,EAAE+G,OAAOzH,EAAIK,OAAS,KAE5BK,EAAE2G,QAAQrH,GAAKoC,MAAM,EAAGsC,KAAKuC,IAAI,EAAGU,KAI7CjH,EAAEmH,OAAS,SAAS7H,EAAKC,EAAUM,GAEjC,MADAN,GAAWc,EAAGd,EAAUM,GACjBG,EAAEmG,MAAMnG,EAAEoE,IAAI9E,EAAK,SAASqD,EAAOjD,EAAOwF,GAC/C,OACEvC,MAAOA,EACPjD,MAAOA,EACP0H,SAAU7H,EAASoD,EAAOjD,EAAOwF,MAElCmC,KAAK,SAASC,EAAMC,GACrB,GAAIC,GAAIF,EAAKF,SACTK,EAAIF,EAAMH,QACd,IAAII,IAAMC,EAAG,CACX,GAAID,EAAIC,GAAKD,QAAW,GAAG,MAAO,EAClC,IAAQC,EAAJD,GAASC,QAAW,GAAG,OAAQ,EAErC,MAAOH,GAAK5H,MAAQ6H,EAAM7H,QACxB,SAIN,IAAIgI,GAAQ,SAASC,GACnB,MAAO,UAASrI,EAAKC,EAAUM,GAC7B,GAAIiE,KAMJ,OALAvE,GAAWc,EAAGd,EAAUM,GACxBG,EAAEkE,KAAK5E,EAAK,SAASqD,EAAOjD,GAC1B,GAAIkE,GAAMrE,EAASoD,EAAOjD,EAAOJ,EACjCqI,GAAS7D,EAAQnB,EAAOiB,KAEnBE,GAMX9D,GAAE4H,QAAUF,EAAM,SAAS5D,EAAQnB,EAAOiB,GACpC5D,EAAEe,IAAI+C,EAAQF,GAAME,EAAOF,GAAK3C,KAAK0B,GAAamB,EAAOF,IAAQjB,KAKvE3C,EAAE6H,QAAUH,EAAM,SAAS5D,EAAQnB,EAAOiB,GACxCE,EAAOF,GAAOjB,IAMhB3C,EAAE8H,QAAUJ,EAAM,SAAS5D,EAAQnB,EAAOiB,GACpC5D,EAAEe,IAAI+C,EAAQF,GAAME,EAAOF,KAAaE,EAAOF,GAAO,IAI5D5D,EAAE+H,QAAU,SAASzI,GACnB,MAAKA,GACDU,EAAE8B,QAAQxC,GAAaoC,EAAMkB,KAAKtD,GAClCS,EAAYT,GAAaU,EAAEoE,IAAI9E,EAAKU,EAAEiD,UACnCjD,EAAE6F,OAAOvG,OAIlBU,EAAEgI,KAAO,SAAS1I,GAChB,MAAW,OAAPA,EAAoB,EACjBS,EAAYT,GAAOA,EAAIK,OAASK,EAAEP,KAAKH,GAAKK,QAKrDK,EAAEiI,UAAY,SAAS3I,EAAKc,EAAWP,GACrCO,EAAYC,EAAGD,EAAWP,EAC1B,IAAIqI,MAAWC,IAIf,OAHAnI,GAAEkE,KAAK5E,EAAK,SAASqD,EAAOiB,EAAKtE,IAC9Bc,EAAUuC,EAAOiB,EAAKtE,GAAO4I,EAAOC,GAAMlH,KAAK0B,MAE1CuF,EAAMC,IAShBnI,EAAEoI,MAAQpI,EAAEqI,KAAOrI,EAAEsI,KAAO,SAASnI,EAAO8G,EAAGC,GAC7C,MAAa,OAAT/G,MAA2B,GACtB,MAAL8G,GAAaC,EAAc/G,EAAM,GAC9BH,EAAEuI,QAAQpI,EAAOA,EAAMR,OAASsH,IAMzCjH,EAAEuI,QAAU,SAASpI,EAAO8G,EAAGC,GAC7B,MAAOxF,GAAMkB,KAAKzC,EAAO,EAAG6D,KAAKuC,IAAI,EAAGpG,EAAMR,QAAe,MAALsH,GAAaC,EAAQ,EAAID,MAKnFjH,EAAEwI,KAAO,SAASrI,EAAO8G,EAAGC,GAC1B,MAAa,OAAT/G,MAA2B,GACtB,MAAL8G,GAAaC,EAAc/G,EAAMA,EAAMR,OAAS,GAC7CK,EAAEyI,KAAKtI,EAAO6D,KAAKuC,IAAI,EAAGpG,EAAMR,OAASsH,KAMlDjH,EAAEyI,KAAOzI,EAAE0I,KAAO1I,EAAE2I,KAAO,SAASxI,EAAO8G,EAAGC,GAC5C,MAAOxF,GAAMkB,KAAKzC,EAAY,MAAL8G,GAAaC,EAAQ,EAAID,IAIpDjH,EAAE4I,QAAU,SAASzI,GACnB,MAAOH,GAAEgF,OAAO7E,EAAOH,EAAEiD,UAI3B,IAAI4F,GAAU,SAASC,EAAOC,EAASC,EAAQC,GAE7C,IAAK,GADDC,MAAaC,EAAM,EACdxF,EAAIsF,GAAc,EAAGtJ,EAASmJ,GAASA,EAAMnJ,OAAYA,EAAJgE,EAAYA,IAAK,CAC7E,GAAIhB,GAAQmG,EAAMnF,EAClB,IAAI5D,EAAY4C,KAAW3C,EAAE8B,QAAQa,IAAU3C,EAAEoJ,YAAYzG,IAAS,CAE/DoG,IAASpG,EAAQkG,EAAQlG,EAAOoG,EAASC,GAC9C,IAAIK,GAAI,EAAGC,EAAM3G,EAAMhD,MAEvB,KADAuJ,EAAOvJ,QAAU2J,EACNA,EAAJD,GACLH,EAAOC,KAASxG,EAAM0G,SAEdL,KACVE,EAAOC,KAASxG,GAGpB,MAAOuG,GAITlJ,GAAE6I,QAAU,SAAS1I,EAAO4I,GAC1B,MAAOF,GAAQ1I,EAAO4I,GAAS,IAIjC/I,EAAEuJ,QAAU,SAASpJ,GACnB,MAAOH,GAAEwJ,WAAWrJ,EAAOuB,EAAMkB,KAAK3C,UAAW,KAMnDD,EAAEyJ,KAAOzJ,EAAE0J,OAAS,SAASvJ,EAAOwJ,EAAUpK,EAAUM,GACtD,GAAa,MAATM,EAAe,QACdH,GAAE4J,UAAUD,KACf9J,EAAUN,EACVA,EAAWoK,EACXA,GAAW,GAEG,MAAZpK,IAAkBA,EAAWc,EAAGd,EAAUM,GAG9C,KAAK,GAFDiE,MACA+F,KACKlG,EAAI,EAAGhE,EAASQ,EAAMR,OAAYA,EAAJgE,EAAYA,IAAK,CACtD,GAAIhB,GAAQxC,EAAMwD,GACd6C,EAAWjH,EAAWA,EAASoD,EAAOgB,EAAGxD,GAASwC,CAClDgH,IACGhG,GAAKkG,IAASrD,GAAU1C,EAAO7C,KAAK0B,GACzCkH,EAAOrD,GACEjH,EACJS,EAAEgB,SAAS6I,EAAMrD,KACpBqD,EAAK5I,KAAKuF,GACV1C,EAAO7C,KAAK0B,IAEJ3C,EAAEgB,SAAS8C,EAAQnB,IAC7BmB,EAAO7C,KAAK0B,GAGhB,MAAOmB,IAKT9D,EAAE8J,MAAQ,WACR,MAAO9J,GAAEyJ,KAAKZ,EAAQ5I,WAAW,GAAM,KAKzCD,EAAE+J,aAAe,SAAS5J,GACxB,GAAa,MAATA,EAAe,QAGnB,KAAK,GAFD2D,MACAkG,EAAa/J,UAAUN,OAClBgE,EAAI,EAAGhE,EAASQ,EAAMR,OAAYA,EAAJgE,EAAYA,IAAK,CACtD,GAAIsG,GAAO9J,EAAMwD,EACjB,KAAI3D,EAAEgB,SAAS8C,EAAQmG,GAAvB,CACA,IAAK,GAAIZ,GAAI,EAAOW,EAAJX,GACTrJ,EAAEgB,SAASf,UAAUoJ,GAAIY,GADAZ,KAG5BA,IAAMW,GAAYlG,EAAO7C,KAAKgJ,IAEpC,MAAOnG,IAKT9D,EAAEwJ,WAAa,SAASrJ,GACtB,GAAIsI,GAAOI,EAAQ5I,WAAW,GAAM,EAAM,EAC1C,OAAOD,GAAEgF,OAAO7E,EAAO,SAASwC,GAC9B,OAAQ3C,EAAEgB,SAASyH,EAAM9F,MAM7B3C,EAAEkK,IAAM,WACN,MAAOlK,GAAEmK,MAAMlK,YAKjBD,EAAEmK,MAAQ,SAAShK,GAIjB,IAAK,GAHDR,GAASQ,GAASH,EAAEuG,IAAIpG,EAAO,UAAUR,QAAU,EACnDmE,EAASxC,MAAM3B,GAEVD,EAAQ,EAAWC,EAARD,EAAgBA,IAClCoE,EAAOpE,GAASM,EAAEmG,MAAMhG,EAAOT,EAEjC,OAAOoE,IAMT9D,EAAEoK,OAAS,SAASlF,EAAMW,GAExB,IAAK,GADD/B,MACKH,EAAI,EAAGhE,EAASuF,GAAQA,EAAKvF,OAAYA,EAAJgE,EAAYA,IACpDkC,EACF/B,EAAOoB,EAAKvB,IAAMkC,EAAOlC,GAEzBG,EAAOoB,EAAKvB,GAAG,IAAMuB,EAAKvB,GAAG,EAGjC,OAAOG,IAOT9D,EAAE8F,QAAU,SAAS3F,EAAO8J,EAAMN,GAChC,GAAIhG,GAAI,EAAGhE,EAASQ,GAASA,EAAMR,MACnC,IAAuB,gBAAZgK,GACThG,EAAe,EAAXgG,EAAe3F,KAAKuC,IAAI,EAAG5G,EAASgK,GAAYA,MAC/C,IAAIA,GAAYhK,EAErB,MADAgE,GAAI3D,EAAEqK,YAAYlK,EAAO8J,GAClB9J,EAAMwD,KAAOsG,EAAOtG,GAAK,CAElC,IAAIsG,IAASA,EACX,MAAOjK,GAAE8E,UAAUpD,EAAMkB,KAAKzC,EAAOwD,GAAI3D,EAAEsK,MAE7C,MAAW3K,EAAJgE,EAAYA,IAAK,GAAIxD,EAAMwD,KAAOsG,EAAM,MAAOtG,EACtD,QAAQ,GAGV3D,EAAEuK,YAAc,SAASpK,EAAO8J,EAAMO,GACpC,GAAIrB,GAAMhJ,EAAQA,EAAMR,OAAS,CAIjC,IAHmB,gBAAR6K,KACTrB,EAAa,EAAPqB,EAAWrB,EAAMqB,EAAO,EAAIxG,KAAK0C,IAAIyC,EAAKqB,EAAO,IAErDP,IAASA,EACX,MAAOjK,GAAEyK,cAAc/I,EAAMkB,KAAKzC,EAAO,EAAGgJ,GAAMnJ,EAAEsK,MAEtD,QAASnB,GAAO,GAAG,GAAIhJ,EAAMgJ,KAASc,EAAM,MAAOd,EACnD,QAAQ,GAiBVnJ,EAAE8E,UAAY5E,EAAkB,GAEhCF,EAAEyK,cAAgBvK,GAAmB,GAIrCF,EAAEqK,YAAc,SAASlK,EAAOb,EAAKC,EAAUM,GAC7CN,EAAWc,EAAGd,EAAUM,EAAS,EAGjC,KAFA,GAAI8C,GAAQpD,EAASD,GACjBoL,EAAM,EAAGC,EAAOxK,EAAMR,OACbgL,EAAND,GAAY,CACjB,GAAIE,GAAM5G,KAAK6G,OAAOH,EAAMC,GAAQ,EAChCpL,GAASY,EAAMyK,IAAQjI,EAAO+H,EAAME,EAAM,EAAQD,EAAOC,EAE/D,MAAOF,IAMT1K,EAAE8K,MAAQ,SAASC,EAAOC,EAAMC,GAC1BhL,UAAUN,QAAU,IACtBqL,EAAOD,GAAS,EAChBA,EAAQ,GAEVE,EAAOA,GAAQ,CAKf,KAAK,GAHDtL,GAASqE,KAAKuC,IAAIvC,KAAKkH,MAAMF,EAAOD,GAASE,GAAO,GACpDH,EAAQxJ,MAAM3B,GAETwJ,EAAM,EAASxJ,EAANwJ,EAAcA,IAAO4B,GAASE,EAC9CH,EAAM3B,GAAO4B,CAGf,OAAOD,GAQT,IAAIK,GAAe,SAASC,EAAYC,EAAWxL,EAASyL,EAAgBrF,GAC1E,KAAMqF,YAA0BD,IAAY,MAAOD,GAAWpI,MAAMnD,EAASoG,EAC7E,IAAIsF,GAAO1H,EAAWuH,EAAWxK,WAC7BkD,EAASsH,EAAWpI,MAAMuI,EAAMtF,EACpC,OAAIjG,GAAEkD,SAASY,GAAgBA,EACxByH,EAMTvL,GAAEiC,KAAO,SAASQ,EAAM5C,GACtB,GAAImC,GAAcS,EAAKR,OAASD,EAAY,MAAOA,GAAWgB,MAAMP,EAAMf,EAAMkB,KAAK3C,UAAW,GAChG,KAAKD,EAAEW,WAAW8B,GAAO,KAAM,IAAI+I,WAAU,oCAC7C,IAAIvF,GAAOvE,EAAMkB,KAAK3C,UAAW,GAC7BwL,EAAQ,WACV,MAAON,GAAa1I,EAAMgJ,EAAO5L,EAASsB,KAAM8E,EAAKyF,OAAOhK,EAAMkB,KAAK3C,aAEzE,OAAOwL,IAMTzL,EAAE2L,QAAU,SAASlJ,GACnB,GAAImJ,GAAYlK,EAAMkB,KAAK3C,UAAW,GAClCwL,EAAQ,WAGV,IAAK,GAFDI,GAAW,EAAGlM,EAASiM,EAAUjM,OACjCsG,EAAO3E,MAAM3B,GACRgE,EAAI,EAAOhE,EAAJgE,EAAYA,IAC1BsC,EAAKtC,GAAKiI,EAAUjI,KAAO3D,EAAIC,UAAU4L,KAAcD,EAAUjI,EAEnE,MAAOkI,EAAW5L,UAAUN,QAAQsG,EAAKhF,KAAKhB,UAAU4L,KACxD,OAAOV,GAAa1I,EAAMgJ,EAAOtK,KAAMA,KAAM8E,GAE/C,OAAOwF,IAMTzL,EAAE8L,QAAU,SAASxM,GACnB,GAAIqE,GAA8BC,EAA3BjE,EAASM,UAAUN,MAC1B,IAAc,GAAVA,EAAa,KAAM,IAAIoM,OAAM,wCACjC,KAAKpI,EAAI,EAAOhE,EAAJgE,EAAYA,IACtBC,EAAM3D,UAAU0D,GAChBrE,EAAIsE,GAAO5D,EAAEiC,KAAK3C,EAAIsE,GAAMtE,EAE9B,OAAOA,IAITU,EAAEgM,QAAU,SAASvJ,EAAMwJ,GACzB,GAAID,GAAU,SAASpI,GACrB,GAAIsI,GAAQF,EAAQE,MAChBC,EAAU,IAAMF,EAASA,EAAOjJ,MAAM7B,KAAMlB,WAAa2D,EAE7D,OADK5D,GAAEe,IAAImL,EAAOC,KAAUD,EAAMC,GAAW1J,EAAKO,MAAM7B,KAAMlB,YACvDiM,EAAMC,GAGf,OADAH,GAAQE,SACDF,GAKThM,EAAEoM,MAAQ,SAAS3J,EAAM4J,GACvB,GAAIpG,GAAOvE,EAAMkB,KAAK3C,UAAW,EACjC,OAAOqM,YAAW,WAChB,MAAO7J,GAAKO,MAAM,KAAMiD,IACvBoG,IAKLrM,EAAEuM,MAAQvM,EAAE2L,QAAQ3L,EAAEoM,MAAOpM,EAAG,GAOhCA,EAAEwM,SAAW,SAAS/J,EAAM4J,EAAMI,GAChC,GAAI5M,GAASoG,EAAMnC,EACf4I,EAAU,KACVC,EAAW,CACVF,KAASA,KACd,IAAIG,GAAQ,WACVD,EAAWF,EAAQI,WAAY,EAAQ,EAAI7M,EAAE8M,MAC7CJ,EAAU,KACV5I,EAASrB,EAAKO,MAAMnD,EAASoG,GACxByG,IAAS7M,EAAUoG,EAAO,MAEjC,OAAO,YACL,GAAI6G,GAAM9M,EAAE8M,KACPH,IAAYF,EAAQI,WAAY,IAAOF,EAAWG,EACvD,IAAIC,GAAYV,GAAQS,EAAMH,EAc9B,OAbA9M,GAAUsB,KACV8E,EAAOhG,UACU,GAAb8M,GAAkBA,EAAYV,GAC5BK,IACFM,aAAaN,GACbA,EAAU,MAEZC,EAAWG,EACXhJ,EAASrB,EAAKO,MAAMnD,EAASoG,GACxByG,IAAS7M,EAAUoG,EAAO,OACrByG,GAAWD,EAAQQ,YAAa,IAC1CP,EAAUJ,WAAWM,EAAOG,IAEvBjJ,IAQX9D,EAAEkN,SAAW,SAASzK,EAAM4J,EAAMc,GAChC,GAAIT,GAASzG,EAAMpG,EAASuN,EAAWtJ,EAEnC8I,EAAQ,WACV,GAAIpE,GAAOxI,EAAE8M,MAAQM,CAEVf,GAAP7D,GAAeA,GAAQ,EACzBkE,EAAUJ,WAAWM,EAAOP,EAAO7D,IAEnCkE,EAAU,KACLS,IACHrJ,EAASrB,EAAKO,MAAMnD,EAASoG,GACxByG,IAAS7M,EAAUoG,EAAO,QAKrC,OAAO,YACLpG,EAAUsB,KACV8E,EAAOhG,UACPmN,EAAYpN,EAAE8M,KACd,IAAIO,GAAUF,IAAcT,CAO5B,OANKA,KAASA,EAAUJ,WAAWM,EAAOP,IACtCgB,IACFvJ,EAASrB,EAAKO,MAAMnD,EAASoG,GAC7BpG,EAAUoG,EAAO,MAGZnC,IAOX9D,EAAEsN,KAAO,SAAS7K,EAAM8K,GACtB,MAAOvN,GAAE2L,QAAQ4B,EAAS9K,IAI5BzC,EAAEoF,OAAS,SAAShF,GAClB,MAAO,YACL,OAAQA,EAAU4C,MAAM7B,KAAMlB,aAMlCD,EAAEwN,QAAU,WACV,GAAIvH,GAAOhG,UACP8K,EAAQ9E,EAAKtG,OAAS,CAC1B,OAAO,YAGL,IAFA,GAAIgE,GAAIoH,EACJjH,EAASmC,EAAK8E,GAAO/H,MAAM7B,KAAMlB,WAC9B0D,KAAKG,EAASmC,EAAKtC,GAAGf,KAAKzB,KAAM2C,EACxC,OAAOA,KAKX9D,EAAEyN,MAAQ,SAASC,EAAOjL,GACxB,MAAO,YACL,QAAMiL,EAAQ,EACLjL,EAAKO,MAAM7B,KAAMlB,WAD1B,SAOJD,EAAE2N,OAAS,SAASD,EAAOjL,GACzB,GAAIjD,EACJ,OAAO,YAKL,QAJMkO,EAAQ,IACZlO,EAAOiD,EAAKO,MAAM7B,KAAMlB,YAEb,GAATyN,IAAYjL,EAAO,MAChBjD,IAMXQ,EAAE4N,KAAO5N,EAAE2L,QAAQ3L,EAAE2N,OAAQ,EAM7B,IAAIE,KAAelM,SAAU,MAAMmM,qBAAqB,YACpDtN,GAAsB,UAAW,gBAAiB,WAClC,uBAAwB,iBAAkB,iBAqB9DR,GAAEP,KAAO,SAASH,GAChB,IAAKU,EAAEkD,SAAS5D,GAAM,QACtB,IAAIyC,EAAY,MAAOA,GAAWzC,EAClC,IAAIG,KACJ,KAAK,GAAImE,KAAOtE,GAASU,EAAEe,IAAIzB,EAAKsE,IAAMnE,EAAKwB,KAAK2C,EAGpD,OADIiK,IAAYvN,EAAoBhB,EAAKG,GAClCA,GAITO,EAAE+N,QAAU,SAASzO,GACnB,IAAKU,EAAEkD,SAAS5D,GAAM,QACtB,IAAIG,KACJ,KAAK,GAAImE,KAAOtE,GAAKG,EAAKwB,KAAK2C,EAG/B,OADIiK,IAAYvN,EAAoBhB,EAAKG,GAClCA,GAITO,EAAE6F,OAAS,SAASvG,GAIlB,IAAK,GAHDG,GAAOO,EAAEP,KAAKH,GACdK,EAASF,EAAKE,OACdkG,EAASvE,MAAM3B,GACVgE,EAAI,EAAOhE,EAAJgE,EAAYA,IAC1BkC,EAAOlC,GAAKrE,EAAIG,EAAKkE,GAEvB,OAAOkC,IAKT7F,EAAEgO,UAAY,SAAS1O,EAAKC,EAAUM,GACpCN,EAAWc,EAAGd,EAAUM,EAKtB,KAAK,GADDD,GAHFH,EAAQO,EAAEP,KAAKH,GACbK,EAASF,EAAKE,OACd2E,KAEK5E,EAAQ,EAAWC,EAARD,EAAgBA,IAClCE,EAAaH,EAAKC,GAClB4E,EAAQ1E,GAAcL,EAASD,EAAIM,GAAaA,EAAYN,EAE9D,OAAOgF,IAIXtE,EAAEiO,MAAQ,SAAS3O,GAIjB,IAAK,GAHDG,GAAOO,EAAEP,KAAKH,GACdK,EAASF,EAAKE,OACdsO,EAAQ3M,MAAM3B,GACTgE,EAAI,EAAOhE,EAAJgE,EAAYA,IAC1BsK,EAAMtK,IAAMlE,EAAKkE,GAAIrE,EAAIG,EAAKkE,IAEhC,OAAOsK,IAITjO,EAAEkO,OAAS,SAAS5O,GAGlB,IAAK,GAFDwE,MACArE,EAAOO,EAAEP,KAAKH,GACTqE,EAAI,EAAGhE,EAASF,EAAKE,OAAYA,EAAJgE,EAAYA,IAChDG,EAAOxE,EAAIG,EAAKkE,KAAOlE,EAAKkE,EAE9B,OAAOG,IAKT9D,EAAEmO,UAAYnO,EAAEoO,QAAU,SAAS9O,GACjC,GAAI+O,KACJ,KAAK,GAAIzK,KAAOtE,GACVU,EAAEW,WAAWrB,EAAIsE,KAAOyK,EAAMpN,KAAK2C,EAEzC,OAAOyK,GAAMhH,QAIfrH,EAAEsO,OAAShL,EAAetD,EAAE+N,SAI5B/N,EAAEuO,UAAYvO,EAAEwO,OAASlL,EAAetD,EAAEP,MAG1CO,EAAE+E,QAAU,SAASzF,EAAKc,EAAWP,GACnCO,EAAYC,EAAGD,EAAWP,EAE1B,KAAK,GADmB+D,GAApBnE,EAAOO,EAAEP,KAAKH,GACTqE,EAAI,EAAGhE,EAASF,EAAKE,OAAYA,EAAJgE,EAAYA,IAEhD,GADAC,EAAMnE,EAAKkE,GACPvD,EAAUd,EAAIsE,GAAMA,EAAKtE,GAAM,MAAOsE,IAK9C5D,EAAEyO,KAAO,SAASrE,EAAQsE,EAAW7O,GACnC,GAA+BN,GAAUE,EAArCqE,KAAaxE,EAAM8K,CACvB,IAAW,MAAP9K,EAAa,MAAOwE,EACpB9D,GAAEW,WAAW+N,IACfjP,EAAOO,EAAE+N,QAAQzO,GACjBC,EAAWO,EAAW4O,EAAW7O,KAEjCJ,EAAOoJ,EAAQ5I,WAAW,GAAO,EAAO,GACxCV,EAAW,SAASoD,EAAOiB,EAAKtE,GAAO,MAAOsE,KAAOtE,IACrDA,EAAMiC,OAAOjC,GAEf,KAAK,GAAIqE,GAAI,EAAGhE,EAASF,EAAKE,OAAYA,EAAJgE,EAAYA,IAAK,CACrD,GAAIC,GAAMnE,EAAKkE,GACXhB,EAAQrD,EAAIsE,EACZrE,GAASoD,EAAOiB,EAAKtE,KAAMwE,EAAOF,GAAOjB,GAE/C,MAAOmB,IAIT9D,EAAE2O,KAAO,SAASrP,EAAKC,EAAUM,GAC/B,GAAIG,EAAEW,WAAWpB,GACfA,EAAWS,EAAEoF,OAAO7F,OACf,CACL,GAAIE,GAAOO,EAAEoE,IAAIyE,EAAQ5I,WAAW,GAAO,EAAO,GAAI2O,OACtDrP,GAAW,SAASoD,EAAOiB,GACzB,OAAQ5D,EAAEgB,SAASvB,EAAMmE,IAG7B,MAAO5D,GAAEyO,KAAKnP,EAAKC,EAAUM,IAI/BG,EAAE6O,SAAWvL,EAAetD,EAAE+N,SAAS,GAGvC/N,EAAE8O,MAAQ,SAASxP,GACjB,MAAKU,GAAEkD,SAAS5D,GACTU,EAAE8B,QAAQxC,GAAOA,EAAIoC,QAAU1B,EAAEsO,UAAWhP,GADtBA,GAO/BU,EAAE+O,IAAM,SAASzP,EAAK0P,GAEpB,MADAA,GAAY1P,GACLA,GAITU,EAAEiP,QAAU,SAAS7E,EAAQ/D,GAC3B,GAAI5G,GAAOO,EAAEP,KAAK4G,GAAQ1G,EAASF,EAAKE,MACxC,IAAc,MAAVyK,EAAgB,OAAQzK,CAE5B,KAAK,GADDL,GAAMiC,OAAO6I,GACRzG,EAAI,EAAOhE,EAAJgE,EAAYA,IAAK,CAC/B,GAAIC,GAAMnE,EAAKkE,EACf,IAAI0C,EAAMzC,KAAStE,EAAIsE,MAAUA,IAAOtE,IAAM,OAAO,EAEvD,OAAO,EAKT,IAAI4P,GAAK,SAAS1H,EAAGC,EAAG0H,EAAQC,GAG9B,GAAI5H,IAAMC,EAAG,MAAa,KAAND,GAAW,EAAIA,IAAM,EAAIC,CAE7C,IAAS,MAALD,GAAkB,MAALC,EAAW,MAAOD,KAAMC,CAErCD,aAAaxH,KAAGwH,EAAIA,EAAEnF,UACtBoF,YAAazH,KAAGyH,EAAIA,EAAEpF,SAE1B,IAAIgN,GAAY1N,EAASiB,KAAK4E,EAC9B,IAAI6H,IAAc1N,EAASiB,KAAK6E,GAAI,OAAO,CAC3C,QAAQ4H,GAEN,IAAK,kBAEL,IAAK,kBAGH,MAAO,GAAK7H,GAAM,GAAKC,CACzB,KAAK,kBAGH,OAAKD,KAAOA,GAAWC,KAAOA,EAEhB,KAAND,EAAU,GAAKA,IAAM,EAAIC,GAAKD,KAAOC,CAC/C,KAAK,gBACL,IAAK,mBAIH,OAAQD,KAAOC,EAGnB,GAAI6H,GAA0B,mBAAdD,CAChB,KAAKC,EAAW,CACd,GAAgB,gBAAL9H,IAA6B,gBAALC,GAAe,OAAO,CAIzD,IAAI8H,GAAQ/H,EAAE/G,YAAa+O,EAAQ/H,EAAEhH,WACrC,IAAI8O,IAAUC,KAAWxP,EAAEW,WAAW4O,IAAUA,YAAiBA,IACxCvP,EAAEW,WAAW6O,IAAUA,YAAiBA,KACzC,eAAiBhI,IAAK,eAAiBC,GAC7D,OAAO,EAQX0H,EAASA,MACTC,EAASA,KAET,KADA,GAAIzP,GAASwP,EAAOxP,OACbA,KAGL,GAAIwP,EAAOxP,KAAY6H,EAAG,MAAO4H,GAAOzP,KAAY8H,CAQtD,IAJA0H,EAAOlO,KAAKuG,GACZ4H,EAAOnO,KAAKwG,GAGR6H,EAAW,CAGb,GADA3P,EAAS6H,EAAE7H,OACPA,IAAW8H,EAAE9H,OAAQ,OAAO,CAEhC,MAAOA,KACL,IAAKuP,EAAG1H,EAAE7H,GAAS8H,EAAE9H,GAASwP,EAAQC,GAAS,OAAO,MAEnD,CAEL,GAAsBxL,GAAlBnE,EAAOO,EAAEP,KAAK+H,EAGlB,IAFA7H,EAASF,EAAKE,OAEVK,EAAEP,KAAKgI,GAAG9H,SAAWA,EAAQ,OAAO,CACxC,MAAOA,KAGL,GADAiE,EAAMnE,EAAKE,IACLK,EAAEe,IAAI0G,EAAG7D,KAAQsL,EAAG1H,EAAE5D,GAAM6D,EAAE7D,GAAMuL,EAAQC,GAAU,OAAO,EAMvE,MAFAD,GAAOM,MACPL,EAAOK,OACA,EAITzP,GAAE0P,QAAU,SAASlI,EAAGC,GACtB,MAAOyH,GAAG1H,EAAGC,IAKfzH,EAAE2P,QAAU,SAASrQ,GACnB,MAAW,OAAPA,GAAoB,EACpBS,EAAYT,KAASU,EAAE8B,QAAQxC,IAAQU,EAAE4P,SAAStQ,IAAQU,EAAEoJ,YAAY9J,IAA6B,IAAfA,EAAIK,OAChE,IAAvBK,EAAEP,KAAKH,GAAKK,QAIrBK,EAAE6P,UAAY,SAASvQ,GACrB,SAAUA,GAAwB,IAAjBA,EAAIwQ,WAKvB9P,EAAE8B,QAAUD,GAAiB,SAASvC,GACpC,MAA8B,mBAAvBqC,EAASiB,KAAKtD,IAIvBU,EAAEkD,SAAW,SAAS5D,GACpB,GAAIyQ,SAAczQ,EAClB,OAAgB,aAATyQ,GAAgC,WAATA,KAAuBzQ,GAIvDU,EAAEkE,MAAM,YAAa,WAAY,SAAU,SAAU,OAAQ,SAAU,SAAU,SAAS8L,GACxFhQ,EAAE,KAAOgQ,GAAQ,SAAS1Q,GACxB,MAAOqC,GAASiB,KAAKtD,KAAS,WAAa0Q,EAAO,OAMjDhQ,EAAEoJ,YAAYnJ,aACjBD,EAAEoJ,YAAc,SAAS9J,GACvB,MAAOU,GAAEe,IAAIzB,EAAK,YAMJ,kBAAP,KAAyC,gBAAb2Q,aACrCjQ,EAAEW,WAAa,SAASrB,GACtB,MAAqB,kBAAPA,KAAqB,IAKvCU,EAAEkQ,SAAW,SAAS5Q,GACpB,MAAO4Q,UAAS5Q,KAASgL,MAAM6F,WAAW7Q,KAI5CU,EAAEsK,MAAQ,SAAShL,GACjB,MAAOU,GAAEoQ,SAAS9Q,IAAQA,KAASA,GAIrCU,EAAE4J,UAAY,SAAStK,GACrB,MAAOA,MAAQ,GAAQA,KAAQ,GAAgC,qBAAvBqC,EAASiB,KAAKtD,IAIxDU,EAAEqQ,OAAS,SAAS/Q,GAClB,MAAe,QAARA,GAITU,EAAEsQ,YAAc,SAAShR,GACvB,MAAOA,SAAa,IAKtBU,EAAEe,IAAM,SAASzB,EAAKsE,GACpB,MAAc,OAAPtE,GAAesC,EAAegB,KAAKtD,EAAKsE,IAQjD5D,EAAEuQ,WAAa,WAEb,MADArP,GAAKlB,EAAIoB,EACFD,MAITnB,EAAEiD,SAAW,SAASN,GACpB,MAAOA,IAIT3C,EAAEwQ,SAAW,SAAS7N,GACpB,MAAO,YACL,MAAOA,KAIX3C,EAAEyQ,KAAO,aAETzQ,EAAEoD,SAAW,SAASQ,GACpB,MAAO,UAAStE,GACd,MAAc,OAAPA,MAAmB,GAAIA,EAAIsE,KAKtC5D,EAAE0Q,WAAa,SAASpR,GACtB,MAAc,OAAPA,EAAc,aAAe,SAASsE,GAC3C,MAAOtE,GAAIsE,KAMf5D,EAAEmD,QAAUnD,EAAE2Q,QAAU,SAAStK,GAE/B,MADAA,GAAQrG,EAAEuO,aAAclI,GACjB,SAAS/G,GACd,MAAOU,GAAEiP,QAAQ3P,EAAK+G,KAK1BrG,EAAE0N,MAAQ,SAASzG,EAAG1H,EAAUM,GAC9B,GAAI+Q,GAAQtP,MAAM0C,KAAKuC,IAAI,EAAGU,GAC9B1H,GAAWO,EAAWP,EAAUM,EAAS,EACzC,KAAK,GAAI8D,GAAI,EAAOsD,EAAJtD,EAAOA,IAAKiN,EAAMjN,GAAKpE,EAASoE,EAChD,OAAOiN,IAIT5Q,EAAE+G,OAAS,SAASL,EAAKH,GAKvB,MAJW,OAAPA,IACFA,EAAMG,EACNA,EAAM,GAEDA,EAAM1C,KAAK6G,MAAM7G,KAAK+C,UAAYR,EAAMG,EAAM,KAIvD1G,EAAE8M,IAAM+D,KAAK/D,KAAO,WAClB,OAAO,GAAI+D,OAAOC,UAIpB,IAAIC,IACFC,IAAK,QACLC,IAAK,OACLC,IAAK,OACLC,IAAK,SACLC,IAAK,SACLC,IAAK,UAEHC,EAActR,EAAEkO,OAAO6C,GAGvBQ,EAAgB,SAASnN,GAC3B,GAAIoN,GAAU,SAASC,GACrB,MAAOrN,GAAIqN,IAGThO,EAAS,MAAQzD,EAAEP,KAAK2E,GAAKsN,KAAK,KAAO,IACzCC,EAAaC,OAAOnO,GACpBoO,EAAgBD,OAAOnO,EAAQ,IACnC,OAAO,UAASqO,GAEd,MADAA,GAAmB,MAAVA,EAAiB,GAAK,GAAKA,EAC7BH,EAAWI,KAAKD,GAAUA,EAAOE,QAAQH,EAAeL,GAAWM,GAG9E9R,GAAEiS,OAASV,EAAcR,GACzB/Q,EAAEkS,SAAWX,EAAcD,GAI3BtR,EAAE8D,OAAS,SAASsG,EAAQhH,EAAU+O,GACpC,GAAIxP,GAAkB,MAAVyH,MAAsB,GAAIA,EAAOhH,EAI7C,OAHIT,SAAe,KACjBA,EAAQwP,GAEHnS,EAAEW,WAAWgC,GAASA,EAAMC,KAAKwH,GAAUzH,EAKpD,IAAIyP,GAAY,CAChBpS,GAAEqS,SAAW,SAASC,GACpB,GAAIC,KAAOH,EAAY,EACvB,OAAOE,GAASA,EAASC,EAAKA,GAKhCvS,EAAEwS,kBACAC,SAAc,kBACdC,YAAc,mBACdT,OAAc,mBAMhB,IAAIU,GAAU,OAIVC,GACFxB,IAAU,IACVyB,KAAU,KACVC,KAAU,IACVC,KAAU,IACVC,SAAU,QACVC,SAAU,SAGRzB,EAAU,4BAEV0B,EAAa,SAASzB,GACxB,MAAO,KAAOmB,EAAQnB,GAOxBzR,GAAEmT,SAAW,SAASC,EAAMC,EAAUC,IAC/BD,GAAYC,IAAaD,EAAWC,GACzCD,EAAWrT,EAAE6O,YAAawE,EAAUrT,EAAEwS,iBAGtC,IAAIrP,GAAUyO,SACXyB,EAASpB,QAAUU,GAASlP,QAC5B4P,EAASX,aAAeC,GAASlP,QACjC4P,EAASZ,UAAYE,GAASlP,QAC/BiO,KAAK,KAAO,KAAM,KAGhBhS,EAAQ,EACR+D,EAAS,QACb2P,GAAKpB,QAAQ7O,EAAS,SAASsO,EAAOQ,EAAQS,EAAaD,EAAUc,GAanE,MAZA9P,IAAU2P,EAAK1R,MAAMhC,EAAO6T,GAAQvB,QAAQR,EAAS0B,GACrDxT,EAAQ6T,EAAS9B,EAAM9R,OAEnBsS,EACFxO,GAAU,cAAgBwO,EAAS,iCAC1BS,EACTjP,GAAU,cAAgBiP,EAAc,uBAC/BD,IACThP,GAAU,OAASgP,EAAW,YAIzBhB,IAEThO,GAAU,OAGL4P,EAASG,WAAU/P,EAAS,mBAAqBA,EAAS,OAE/DA,EAAS,2CACP,oDACAA,EAAS,eAEX,KACE,GAAIgQ,GAAS,GAAIhS,UAAS4R,EAASG,UAAY,MAAO,IAAK/P,GAC3D,MAAOiQ,GAEP,KADAA,GAAEjQ,OAASA,EACLiQ,EAGR,GAAIP,GAAW,SAASQ,GACtB,MAAOF,GAAO7Q,KAAKzB,KAAMwS,EAAM3T,IAI7B4T,EAAWP,EAASG,UAAY,KAGpC,OAFAL,GAAS1P,OAAS,YAAcmQ,EAAW,OAASnQ,EAAS,IAEtD0P,GAITnT,EAAE6T,MAAQ,SAASvU,GACjB,GAAIwU,GAAW9T,EAAEV,EAEjB,OADAwU,GAASC,QAAS,EACXD,EAUT,IAAIhQ,GAAS,SAASgQ,EAAUxU,GAC9B,MAAOwU,GAASC,OAAS/T,EAAEV,GAAKuU,QAAUvU,EAI5CU,GAAEgU,MAAQ,SAAS1U,GACjBU,EAAEkE,KAAKlE,EAAEmO,UAAU7O,GAAM,SAAS0Q,GAChC,GAAIvN,GAAOzC,EAAEgQ,GAAQ1Q,EAAI0Q,EACzBhQ,GAAEY,UAAUoP,GAAQ,WAClB,GAAI/J,IAAQ9E,KAAKkB,SAEjB,OADApB,GAAK+B,MAAMiD,EAAMhG,WACV6D,EAAO3C,KAAMsB,EAAKO,MAAMhD,EAAGiG,QAMxCjG,EAAEgU,MAAMhU,GAGRA,EAAEkE,MAAM,MAAO,OAAQ,UAAW,QAAS,OAAQ,SAAU,WAAY,SAAS8L,GAChF,GAAIhK,GAAS3E,EAAW2O,EACxBhQ,GAAEY,UAAUoP,GAAQ,WAClB,GAAI1Q,GAAM6B,KAAKkB,QAGf,OAFA2D,GAAOhD,MAAM1D,EAAKW,WACJ,UAAT+P,GAA6B,WAATA,GAAqC,IAAf1Q,EAAIK,cAAqBL,GAAI,GACrEwE,EAAO3C,KAAM7B,MAKxBU,EAAEkE,MAAM,SAAU,OAAQ,SAAU,SAAS8L,GAC3C,GAAIhK,GAAS3E,EAAW2O,EACxBhQ,GAAEY,UAAUoP,GAAQ,WAClB,MAAOlM,GAAO3C,KAAM6E,EAAOhD,MAAM7B,KAAKkB,SAAUpC,eAKpDD,EAAEY,UAAU+B,MAAQ,WAClB,MAAOxB,MAAKkB,UAKdrC,EAAEY,UAAUqT,QAAUjU,EAAEY,UAAUsT,OAASlU,EAAEY,UAAU+B,MAEvD3C,EAAEY,UAAUe,SAAW,WACrB,MAAO,GAAKR,KAAKkB,UAUG,kBAAX8R,SAAyBA,OAAOC,KACzCD,OAAO,gBAAkB,WACvB,MAAOnU,OAGX4C,KAAKzB"}
@@ -0,0 +1,1536 @@
1
+ // Underscore.js 1.8.2
2
+ // http://underscorejs.org
3
+ // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
4
+ // Underscore may be freely distributed under the MIT license.
5
+
6
+ (function() {
7
+
8
+ // Baseline setup
9
+ // --------------
10
+
11
+ // Establish the root object, `window` in the browser, or `exports` on the server.
12
+ var root = this;
13
+
14
+ // Save the previous value of the `_` variable.
15
+ var previousUnderscore = root._;
16
+
17
+ // Save bytes in the minified (but not gzipped) version:
18
+ var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
19
+
20
+ // Create quick reference variables for speed access to core prototypes.
21
+ var
22
+ push = ArrayProto.push,
23
+ slice = ArrayProto.slice,
24
+ toString = ObjProto.toString,
25
+ hasOwnProperty = ObjProto.hasOwnProperty;
26
+
27
+ // All **ECMAScript 5** native function implementations that we hope to use
28
+ // are declared here.
29
+ var
30
+ nativeIsArray = Array.isArray,
31
+ nativeKeys = Object.keys,
32
+ nativeBind = FuncProto.bind,
33
+ nativeCreate = Object.create;
34
+
35
+ // Naked function reference for surrogate-prototype-swapping.
36
+ var Ctor = function(){};
37
+
38
+ // Create a safe reference to the Underscore object for use below.
39
+ var _ = function(obj) {
40
+ if (obj instanceof _) return obj;
41
+ if (!(this instanceof _)) return new _(obj);
42
+ this._wrapped = obj;
43
+ };
44
+
45
+ // Export the Underscore object for **Node.js**, with
46
+ // backwards-compatibility for the old `require()` API. If we're in
47
+ // the browser, add `_` as a global object.
48
+ if (typeof exports !== 'undefined') {
49
+ if (typeof module !== 'undefined' && module.exports) {
50
+ exports = module.exports = _;
51
+ }
52
+ exports._ = _;
53
+ } else {
54
+ root._ = _;
55
+ }
56
+
57
+ // Current version.
58
+ _.VERSION = '1.8.2';
59
+
60
+ // Internal function that returns an efficient (for current engines) version
61
+ // of the passed-in callback, to be repeatedly applied in other Underscore
62
+ // functions.
63
+ var optimizeCb = function(func, context, argCount) {
64
+ if (context === void 0) return func;
65
+ switch (argCount == null ? 3 : argCount) {
66
+ case 1: return function(value) {
67
+ return func.call(context, value);
68
+ };
69
+ case 2: return function(value, other) {
70
+ return func.call(context, value, other);
71
+ };
72
+ case 3: return function(value, index, collection) {
73
+ return func.call(context, value, index, collection);
74
+ };
75
+ case 4: return function(accumulator, value, index, collection) {
76
+ return func.call(context, accumulator, value, index, collection);
77
+ };
78
+ }
79
+ return function() {
80
+ return func.apply(context, arguments);
81
+ };
82
+ };
83
+
84
+ // A mostly-internal function to generate callbacks that can be applied
85
+ // to each element in a collection, returning the desired result — either
86
+ // identity, an arbitrary callback, a property matcher, or a property accessor.
87
+ var cb = function(value, context, argCount) {
88
+ if (value == null) return _.identity;
89
+ if (_.isFunction(value)) return optimizeCb(value, context, argCount);
90
+ if (_.isObject(value)) return _.matcher(value);
91
+ return _.property(value);
92
+ };
93
+ _.iteratee = function(value, context) {
94
+ return cb(value, context, Infinity);
95
+ };
96
+
97
+ // An internal function for creating assigner functions.
98
+ var createAssigner = function(keysFunc, undefinedOnly) {
99
+ return function(obj) {
100
+ var length = arguments.length;
101
+ if (length < 2 || obj == null) return obj;
102
+ for (var index = 1; index < length; index++) {
103
+ var source = arguments[index],
104
+ keys = keysFunc(source),
105
+ l = keys.length;
106
+ for (var i = 0; i < l; i++) {
107
+ var key = keys[i];
108
+ if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key];
109
+ }
110
+ }
111
+ return obj;
112
+ };
113
+ };
114
+
115
+ // An internal function for creating a new object that inherits from another.
116
+ var baseCreate = function(prototype) {
117
+ if (!_.isObject(prototype)) return {};
118
+ if (nativeCreate) return nativeCreate(prototype);
119
+ Ctor.prototype = prototype;
120
+ var result = new Ctor;
121
+ Ctor.prototype = null;
122
+ return result;
123
+ };
124
+
125
+ // Helper for collection methods to determine whether a collection
126
+ // should be iterated as an array or as an object
127
+ // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
128
+ var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
129
+ var isArrayLike = function(collection) {
130
+ var length = collection && collection.length;
131
+ return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
132
+ };
133
+
134
+ // Collection Functions
135
+ // --------------------
136
+
137
+ // The cornerstone, an `each` implementation, aka `forEach`.
138
+ // Handles raw objects in addition to array-likes. Treats all
139
+ // sparse array-likes as if they were dense.
140
+ _.each = _.forEach = function(obj, iteratee, context) {
141
+ iteratee = optimizeCb(iteratee, context);
142
+ var i, length;
143
+ if (isArrayLike(obj)) {
144
+ for (i = 0, length = obj.length; i < length; i++) {
145
+ iteratee(obj[i], i, obj);
146
+ }
147
+ } else {
148
+ var keys = _.keys(obj);
149
+ for (i = 0, length = keys.length; i < length; i++) {
150
+ iteratee(obj[keys[i]], keys[i], obj);
151
+ }
152
+ }
153
+ return obj;
154
+ };
155
+
156
+ // Return the results of applying the iteratee to each element.
157
+ _.map = _.collect = function(obj, iteratee, context) {
158
+ iteratee = cb(iteratee, context);
159
+ var keys = !isArrayLike(obj) && _.keys(obj),
160
+ length = (keys || obj).length,
161
+ results = Array(length);
162
+ for (var index = 0; index < length; index++) {
163
+ var currentKey = keys ? keys[index] : index;
164
+ results[index] = iteratee(obj[currentKey], currentKey, obj);
165
+ }
166
+ return results;
167
+ };
168
+
169
+ // Create a reducing function iterating left or right.
170
+ function createReduce(dir) {
171
+ // Optimized iterator function as using arguments.length
172
+ // in the main function will deoptimize the, see #1991.
173
+ function iterator(obj, iteratee, memo, keys, index, length) {
174
+ for (; index >= 0 && index < length; index += dir) {
175
+ var currentKey = keys ? keys[index] : index;
176
+ memo = iteratee(memo, obj[currentKey], currentKey, obj);
177
+ }
178
+ return memo;
179
+ }
180
+
181
+ return function(obj, iteratee, memo, context) {
182
+ iteratee = optimizeCb(iteratee, context, 4);
183
+ var keys = !isArrayLike(obj) && _.keys(obj),
184
+ length = (keys || obj).length,
185
+ index = dir > 0 ? 0 : length - 1;
186
+ // Determine the initial value if none is provided.
187
+ if (arguments.length < 3) {
188
+ memo = obj[keys ? keys[index] : index];
189
+ index += dir;
190
+ }
191
+ return iterator(obj, iteratee, memo, keys, index, length);
192
+ };
193
+ }
194
+
195
+ // **Reduce** builds up a single result from a list of values, aka `inject`,
196
+ // or `foldl`.
197
+ _.reduce = _.foldl = _.inject = createReduce(1);
198
+
199
+ // The right-associative version of reduce, also known as `foldr`.
200
+ _.reduceRight = _.foldr = createReduce(-1);
201
+
202
+ // Return the first value which passes a truth test. Aliased as `detect`.
203
+ _.find = _.detect = function(obj, predicate, context) {
204
+ var key;
205
+ if (isArrayLike(obj)) {
206
+ key = _.findIndex(obj, predicate, context);
207
+ } else {
208
+ key = _.findKey(obj, predicate, context);
209
+ }
210
+ if (key !== void 0 && key !== -1) return obj[key];
211
+ };
212
+
213
+ // Return all the elements that pass a truth test.
214
+ // Aliased as `select`.
215
+ _.filter = _.select = function(obj, predicate, context) {
216
+ var results = [];
217
+ predicate = cb(predicate, context);
218
+ _.each(obj, function(value, index, list) {
219
+ if (predicate(value, index, list)) results.push(value);
220
+ });
221
+ return results;
222
+ };
223
+
224
+ // Return all the elements for which a truth test fails.
225
+ _.reject = function(obj, predicate, context) {
226
+ return _.filter(obj, _.negate(cb(predicate)), context);
227
+ };
228
+
229
+ // Determine whether all of the elements match a truth test.
230
+ // Aliased as `all`.
231
+ _.every = _.all = function(obj, predicate, context) {
232
+ predicate = cb(predicate, context);
233
+ var keys = !isArrayLike(obj) && _.keys(obj),
234
+ length = (keys || obj).length;
235
+ for (var index = 0; index < length; index++) {
236
+ var currentKey = keys ? keys[index] : index;
237
+ if (!predicate(obj[currentKey], currentKey, obj)) return false;
238
+ }
239
+ return true;
240
+ };
241
+
242
+ // Determine if at least one element in the object matches a truth test.
243
+ // Aliased as `any`.
244
+ _.some = _.any = function(obj, predicate, context) {
245
+ predicate = cb(predicate, context);
246
+ var keys = !isArrayLike(obj) && _.keys(obj),
247
+ length = (keys || obj).length;
248
+ for (var index = 0; index < length; index++) {
249
+ var currentKey = keys ? keys[index] : index;
250
+ if (predicate(obj[currentKey], currentKey, obj)) return true;
251
+ }
252
+ return false;
253
+ };
254
+
255
+ // Determine if the array or object contains a given value (using `===`).
256
+ // Aliased as `includes` and `include`.
257
+ _.contains = _.includes = _.include = function(obj, target, fromIndex) {
258
+ if (!isArrayLike(obj)) obj = _.values(obj);
259
+ return _.indexOf(obj, target, typeof fromIndex == 'number' && fromIndex) >= 0;
260
+ };
261
+
262
+ // Invoke a method (with arguments) on every item in a collection.
263
+ _.invoke = function(obj, method) {
264
+ var args = slice.call(arguments, 2);
265
+ var isFunc = _.isFunction(method);
266
+ return _.map(obj, function(value) {
267
+ var func = isFunc ? method : value[method];
268
+ return func == null ? func : func.apply(value, args);
269
+ });
270
+ };
271
+
272
+ // Convenience version of a common use case of `map`: fetching a property.
273
+ _.pluck = function(obj, key) {
274
+ return _.map(obj, _.property(key));
275
+ };
276
+
277
+ // Convenience version of a common use case of `filter`: selecting only objects
278
+ // containing specific `key:value` pairs.
279
+ _.where = function(obj, attrs) {
280
+ return _.filter(obj, _.matcher(attrs));
281
+ };
282
+
283
+ // Convenience version of a common use case of `find`: getting the first object
284
+ // containing specific `key:value` pairs.
285
+ _.findWhere = function(obj, attrs) {
286
+ return _.find(obj, _.matcher(attrs));
287
+ };
288
+
289
+ // Return the maximum element (or element-based computation).
290
+ _.max = function(obj, iteratee, context) {
291
+ var result = -Infinity, lastComputed = -Infinity,
292
+ value, computed;
293
+ if (iteratee == null && obj != null) {
294
+ obj = isArrayLike(obj) ? obj : _.values(obj);
295
+ for (var i = 0, length = obj.length; i < length; i++) {
296
+ value = obj[i];
297
+ if (value > result) {
298
+ result = value;
299
+ }
300
+ }
301
+ } else {
302
+ iteratee = cb(iteratee, context);
303
+ _.each(obj, function(value, index, list) {
304
+ computed = iteratee(value, index, list);
305
+ if (computed > lastComputed || computed === -Infinity && result === -Infinity) {
306
+ result = value;
307
+ lastComputed = computed;
308
+ }
309
+ });
310
+ }
311
+ return result;
312
+ };
313
+
314
+ // Return the minimum element (or element-based computation).
315
+ _.min = function(obj, iteratee, context) {
316
+ var result = Infinity, lastComputed = Infinity,
317
+ value, computed;
318
+ if (iteratee == null && obj != null) {
319
+ obj = isArrayLike(obj) ? obj : _.values(obj);
320
+ for (var i = 0, length = obj.length; i < length; i++) {
321
+ value = obj[i];
322
+ if (value < result) {
323
+ result = value;
324
+ }
325
+ }
326
+ } else {
327
+ iteratee = cb(iteratee, context);
328
+ _.each(obj, function(value, index, list) {
329
+ computed = iteratee(value, index, list);
330
+ if (computed < lastComputed || computed === Infinity && result === Infinity) {
331
+ result = value;
332
+ lastComputed = computed;
333
+ }
334
+ });
335
+ }
336
+ return result;
337
+ };
338
+
339
+ // Shuffle a collection, using the modern version of the
340
+ // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
341
+ _.shuffle = function(obj) {
342
+ var set = isArrayLike(obj) ? obj : _.values(obj);
343
+ var length = set.length;
344
+ var shuffled = Array(length);
345
+ for (var index = 0, rand; index < length; index++) {
346
+ rand = _.random(0, index);
347
+ if (rand !== index) shuffled[index] = shuffled[rand];
348
+ shuffled[rand] = set[index];
349
+ }
350
+ return shuffled;
351
+ };
352
+
353
+ // Sample **n** random values from a collection.
354
+ // If **n** is not specified, returns a single random element.
355
+ // The internal `guard` argument allows it to work with `map`.
356
+ _.sample = function(obj, n, guard) {
357
+ if (n == null || guard) {
358
+ if (!isArrayLike(obj)) obj = _.values(obj);
359
+ return obj[_.random(obj.length - 1)];
360
+ }
361
+ return _.shuffle(obj).slice(0, Math.max(0, n));
362
+ };
363
+
364
+ // Sort the object's values by a criterion produced by an iteratee.
365
+ _.sortBy = function(obj, iteratee, context) {
366
+ iteratee = cb(iteratee, context);
367
+ return _.pluck(_.map(obj, function(value, index, list) {
368
+ return {
369
+ value: value,
370
+ index: index,
371
+ criteria: iteratee(value, index, list)
372
+ };
373
+ }).sort(function(left, right) {
374
+ var a = left.criteria;
375
+ var b = right.criteria;
376
+ if (a !== b) {
377
+ if (a > b || a === void 0) return 1;
378
+ if (a < b || b === void 0) return -1;
379
+ }
380
+ return left.index - right.index;
381
+ }), 'value');
382
+ };
383
+
384
+ // An internal function used for aggregate "group by" operations.
385
+ var group = function(behavior) {
386
+ return function(obj, iteratee, context) {
387
+ var result = {};
388
+ iteratee = cb(iteratee, context);
389
+ _.each(obj, function(value, index) {
390
+ var key = iteratee(value, index, obj);
391
+ behavior(result, value, key);
392
+ });
393
+ return result;
394
+ };
395
+ };
396
+
397
+ // Groups the object's values by a criterion. Pass either a string attribute
398
+ // to group by, or a function that returns the criterion.
399
+ _.groupBy = group(function(result, value, key) {
400
+ if (_.has(result, key)) result[key].push(value); else result[key] = [value];
401
+ });
402
+
403
+ // Indexes the object's values by a criterion, similar to `groupBy`, but for
404
+ // when you know that your index values will be unique.
405
+ _.indexBy = group(function(result, value, key) {
406
+ result[key] = value;
407
+ });
408
+
409
+ // Counts instances of an object that group by a certain criterion. Pass
410
+ // either a string attribute to count by, or a function that returns the
411
+ // criterion.
412
+ _.countBy = group(function(result, value, key) {
413
+ if (_.has(result, key)) result[key]++; else result[key] = 1;
414
+ });
415
+
416
+ // Safely create a real, live array from anything iterable.
417
+ _.toArray = function(obj) {
418
+ if (!obj) return [];
419
+ if (_.isArray(obj)) return slice.call(obj);
420
+ if (isArrayLike(obj)) return _.map(obj, _.identity);
421
+ return _.values(obj);
422
+ };
423
+
424
+ // Return the number of elements in an object.
425
+ _.size = function(obj) {
426
+ if (obj == null) return 0;
427
+ return isArrayLike(obj) ? obj.length : _.keys(obj).length;
428
+ };
429
+
430
+ // Split a collection into two arrays: one whose elements all satisfy the given
431
+ // predicate, and one whose elements all do not satisfy the predicate.
432
+ _.partition = function(obj, predicate, context) {
433
+ predicate = cb(predicate, context);
434
+ var pass = [], fail = [];
435
+ _.each(obj, function(value, key, obj) {
436
+ (predicate(value, key, obj) ? pass : fail).push(value);
437
+ });
438
+ return [pass, fail];
439
+ };
440
+
441
+ // Array Functions
442
+ // ---------------
443
+
444
+ // Get the first element of an array. Passing **n** will return the first N
445
+ // values in the array. Aliased as `head` and `take`. The **guard** check
446
+ // allows it to work with `_.map`.
447
+ _.first = _.head = _.take = function(array, n, guard) {
448
+ if (array == null) return void 0;
449
+ if (n == null || guard) return array[0];
450
+ return _.initial(array, array.length - n);
451
+ };
452
+
453
+ // Returns everything but the last entry of the array. Especially useful on
454
+ // the arguments object. Passing **n** will return all the values in
455
+ // the array, excluding the last N.
456
+ _.initial = function(array, n, guard) {
457
+ return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));
458
+ };
459
+
460
+ // Get the last element of an array. Passing **n** will return the last N
461
+ // values in the array.
462
+ _.last = function(array, n, guard) {
463
+ if (array == null) return void 0;
464
+ if (n == null || guard) return array[array.length - 1];
465
+ return _.rest(array, Math.max(0, array.length - n));
466
+ };
467
+
468
+ // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.
469
+ // Especially useful on the arguments object. Passing an **n** will return
470
+ // the rest N values in the array.
471
+ _.rest = _.tail = _.drop = function(array, n, guard) {
472
+ return slice.call(array, n == null || guard ? 1 : n);
473
+ };
474
+
475
+ // Trim out all falsy values from an array.
476
+ _.compact = function(array) {
477
+ return _.filter(array, _.identity);
478
+ };
479
+
480
+ // Internal implementation of a recursive `flatten` function.
481
+ var flatten = function(input, shallow, strict, startIndex) {
482
+ var output = [], idx = 0;
483
+ for (var i = startIndex || 0, length = input && input.length; i < length; i++) {
484
+ var value = input[i];
485
+ if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {
486
+ //flatten current level of array or arguments object
487
+ if (!shallow) value = flatten(value, shallow, strict);
488
+ var j = 0, len = value.length;
489
+ output.length += len;
490
+ while (j < len) {
491
+ output[idx++] = value[j++];
492
+ }
493
+ } else if (!strict) {
494
+ output[idx++] = value;
495
+ }
496
+ }
497
+ return output;
498
+ };
499
+
500
+ // Flatten out an array, either recursively (by default), or just one level.
501
+ _.flatten = function(array, shallow) {
502
+ return flatten(array, shallow, false);
503
+ };
504
+
505
+ // Return a version of the array that does not contain the specified value(s).
506
+ _.without = function(array) {
507
+ return _.difference(array, slice.call(arguments, 1));
508
+ };
509
+
510
+ // Produce a duplicate-free version of the array. If the array has already
511
+ // been sorted, you have the option of using a faster algorithm.
512
+ // Aliased as `unique`.
513
+ _.uniq = _.unique = function(array, isSorted, iteratee, context) {
514
+ if (array == null) return [];
515
+ if (!_.isBoolean(isSorted)) {
516
+ context = iteratee;
517
+ iteratee = isSorted;
518
+ isSorted = false;
519
+ }
520
+ if (iteratee != null) iteratee = cb(iteratee, context);
521
+ var result = [];
522
+ var seen = [];
523
+ for (var i = 0, length = array.length; i < length; i++) {
524
+ var value = array[i],
525
+ computed = iteratee ? iteratee(value, i, array) : value;
526
+ if (isSorted) {
527
+ if (!i || seen !== computed) result.push(value);
528
+ seen = computed;
529
+ } else if (iteratee) {
530
+ if (!_.contains(seen, computed)) {
531
+ seen.push(computed);
532
+ result.push(value);
533
+ }
534
+ } else if (!_.contains(result, value)) {
535
+ result.push(value);
536
+ }
537
+ }
538
+ return result;
539
+ };
540
+
541
+ // Produce an array that contains the union: each distinct element from all of
542
+ // the passed-in arrays.
543
+ _.union = function() {
544
+ return _.uniq(flatten(arguments, true, true));
545
+ };
546
+
547
+ // Produce an array that contains every item shared between all the
548
+ // passed-in arrays.
549
+ _.intersection = function(array) {
550
+ if (array == null) return [];
551
+ var result = [];
552
+ var argsLength = arguments.length;
553
+ for (var i = 0, length = array.length; i < length; i++) {
554
+ var item = array[i];
555
+ if (_.contains(result, item)) continue;
556
+ for (var j = 1; j < argsLength; j++) {
557
+ if (!_.contains(arguments[j], item)) break;
558
+ }
559
+ if (j === argsLength) result.push(item);
560
+ }
561
+ return result;
562
+ };
563
+
564
+ // Take the difference between one array and a number of other arrays.
565
+ // Only the elements present in just the first array will remain.
566
+ _.difference = function(array) {
567
+ var rest = flatten(arguments, true, true, 1);
568
+ return _.filter(array, function(value){
569
+ return !_.contains(rest, value);
570
+ });
571
+ };
572
+
573
+ // Zip together multiple lists into a single array -- elements that share
574
+ // an index go together.
575
+ _.zip = function() {
576
+ return _.unzip(arguments);
577
+ };
578
+
579
+ // Complement of _.zip. Unzip accepts an array of arrays and groups
580
+ // each array's elements on shared indices
581
+ _.unzip = function(array) {
582
+ var length = array && _.max(array, 'length').length || 0;
583
+ var result = Array(length);
584
+
585
+ for (var index = 0; index < length; index++) {
586
+ result[index] = _.pluck(array, index);
587
+ }
588
+ return result;
589
+ };
590
+
591
+ // Converts lists into objects. Pass either a single array of `[key, value]`
592
+ // pairs, or two parallel arrays of the same length -- one of keys, and one of
593
+ // the corresponding values.
594
+ _.object = function(list, values) {
595
+ var result = {};
596
+ for (var i = 0, length = list && list.length; i < length; i++) {
597
+ if (values) {
598
+ result[list[i]] = values[i];
599
+ } else {
600
+ result[list[i][0]] = list[i][1];
601
+ }
602
+ }
603
+ return result;
604
+ };
605
+
606
+ // Return the position of the first occurrence of an item in an array,
607
+ // or -1 if the item is not included in the array.
608
+ // If the array is large and already in sort order, pass `true`
609
+ // for **isSorted** to use binary search.
610
+ _.indexOf = function(array, item, isSorted) {
611
+ var i = 0, length = array && array.length;
612
+ if (typeof isSorted == 'number') {
613
+ i = isSorted < 0 ? Math.max(0, length + isSorted) : isSorted;
614
+ } else if (isSorted && length) {
615
+ i = _.sortedIndex(array, item);
616
+ return array[i] === item ? i : -1;
617
+ }
618
+ if (item !== item) {
619
+ return _.findIndex(slice.call(array, i), _.isNaN);
620
+ }
621
+ for (; i < length; i++) if (array[i] === item) return i;
622
+ return -1;
623
+ };
624
+
625
+ _.lastIndexOf = function(array, item, from) {
626
+ var idx = array ? array.length : 0;
627
+ if (typeof from == 'number') {
628
+ idx = from < 0 ? idx + from + 1 : Math.min(idx, from + 1);
629
+ }
630
+ if (item !== item) {
631
+ return _.findLastIndex(slice.call(array, 0, idx), _.isNaN);
632
+ }
633
+ while (--idx >= 0) if (array[idx] === item) return idx;
634
+ return -1;
635
+ };
636
+
637
+ // Generator function to create the findIndex and findLastIndex functions
638
+ function createIndexFinder(dir) {
639
+ return function(array, predicate, context) {
640
+ predicate = cb(predicate, context);
641
+ var length = array != null && array.length;
642
+ var index = dir > 0 ? 0 : length - 1;
643
+ for (; index >= 0 && index < length; index += dir) {
644
+ if (predicate(array[index], index, array)) return index;
645
+ }
646
+ return -1;
647
+ };
648
+ }
649
+
650
+ // Returns the first index on an array-like that passes a predicate test
651
+ _.findIndex = createIndexFinder(1);
652
+
653
+ _.findLastIndex = createIndexFinder(-1);
654
+
655
+ // Use a comparator function to figure out the smallest index at which
656
+ // an object should be inserted so as to maintain order. Uses binary search.
657
+ _.sortedIndex = function(array, obj, iteratee, context) {
658
+ iteratee = cb(iteratee, context, 1);
659
+ var value = iteratee(obj);
660
+ var low = 0, high = array.length;
661
+ while (low < high) {
662
+ var mid = Math.floor((low + high) / 2);
663
+ if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;
664
+ }
665
+ return low;
666
+ };
667
+
668
+ // Generate an integer Array containing an arithmetic progression. A port of
669
+ // the native Python `range()` function. See
670
+ // [the Python documentation](http://docs.python.org/library/functions.html#range).
671
+ _.range = function(start, stop, step) {
672
+ if (arguments.length <= 1) {
673
+ stop = start || 0;
674
+ start = 0;
675
+ }
676
+ step = step || 1;
677
+
678
+ var length = Math.max(Math.ceil((stop - start) / step), 0);
679
+ var range = Array(length);
680
+
681
+ for (var idx = 0; idx < length; idx++, start += step) {
682
+ range[idx] = start;
683
+ }
684
+
685
+ return range;
686
+ };
687
+
688
+ // Function (ahem) Functions
689
+ // ------------------
690
+
691
+ // Determines whether to execute a function as a constructor
692
+ // or a normal function with the provided arguments
693
+ var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {
694
+ if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);
695
+ var self = baseCreate(sourceFunc.prototype);
696
+ var result = sourceFunc.apply(self, args);
697
+ if (_.isObject(result)) return result;
698
+ return self;
699
+ };
700
+
701
+ // Create a function bound to a given object (assigning `this`, and arguments,
702
+ // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if
703
+ // available.
704
+ _.bind = function(func, context) {
705
+ if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
706
+ if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');
707
+ var args = slice.call(arguments, 2);
708
+ var bound = function() {
709
+ return executeBound(func, bound, context, this, args.concat(slice.call(arguments)));
710
+ };
711
+ return bound;
712
+ };
713
+
714
+ // Partially apply a function by creating a version that has had some of its
715
+ // arguments pre-filled, without changing its dynamic `this` context. _ acts
716
+ // as a placeholder, allowing any combination of arguments to be pre-filled.
717
+ _.partial = function(func) {
718
+ var boundArgs = slice.call(arguments, 1);
719
+ var bound = function() {
720
+ var position = 0, length = boundArgs.length;
721
+ var args = Array(length);
722
+ for (var i = 0; i < length; i++) {
723
+ args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i];
724
+ }
725
+ while (position < arguments.length) args.push(arguments[position++]);
726
+ return executeBound(func, bound, this, this, args);
727
+ };
728
+ return bound;
729
+ };
730
+
731
+ // Bind a number of an object's methods to that object. Remaining arguments
732
+ // are the method names to be bound. Useful for ensuring that all callbacks
733
+ // defined on an object belong to it.
734
+ _.bindAll = function(obj) {
735
+ var i, length = arguments.length, key;
736
+ if (length <= 1) throw new Error('bindAll must be passed function names');
737
+ for (i = 1; i < length; i++) {
738
+ key = arguments[i];
739
+ obj[key] = _.bind(obj[key], obj);
740
+ }
741
+ return obj;
742
+ };
743
+
744
+ // Memoize an expensive function by storing its results.
745
+ _.memoize = function(func, hasher) {
746
+ var memoize = function(key) {
747
+ var cache = memoize.cache;
748
+ var address = '' + (hasher ? hasher.apply(this, arguments) : key);
749
+ if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);
750
+ return cache[address];
751
+ };
752
+ memoize.cache = {};
753
+ return memoize;
754
+ };
755
+
756
+ // Delays a function for the given number of milliseconds, and then calls
757
+ // it with the arguments supplied.
758
+ _.delay = function(func, wait) {
759
+ var args = slice.call(arguments, 2);
760
+ return setTimeout(function(){
761
+ return func.apply(null, args);
762
+ }, wait);
763
+ };
764
+
765
+ // Defers a function, scheduling it to run after the current call stack has
766
+ // cleared.
767
+ _.defer = _.partial(_.delay, _, 1);
768
+
769
+ // Returns a function, that, when invoked, will only be triggered at most once
770
+ // during a given window of time. Normally, the throttled function will run
771
+ // as much as it can, without ever going more than once per `wait` duration;
772
+ // but if you'd like to disable the execution on the leading edge, pass
773
+ // `{leading: false}`. To disable execution on the trailing edge, ditto.
774
+ _.throttle = function(func, wait, options) {
775
+ var context, args, result;
776
+ var timeout = null;
777
+ var previous = 0;
778
+ if (!options) options = {};
779
+ var later = function() {
780
+ previous = options.leading === false ? 0 : _.now();
781
+ timeout = null;
782
+ result = func.apply(context, args);
783
+ if (!timeout) context = args = null;
784
+ };
785
+ return function() {
786
+ var now = _.now();
787
+ if (!previous && options.leading === false) previous = now;
788
+ var remaining = wait - (now - previous);
789
+ context = this;
790
+ args = arguments;
791
+ if (remaining <= 0 || remaining > wait) {
792
+ if (timeout) {
793
+ clearTimeout(timeout);
794
+ timeout = null;
795
+ }
796
+ previous = now;
797
+ result = func.apply(context, args);
798
+ if (!timeout) context = args = null;
799
+ } else if (!timeout && options.trailing !== false) {
800
+ timeout = setTimeout(later, remaining);
801
+ }
802
+ return result;
803
+ };
804
+ };
805
+
806
+ // Returns a function, that, as long as it continues to be invoked, will not
807
+ // be triggered. The function will be called after it stops being called for
808
+ // N milliseconds. If `immediate` is passed, trigger the function on the
809
+ // leading edge, instead of the trailing.
810
+ _.debounce = function(func, wait, immediate) {
811
+ var timeout, args, context, timestamp, result;
812
+
813
+ var later = function() {
814
+ var last = _.now() - timestamp;
815
+
816
+ if (last < wait && last >= 0) {
817
+ timeout = setTimeout(later, wait - last);
818
+ } else {
819
+ timeout = null;
820
+ if (!immediate) {
821
+ result = func.apply(context, args);
822
+ if (!timeout) context = args = null;
823
+ }
824
+ }
825
+ };
826
+
827
+ return function() {
828
+ context = this;
829
+ args = arguments;
830
+ timestamp = _.now();
831
+ var callNow = immediate && !timeout;
832
+ if (!timeout) timeout = setTimeout(later, wait);
833
+ if (callNow) {
834
+ result = func.apply(context, args);
835
+ context = args = null;
836
+ }
837
+
838
+ return result;
839
+ };
840
+ };
841
+
842
+ // Returns the first function passed as an argument to the second,
843
+ // allowing you to adjust arguments, run code before and after, and
844
+ // conditionally execute the original function.
845
+ _.wrap = function(func, wrapper) {
846
+ return _.partial(wrapper, func);
847
+ };
848
+
849
+ // Returns a negated version of the passed-in predicate.
850
+ _.negate = function(predicate) {
851
+ return function() {
852
+ return !predicate.apply(this, arguments);
853
+ };
854
+ };
855
+
856
+ // Returns a function that is the composition of a list of functions, each
857
+ // consuming the return value of the function that follows.
858
+ _.compose = function() {
859
+ var args = arguments;
860
+ var start = args.length - 1;
861
+ return function() {
862
+ var i = start;
863
+ var result = args[start].apply(this, arguments);
864
+ while (i--) result = args[i].call(this, result);
865
+ return result;
866
+ };
867
+ };
868
+
869
+ // Returns a function that will only be executed on and after the Nth call.
870
+ _.after = function(times, func) {
871
+ return function() {
872
+ if (--times < 1) {
873
+ return func.apply(this, arguments);
874
+ }
875
+ };
876
+ };
877
+
878
+ // Returns a function that will only be executed up to (but not including) the Nth call.
879
+ _.before = function(times, func) {
880
+ var memo;
881
+ return function() {
882
+ if (--times > 0) {
883
+ memo = func.apply(this, arguments);
884
+ }
885
+ if (times <= 1) func = null;
886
+ return memo;
887
+ };
888
+ };
889
+
890
+ // Returns a function that will be executed at most one time, no matter how
891
+ // often you call it. Useful for lazy initialization.
892
+ _.once = _.partial(_.before, 2);
893
+
894
+ // Object Functions
895
+ // ----------------
896
+
897
+ // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.
898
+ var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');
899
+ var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',
900
+ 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];
901
+
902
+ function collectNonEnumProps(obj, keys) {
903
+ var nonEnumIdx = nonEnumerableProps.length;
904
+ var constructor = obj.constructor;
905
+ var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto;
906
+
907
+ // Constructor is a special case.
908
+ var prop = 'constructor';
909
+ if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);
910
+
911
+ while (nonEnumIdx--) {
912
+ prop = nonEnumerableProps[nonEnumIdx];
913
+ if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {
914
+ keys.push(prop);
915
+ }
916
+ }
917
+ }
918
+
919
+ // Retrieve the names of an object's own properties.
920
+ // Delegates to **ECMAScript 5**'s native `Object.keys`
921
+ _.keys = function(obj) {
922
+ if (!_.isObject(obj)) return [];
923
+ if (nativeKeys) return nativeKeys(obj);
924
+ var keys = [];
925
+ for (var key in obj) if (_.has(obj, key)) keys.push(key);
926
+ // Ahem, IE < 9.
927
+ if (hasEnumBug) collectNonEnumProps(obj, keys);
928
+ return keys;
929
+ };
930
+
931
+ // Retrieve all the property names of an object.
932
+ _.allKeys = function(obj) {
933
+ if (!_.isObject(obj)) return [];
934
+ var keys = [];
935
+ for (var key in obj) keys.push(key);
936
+ // Ahem, IE < 9.
937
+ if (hasEnumBug) collectNonEnumProps(obj, keys);
938
+ return keys;
939
+ };
940
+
941
+ // Retrieve the values of an object's properties.
942
+ _.values = function(obj) {
943
+ var keys = _.keys(obj);
944
+ var length = keys.length;
945
+ var values = Array(length);
946
+ for (var i = 0; i < length; i++) {
947
+ values[i] = obj[keys[i]];
948
+ }
949
+ return values;
950
+ };
951
+
952
+ // Returns the results of applying the iteratee to each element of the object
953
+ // In contrast to _.map it returns an object
954
+ _.mapObject = function(obj, iteratee, context) {
955
+ iteratee = cb(iteratee, context);
956
+ var keys = _.keys(obj),
957
+ length = keys.length,
958
+ results = {},
959
+ currentKey;
960
+ for (var index = 0; index < length; index++) {
961
+ currentKey = keys[index];
962
+ results[currentKey] = iteratee(obj[currentKey], currentKey, obj);
963
+ }
964
+ return results;
965
+ };
966
+
967
+ // Convert an object into a list of `[key, value]` pairs.
968
+ _.pairs = function(obj) {
969
+ var keys = _.keys(obj);
970
+ var length = keys.length;
971
+ var pairs = Array(length);
972
+ for (var i = 0; i < length; i++) {
973
+ pairs[i] = [keys[i], obj[keys[i]]];
974
+ }
975
+ return pairs;
976
+ };
977
+
978
+ // Invert the keys and values of an object. The values must be serializable.
979
+ _.invert = function(obj) {
980
+ var result = {};
981
+ var keys = _.keys(obj);
982
+ for (var i = 0, length = keys.length; i < length; i++) {
983
+ result[obj[keys[i]]] = keys[i];
984
+ }
985
+ return result;
986
+ };
987
+
988
+ // Return a sorted list of the function names available on the object.
989
+ // Aliased as `methods`
990
+ _.functions = _.methods = function(obj) {
991
+ var names = [];
992
+ for (var key in obj) {
993
+ if (_.isFunction(obj[key])) names.push(key);
994
+ }
995
+ return names.sort();
996
+ };
997
+
998
+ // Extend a given object with all the properties in passed-in object(s).
999
+ _.extend = createAssigner(_.allKeys);
1000
+
1001
+ // Assigns a given object with all the own properties in the passed-in object(s)
1002
+ // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)
1003
+ _.extendOwn = _.assign = createAssigner(_.keys);
1004
+
1005
+ // Returns the first key on an object that passes a predicate test
1006
+ _.findKey = function(obj, predicate, context) {
1007
+ predicate = cb(predicate, context);
1008
+ var keys = _.keys(obj), key;
1009
+ for (var i = 0, length = keys.length; i < length; i++) {
1010
+ key = keys[i];
1011
+ if (predicate(obj[key], key, obj)) return key;
1012
+ }
1013
+ };
1014
+
1015
+ // Return a copy of the object only containing the whitelisted properties.
1016
+ _.pick = function(object, oiteratee, context) {
1017
+ var result = {}, obj = object, iteratee, keys;
1018
+ if (obj == null) return result;
1019
+ if (_.isFunction(oiteratee)) {
1020
+ keys = _.allKeys(obj);
1021
+ iteratee = optimizeCb(oiteratee, context);
1022
+ } else {
1023
+ keys = flatten(arguments, false, false, 1);
1024
+ iteratee = function(value, key, obj) { return key in obj; };
1025
+ obj = Object(obj);
1026
+ }
1027
+ for (var i = 0, length = keys.length; i < length; i++) {
1028
+ var key = keys[i];
1029
+ var value = obj[key];
1030
+ if (iteratee(value, key, obj)) result[key] = value;
1031
+ }
1032
+ return result;
1033
+ };
1034
+
1035
+ // Return a copy of the object without the blacklisted properties.
1036
+ _.omit = function(obj, iteratee, context) {
1037
+ if (_.isFunction(iteratee)) {
1038
+ iteratee = _.negate(iteratee);
1039
+ } else {
1040
+ var keys = _.map(flatten(arguments, false, false, 1), String);
1041
+ iteratee = function(value, key) {
1042
+ return !_.contains(keys, key);
1043
+ };
1044
+ }
1045
+ return _.pick(obj, iteratee, context);
1046
+ };
1047
+
1048
+ // Fill in a given object with default properties.
1049
+ _.defaults = createAssigner(_.allKeys, true);
1050
+
1051
+ // Create a (shallow-cloned) duplicate of an object.
1052
+ _.clone = function(obj) {
1053
+ if (!_.isObject(obj)) return obj;
1054
+ return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
1055
+ };
1056
+
1057
+ // Invokes interceptor with the obj, and then returns obj.
1058
+ // The primary purpose of this method is to "tap into" a method chain, in
1059
+ // order to perform operations on intermediate results within the chain.
1060
+ _.tap = function(obj, interceptor) {
1061
+ interceptor(obj);
1062
+ return obj;
1063
+ };
1064
+
1065
+ // Returns whether an object has a given set of `key:value` pairs.
1066
+ _.isMatch = function(object, attrs) {
1067
+ var keys = _.keys(attrs), length = keys.length;
1068
+ if (object == null) return !length;
1069
+ var obj = Object(object);
1070
+ for (var i = 0; i < length; i++) {
1071
+ var key = keys[i];
1072
+ if (attrs[key] !== obj[key] || !(key in obj)) return false;
1073
+ }
1074
+ return true;
1075
+ };
1076
+
1077
+
1078
+ // Internal recursive comparison function for `isEqual`.
1079
+ var eq = function(a, b, aStack, bStack) {
1080
+ // Identical objects are equal. `0 === -0`, but they aren't identical.
1081
+ // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
1082
+ if (a === b) return a !== 0 || 1 / a === 1 / b;
1083
+ // A strict comparison is necessary because `null == undefined`.
1084
+ if (a == null || b == null) return a === b;
1085
+ // Unwrap any wrapped objects.
1086
+ if (a instanceof _) a = a._wrapped;
1087
+ if (b instanceof _) b = b._wrapped;
1088
+ // Compare `[[Class]]` names.
1089
+ var className = toString.call(a);
1090
+ if (className !== toString.call(b)) return false;
1091
+ switch (className) {
1092
+ // Strings, numbers, regular expressions, dates, and booleans are compared by value.
1093
+ case '[object RegExp]':
1094
+ // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')
1095
+ case '[object String]':
1096
+ // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
1097
+ // equivalent to `new String("5")`.
1098
+ return '' + a === '' + b;
1099
+ case '[object Number]':
1100
+ // `NaN`s are equivalent, but non-reflexive.
1101
+ // Object(NaN) is equivalent to NaN
1102
+ if (+a !== +a) return +b !== +b;
1103
+ // An `egal` comparison is performed for other numeric values.
1104
+ return +a === 0 ? 1 / +a === 1 / b : +a === +b;
1105
+ case '[object Date]':
1106
+ case '[object Boolean]':
1107
+ // Coerce dates and booleans to numeric primitive values. Dates are compared by their
1108
+ // millisecond representations. Note that invalid dates with millisecond representations
1109
+ // of `NaN` are not equivalent.
1110
+ return +a === +b;
1111
+ }
1112
+
1113
+ var areArrays = className === '[object Array]';
1114
+ if (!areArrays) {
1115
+ if (typeof a != 'object' || typeof b != 'object') return false;
1116
+
1117
+ // Objects with different constructors are not equivalent, but `Object`s or `Array`s
1118
+ // from different frames are.
1119
+ var aCtor = a.constructor, bCtor = b.constructor;
1120
+ if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&
1121
+ _.isFunction(bCtor) && bCtor instanceof bCtor)
1122
+ && ('constructor' in a && 'constructor' in b)) {
1123
+ return false;
1124
+ }
1125
+ }
1126
+ // Assume equality for cyclic structures. The algorithm for detecting cyclic
1127
+ // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
1128
+
1129
+ // Initializing stack of traversed objects.
1130
+ // It's done here since we only need them for objects and arrays comparison.
1131
+ aStack = aStack || [];
1132
+ bStack = bStack || [];
1133
+ var length = aStack.length;
1134
+ while (length--) {
1135
+ // Linear search. Performance is inversely proportional to the number of
1136
+ // unique nested structures.
1137
+ if (aStack[length] === a) return bStack[length] === b;
1138
+ }
1139
+
1140
+ // Add the first object to the stack of traversed objects.
1141
+ aStack.push(a);
1142
+ bStack.push(b);
1143
+
1144
+ // Recursively compare objects and arrays.
1145
+ if (areArrays) {
1146
+ // Compare array lengths to determine if a deep comparison is necessary.
1147
+ length = a.length;
1148
+ if (length !== b.length) return false;
1149
+ // Deep compare the contents, ignoring non-numeric properties.
1150
+ while (length--) {
1151
+ if (!eq(a[length], b[length], aStack, bStack)) return false;
1152
+ }
1153
+ } else {
1154
+ // Deep compare objects.
1155
+ var keys = _.keys(a), key;
1156
+ length = keys.length;
1157
+ // Ensure that both objects contain the same number of properties before comparing deep equality.
1158
+ if (_.keys(b).length !== length) return false;
1159
+ while (length--) {
1160
+ // Deep compare each member
1161
+ key = keys[length];
1162
+ if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;
1163
+ }
1164
+ }
1165
+ // Remove the first object from the stack of traversed objects.
1166
+ aStack.pop();
1167
+ bStack.pop();
1168
+ return true;
1169
+ };
1170
+
1171
+ // Perform a deep comparison to check if two objects are equal.
1172
+ _.isEqual = function(a, b) {
1173
+ return eq(a, b);
1174
+ };
1175
+
1176
+ // Is a given array, string, or object empty?
1177
+ // An "empty" object has no enumerable own-properties.
1178
+ _.isEmpty = function(obj) {
1179
+ if (obj == null) return true;
1180
+ if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;
1181
+ return _.keys(obj).length === 0;
1182
+ };
1183
+
1184
+ // Is a given value a DOM element?
1185
+ _.isElement = function(obj) {
1186
+ return !!(obj && obj.nodeType === 1);
1187
+ };
1188
+
1189
+ // Is a given value an array?
1190
+ // Delegates to ECMA5's native Array.isArray
1191
+ _.isArray = nativeIsArray || function(obj) {
1192
+ return toString.call(obj) === '[object Array]';
1193
+ };
1194
+
1195
+ // Is a given variable an object?
1196
+ _.isObject = function(obj) {
1197
+ var type = typeof obj;
1198
+ return type === 'function' || type === 'object' && !!obj;
1199
+ };
1200
+
1201
+ // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError.
1202
+ _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) {
1203
+ _['is' + name] = function(obj) {
1204
+ return toString.call(obj) === '[object ' + name + ']';
1205
+ };
1206
+ });
1207
+
1208
+ // Define a fallback version of the method in browsers (ahem, IE < 9), where
1209
+ // there isn't any inspectable "Arguments" type.
1210
+ if (!_.isArguments(arguments)) {
1211
+ _.isArguments = function(obj) {
1212
+ return _.has(obj, 'callee');
1213
+ };
1214
+ }
1215
+
1216
+ // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,
1217
+ // IE 11 (#1621), and in Safari 8 (#1929).
1218
+ if (typeof /./ != 'function' && typeof Int8Array != 'object') {
1219
+ _.isFunction = function(obj) {
1220
+ return typeof obj == 'function' || false;
1221
+ };
1222
+ }
1223
+
1224
+ // Is a given object a finite number?
1225
+ _.isFinite = function(obj) {
1226
+ return isFinite(obj) && !isNaN(parseFloat(obj));
1227
+ };
1228
+
1229
+ // Is the given value `NaN`? (NaN is the only number which does not equal itself).
1230
+ _.isNaN = function(obj) {
1231
+ return _.isNumber(obj) && obj !== +obj;
1232
+ };
1233
+
1234
+ // Is a given value a boolean?
1235
+ _.isBoolean = function(obj) {
1236
+ return obj === true || obj === false || toString.call(obj) === '[object Boolean]';
1237
+ };
1238
+
1239
+ // Is a given value equal to null?
1240
+ _.isNull = function(obj) {
1241
+ return obj === null;
1242
+ };
1243
+
1244
+ // Is a given variable undefined?
1245
+ _.isUndefined = function(obj) {
1246
+ return obj === void 0;
1247
+ };
1248
+
1249
+ // Shortcut function for checking if an object has a given property directly
1250
+ // on itself (in other words, not on a prototype).
1251
+ _.has = function(obj, key) {
1252
+ return obj != null && hasOwnProperty.call(obj, key);
1253
+ };
1254
+
1255
+ // Utility Functions
1256
+ // -----------------
1257
+
1258
+ // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
1259
+ // previous owner. Returns a reference to the Underscore object.
1260
+ _.noConflict = function() {
1261
+ root._ = previousUnderscore;
1262
+ return this;
1263
+ };
1264
+
1265
+ // Keep the identity function around for default iteratees.
1266
+ _.identity = function(value) {
1267
+ return value;
1268
+ };
1269
+
1270
+ // Predicate-generating functions. Often useful outside of Underscore.
1271
+ _.constant = function(value) {
1272
+ return function() {
1273
+ return value;
1274
+ };
1275
+ };
1276
+
1277
+ _.noop = function(){};
1278
+
1279
+ _.property = function(key) {
1280
+ return function(obj) {
1281
+ return obj == null ? void 0 : obj[key];
1282
+ };
1283
+ };
1284
+
1285
+ // Generates a function for a given object that returns a given property.
1286
+ _.propertyOf = function(obj) {
1287
+ return obj == null ? function(){} : function(key) {
1288
+ return obj[key];
1289
+ };
1290
+ };
1291
+
1292
+ // Returns a predicate for checking whether an object has a given set of
1293
+ // `key:value` pairs.
1294
+ _.matcher = _.matches = function(attrs) {
1295
+ attrs = _.extendOwn({}, attrs);
1296
+ return function(obj) {
1297
+ return _.isMatch(obj, attrs);
1298
+ };
1299
+ };
1300
+
1301
+ // Run a function **n** times.
1302
+ _.times = function(n, iteratee, context) {
1303
+ var accum = Array(Math.max(0, n));
1304
+ iteratee = optimizeCb(iteratee, context, 1);
1305
+ for (var i = 0; i < n; i++) accum[i] = iteratee(i);
1306
+ return accum;
1307
+ };
1308
+
1309
+ // Return a random integer between min and max (inclusive).
1310
+ _.random = function(min, max) {
1311
+ if (max == null) {
1312
+ max = min;
1313
+ min = 0;
1314
+ }
1315
+ return min + Math.floor(Math.random() * (max - min + 1));
1316
+ };
1317
+
1318
+ // A (possibly faster) way to get the current timestamp as an integer.
1319
+ _.now = Date.now || function() {
1320
+ return new Date().getTime();
1321
+ };
1322
+
1323
+ // List of HTML entities for escaping.
1324
+ var escapeMap = {
1325
+ '&': '&amp;',
1326
+ '<': '&lt;',
1327
+ '>': '&gt;',
1328
+ '"': '&quot;',
1329
+ "'": '&#x27;',
1330
+ '`': '&#x60;'
1331
+ };
1332
+ var unescapeMap = _.invert(escapeMap);
1333
+
1334
+ // Functions for escaping and unescaping strings to/from HTML interpolation.
1335
+ var createEscaper = function(map) {
1336
+ var escaper = function(match) {
1337
+ return map[match];
1338
+ };
1339
+ // Regexes for identifying a key that needs to be escaped
1340
+ var source = '(?:' + _.keys(map).join('|') + ')';
1341
+ var testRegexp = RegExp(source);
1342
+ var replaceRegexp = RegExp(source, 'g');
1343
+ return function(string) {
1344
+ string = string == null ? '' : '' + string;
1345
+ return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;
1346
+ };
1347
+ };
1348
+ _.escape = createEscaper(escapeMap);
1349
+ _.unescape = createEscaper(unescapeMap);
1350
+
1351
+ // If the value of the named `property` is a function then invoke it with the
1352
+ // `object` as context; otherwise, return it.
1353
+ _.result = function(object, property, fallback) {
1354
+ var value = object == null ? void 0 : object[property];
1355
+ if (value === void 0) {
1356
+ value = fallback;
1357
+ }
1358
+ return _.isFunction(value) ? value.call(object) : value;
1359
+ };
1360
+
1361
+ // Generate a unique integer id (unique within the entire client session).
1362
+ // Useful for temporary DOM ids.
1363
+ var idCounter = 0;
1364
+ _.uniqueId = function(prefix) {
1365
+ var id = ++idCounter + '';
1366
+ return prefix ? prefix + id : id;
1367
+ };
1368
+
1369
+ // By default, Underscore uses ERB-style template delimiters, change the
1370
+ // following template settings to use alternative delimiters.
1371
+ _.templateSettings = {
1372
+ evaluate : /<%([\s\S]+?)%>/g,
1373
+ interpolate : /<%=([\s\S]+?)%>/g,
1374
+ escape : /<%-([\s\S]+?)%>/g
1375
+ };
1376
+
1377
+ // When customizing `templateSettings`, if you don't want to define an
1378
+ // interpolation, evaluation or escaping regex, we need one that is
1379
+ // guaranteed not to match.
1380
+ var noMatch = /(.)^/;
1381
+
1382
+ // Certain characters need to be escaped so that they can be put into a
1383
+ // string literal.
1384
+ var escapes = {
1385
+ "'": "'",
1386
+ '\\': '\\',
1387
+ '\r': 'r',
1388
+ '\n': 'n',
1389
+ '\u2028': 'u2028',
1390
+ '\u2029': 'u2029'
1391
+ };
1392
+
1393
+ var escaper = /\\|'|\r|\n|\u2028|\u2029/g;
1394
+
1395
+ var escapeChar = function(match) {
1396
+ return '\\' + escapes[match];
1397
+ };
1398
+
1399
+ // JavaScript micro-templating, similar to John Resig's implementation.
1400
+ // Underscore templating handles arbitrary delimiters, preserves whitespace,
1401
+ // and correctly escapes quotes within interpolated code.
1402
+ // NB: `oldSettings` only exists for backwards compatibility.
1403
+ _.template = function(text, settings, oldSettings) {
1404
+ if (!settings && oldSettings) settings = oldSettings;
1405
+ settings = _.defaults({}, settings, _.templateSettings);
1406
+
1407
+ // Combine delimiters into one regular expression via alternation.
1408
+ var matcher = RegExp([
1409
+ (settings.escape || noMatch).source,
1410
+ (settings.interpolate || noMatch).source,
1411
+ (settings.evaluate || noMatch).source
1412
+ ].join('|') + '|$', 'g');
1413
+
1414
+ // Compile the template source, escaping string literals appropriately.
1415
+ var index = 0;
1416
+ var source = "__p+='";
1417
+ text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {
1418
+ source += text.slice(index, offset).replace(escaper, escapeChar);
1419
+ index = offset + match.length;
1420
+
1421
+ if (escape) {
1422
+ source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'";
1423
+ } else if (interpolate) {
1424
+ source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'";
1425
+ } else if (evaluate) {
1426
+ source += "';\n" + evaluate + "\n__p+='";
1427
+ }
1428
+
1429
+ // Adobe VMs need the match returned to produce the correct offest.
1430
+ return match;
1431
+ });
1432
+ source += "';\n";
1433
+
1434
+ // If a variable is not specified, place data values in local scope.
1435
+ if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
1436
+
1437
+ source = "var __t,__p='',__j=Array.prototype.join," +
1438
+ "print=function(){__p+=__j.call(arguments,'');};\n" +
1439
+ source + 'return __p;\n';
1440
+
1441
+ try {
1442
+ var render = new Function(settings.variable || 'obj', '_', source);
1443
+ } catch (e) {
1444
+ e.source = source;
1445
+ throw e;
1446
+ }
1447
+
1448
+ var template = function(data) {
1449
+ return render.call(this, data, _);
1450
+ };
1451
+
1452
+ // Provide the compiled source as a convenience for precompilation.
1453
+ var argument = settings.variable || 'obj';
1454
+ template.source = 'function(' + argument + '){\n' + source + '}';
1455
+
1456
+ return template;
1457
+ };
1458
+
1459
+ // Add a "chain" function. Start chaining a wrapped Underscore object.
1460
+ _.chain = function(obj) {
1461
+ var instance = _(obj);
1462
+ instance._chain = true;
1463
+ return instance;
1464
+ };
1465
+
1466
+ // OOP
1467
+ // ---------------
1468
+ // If Underscore is called as a function, it returns a wrapped object that
1469
+ // can be used OO-style. This wrapper holds altered versions of all the
1470
+ // underscore functions. Wrapped objects may be chained.
1471
+
1472
+ // Helper function to continue chaining intermediate results.
1473
+ var result = function(instance, obj) {
1474
+ return instance._chain ? _(obj).chain() : obj;
1475
+ };
1476
+
1477
+ // Add your own custom functions to the Underscore object.
1478
+ _.mixin = function(obj) {
1479
+ _.each(_.functions(obj), function(name) {
1480
+ var func = _[name] = obj[name];
1481
+ _.prototype[name] = function() {
1482
+ var args = [this._wrapped];
1483
+ push.apply(args, arguments);
1484
+ return result(this, func.apply(_, args));
1485
+ };
1486
+ });
1487
+ };
1488
+
1489
+ // Add all of the Underscore functions to the wrapper object.
1490
+ _.mixin(_);
1491
+
1492
+ // Add all mutator Array functions to the wrapper.
1493
+ _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
1494
+ var method = ArrayProto[name];
1495
+ _.prototype[name] = function() {
1496
+ var obj = this._wrapped;
1497
+ method.apply(obj, arguments);
1498
+ if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];
1499
+ return result(this, obj);
1500
+ };
1501
+ });
1502
+
1503
+ // Add all accessor Array functions to the wrapper.
1504
+ _.each(['concat', 'join', 'slice'], function(name) {
1505
+ var method = ArrayProto[name];
1506
+ _.prototype[name] = function() {
1507
+ return result(this, method.apply(this._wrapped, arguments));
1508
+ };
1509
+ });
1510
+
1511
+ // Extracts the result from a wrapped and chained object.
1512
+ _.prototype.value = function() {
1513
+ return this._wrapped;
1514
+ };
1515
+
1516
+ // Provide unwrapping proxy for some methods used in engine operations
1517
+ // such as arithmetic and JSON stringification.
1518
+ _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;
1519
+
1520
+ _.prototype.toString = function() {
1521
+ return '' + this._wrapped;
1522
+ };
1523
+
1524
+ // AMD registration happens at the end for compatibility with AMD loaders
1525
+ // that may not enforce next-turn semantics on modules. Even though general
1526
+ // practice for AMD registration is to be anonymous, underscore registers
1527
+ // as a named module because, like jQuery, it is a base library that is
1528
+ // popular enough to be bundled in a third party lib, but not be part of
1529
+ // an AMD load request. Those cases could generate an error when an
1530
+ // anonymous define() is called outside of a loader request.
1531
+ if (typeof define === 'function' && define.amd) {
1532
+ define('underscore', [], function() {
1533
+ return _;
1534
+ });
1535
+ }
1536
+ }.call(this));