opal 0.10.6 → 0.11.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (450) hide show
  1. checksums.yaml +5 -5
  2. data/.codeclimate.yml +19 -0
  3. data/.gitmodules +1 -1
  4. data/.jshintrc +1 -2
  5. data/.travis.yml +26 -18
  6. data/CHANGELOG.md +89 -23
  7. data/{CODE_OF_CONDUCT.md → CONDUCT.md} +0 -0
  8. data/Gemfile +19 -21
  9. data/HACKING.md +2 -0
  10. data/README.md +7 -6
  11. data/Rakefile +1 -1
  12. data/appveyor.yml +21 -4
  13. data/benchmark-ips/bm_case.rb +33 -0
  14. data/benchmark-ips/bm_constants_lookup.rb +13 -0
  15. data/benchmark-ips/bm_is_number.rb +29 -0
  16. data/benchmark-ips/bm_symbol_to_proc.rb +19 -0
  17. data/benchmark/bm_constant_lookup_big.rb +799 -0
  18. data/benchmark/bm_constant_lookup_small.rb +59 -0
  19. data/benchmark/bm_module_definition_big.rb +400 -0
  20. data/benchmark/bm_module_definition_small.rb +30 -0
  21. data/bin/opal-repl +23 -1
  22. data/docs/compiled_ruby.md +16 -14
  23. data/docs/faq.md +3 -3
  24. data/docs/rspec.md +2 -1
  25. data/docs/unsupported_features.md +6 -4
  26. data/examples/rack/Gemfile +1 -0
  27. data/examples/rack/app/application.rb +14 -3
  28. data/examples/rack/app/user.rb +2 -0
  29. data/examples/rack/config.ru +1 -1
  30. data/examples/rack/index.html.erb +1 -0
  31. data/lib/opal.rb +6 -1
  32. data/lib/opal/ast/builder.rb +17 -0
  33. data/lib/opal/ast/node.rb +30 -0
  34. data/lib/opal/builder.rb +14 -3
  35. data/lib/opal/builder_processors.rb +1 -0
  36. data/lib/opal/cli.rb +45 -59
  37. data/lib/opal/cli_options.rb +11 -7
  38. data/lib/opal/cli_runners.rb +1 -0
  39. data/lib/opal/cli_runners/applescript.rb +3 -3
  40. data/lib/opal/cli_runners/nashorn.rb +1 -0
  41. data/lib/opal/cli_runners/nodejs.rb +4 -1
  42. data/lib/opal/cli_runners/phantom.js +1 -2
  43. data/lib/opal/cli_runners/phantomjs.rb +3 -2
  44. data/lib/opal/cli_runners/server.rb +1 -0
  45. data/lib/opal/compiler.rb +145 -94
  46. data/lib/opal/config.rb +1 -0
  47. data/lib/opal/deprecations.rb +18 -0
  48. data/lib/opal/erb.rb +1 -0
  49. data/lib/opal/errors.rb +1 -0
  50. data/lib/opal/fragment.rb +1 -0
  51. data/lib/opal/hike_path_finder.rb +1 -0
  52. data/lib/opal/nodes.rb +3 -0
  53. data/lib/opal/nodes/arglist.rb +2 -1
  54. data/lib/opal/nodes/args/initialize_kwargs.rb +1 -0
  55. data/lib/opal/nodes/args/kwarg.rb +7 -7
  56. data/lib/opal/nodes/args/kwoptarg.rb +6 -7
  57. data/lib/opal/nodes/args/kwrestarg.rb +5 -5
  58. data/lib/opal/nodes/args/mlhsarg.rb +3 -2
  59. data/lib/opal/nodes/args/normarg.rb +6 -7
  60. data/lib/opal/nodes/args/optarg.rb +5 -7
  61. data/lib/opal/nodes/args/post_args.rb +6 -5
  62. data/lib/opal/nodes/args/post_kwargs.rb +1 -0
  63. data/lib/opal/nodes/args/restarg.rb +7 -7
  64. data/lib/opal/nodes/array.rb +1 -0
  65. data/lib/opal/nodes/base.rb +24 -3
  66. data/lib/opal/nodes/call.rb +167 -155
  67. data/lib/opal/nodes/call_special.rb +31 -217
  68. data/lib/opal/nodes/case.rb +36 -22
  69. data/lib/opal/nodes/class.rb +4 -3
  70. data/lib/opal/nodes/constants.rb +28 -48
  71. data/lib/opal/nodes/csend.rb +25 -0
  72. data/lib/opal/nodes/def.rb +49 -16
  73. data/lib/opal/nodes/defined.rb +170 -60
  74. data/lib/opal/nodes/definitions.rb +40 -133
  75. data/lib/opal/nodes/defs.rb +29 -0
  76. data/lib/opal/nodes/for.rb +52 -25
  77. data/lib/opal/nodes/hash.rb +12 -35
  78. data/lib/opal/nodes/helpers.rb +27 -54
  79. data/lib/opal/nodes/if.rb +21 -32
  80. data/lib/opal/nodes/inline_args.rb +12 -13
  81. data/lib/opal/nodes/iter.rb +61 -36
  82. data/lib/opal/nodes/literal.rb +189 -116
  83. data/lib/opal/nodes/logic.rb +20 -25
  84. data/lib/opal/nodes/masgn.rb +20 -18
  85. data/lib/opal/nodes/module.rb +10 -11
  86. data/lib/opal/nodes/node_with_args.rb +14 -17
  87. data/lib/opal/nodes/rescue.rb +37 -70
  88. data/lib/opal/nodes/runtime_helpers.rb +8 -3
  89. data/lib/opal/nodes/scope.rb +9 -5
  90. data/lib/opal/nodes/singleton_class.rb +4 -3
  91. data/lib/opal/nodes/super.rb +115 -87
  92. data/lib/opal/nodes/top.rb +7 -2
  93. data/lib/opal/nodes/variables.rb +46 -35
  94. data/lib/opal/nodes/while.rb +11 -1
  95. data/lib/opal/nodes/yield.rb +1 -17
  96. data/lib/opal/parser.rb +28 -770
  97. data/lib/opal/path_reader.rb +5 -1
  98. data/lib/opal/paths.rb +10 -4
  99. data/lib/opal/regexp_anchors.rb +1 -0
  100. data/lib/opal/rewriter.rb +60 -0
  101. data/lib/opal/rewriters/base.rb +60 -0
  102. data/lib/opal/rewriters/binary_operator_assignment.rb +144 -0
  103. data/lib/opal/rewriters/block_to_iter.rb +17 -0
  104. data/lib/opal/rewriters/break_finder.rb +34 -0
  105. data/lib/opal/rewriters/dot_js_syntax.rb +60 -0
  106. data/lib/opal/rewriters/explicit_writer_return.rb +58 -0
  107. data/lib/opal/rewriters/js_reserved_words.rb +111 -0
  108. data/lib/opal/rewriters/logical_operator_assignment.rb +155 -0
  109. data/lib/opal/rewriters/opal_engine_check.rb +42 -0
  110. data/lib/opal/rewriters/rubyspec/filters_rewriter.rb +67 -0
  111. data/lib/opal/server.rb +4 -0
  112. data/lib/opal/simple_server.rb +100 -0
  113. data/lib/opal/source_map.rb +1 -1
  114. data/lib/opal/util.rb +5 -5
  115. data/lib/opal/version.rb +2 -1
  116. data/lib/tilt/opal.rb +1 -0
  117. data/opal.gemspec +8 -7
  118. data/opal/README.md +1 -1
  119. data/opal/corelib/array.rb +137 -83
  120. data/opal/corelib/basic_object.rb +6 -6
  121. data/opal/corelib/class.rb +14 -11
  122. data/opal/corelib/complex.rb +5 -1
  123. data/opal/corelib/constants.rb +3 -3
  124. data/opal/corelib/enumerable.rb +129 -11
  125. data/opal/corelib/error.rb +35 -17
  126. data/opal/corelib/file.rb +65 -170
  127. data/opal/corelib/hash.rb +128 -13
  128. data/opal/corelib/helpers.rb +12 -15
  129. data/opal/corelib/io.rb +1 -0
  130. data/opal/corelib/kernel.rb +40 -21
  131. data/opal/corelib/marshal/read_buffer.rb +1 -1
  132. data/opal/corelib/method.rb +33 -13
  133. data/opal/corelib/module.rb +133 -81
  134. data/opal/corelib/number.rb +141 -25
  135. data/opal/corelib/numeric.rb +0 -8
  136. data/opal/corelib/process.rb +44 -4
  137. data/opal/corelib/random.rb +117 -0
  138. data/opal/corelib/random/seedrandom.js.rb +15 -0
  139. data/opal/corelib/range.rb +133 -10
  140. data/opal/corelib/regexp.rb +37 -9
  141. data/opal/corelib/runtime.js +601 -390
  142. data/opal/corelib/string.rb +39 -8
  143. data/opal/corelib/string/encoding.rb +51 -7
  144. data/opal/corelib/struct.rb +20 -0
  145. data/opal/corelib/time.rb +3 -3
  146. data/opal/corelib/variables.rb +1 -1
  147. data/opal/opal.rb +1 -0
  148. data/spec/filters/bugs/array.rb +5 -1
  149. data/spec/filters/bugs/basicobject.rb +2 -5
  150. data/spec/filters/bugs/bigdecimal.rb +8 -22
  151. data/spec/filters/bugs/class.rb +2 -1
  152. data/spec/filters/bugs/comparable.rb +5 -0
  153. data/spec/filters/bugs/date.rb +3 -3
  154. data/spec/filters/bugs/enumerable.rb +4 -11
  155. data/spec/filters/bugs/enumerator.rb +2 -4
  156. data/spec/filters/bugs/exception.rb +16 -2
  157. data/spec/filters/bugs/file.rb +8 -0
  158. data/spec/filters/bugs/float.rb +7 -1
  159. data/spec/filters/bugs/hash.rb +6 -2
  160. data/spec/filters/bugs/integer.rb +2 -0
  161. data/spec/filters/bugs/io.rb +8 -0
  162. data/spec/filters/bugs/kernel.rb +9 -138
  163. data/spec/filters/bugs/language.rb +89 -174
  164. data/spec/filters/bugs/marshal.rb +33 -35
  165. data/spec/filters/bugs/method.rb +0 -24
  166. data/spec/filters/bugs/module.rb +19 -55
  167. data/spec/filters/bugs/numeric.rb +0 -119
  168. data/spec/filters/bugs/pathname.rb +2 -0
  169. data/spec/filters/bugs/proc.rb +5 -4
  170. data/spec/filters/bugs/random.rb +7 -0
  171. data/spec/filters/bugs/range.rb +12 -120
  172. data/spec/filters/bugs/rational.rb +1 -1
  173. data/spec/filters/bugs/regexp.rb +2 -40
  174. data/spec/filters/bugs/set.rb +0 -1
  175. data/spec/filters/bugs/string.rb +5 -8
  176. data/spec/filters/bugs/stringscanner.rb +11 -19
  177. data/spec/filters/bugs/time.rb +7 -1
  178. data/spec/filters/bugs/unboundmethod.rb +1 -11
  179. data/spec/filters/unsupported/array.rb +5 -1
  180. data/spec/filters/unsupported/basicobject.rb +1 -1
  181. data/spec/filters/unsupported/bignum.rb +4 -1
  182. data/spec/filters/unsupported/class.rb +1 -1
  183. data/spec/filters/unsupported/delegator.rb +1 -1
  184. data/spec/filters/unsupported/enumerable.rb +1 -1
  185. data/spec/filters/unsupported/enumerator.rb +1 -1
  186. data/spec/filters/unsupported/file.rb +4 -0
  187. data/spec/filters/unsupported/fixnum.rb +1 -1
  188. data/spec/filters/unsupported/float.rb +4 -1
  189. data/spec/filters/unsupported/freeze.rb +27 -5
  190. data/spec/filters/unsupported/hash.rb +7 -15
  191. data/spec/filters/unsupported/integer.rb +1 -1
  192. data/spec/filters/unsupported/kernel.rb +2 -1
  193. data/spec/filters/unsupported/language.rb +6 -1
  194. data/spec/filters/unsupported/marshal.rb +1 -1
  195. data/spec/filters/unsupported/matchdata.rb +4 -1
  196. data/spec/filters/unsupported/math.rb +1 -1
  197. data/spec/filters/unsupported/pathname.rb +1 -1
  198. data/spec/filters/unsupported/privacy.rb +141 -9
  199. data/spec/filters/unsupported/proc.rb +1 -1
  200. data/spec/filters/unsupported/random.rb +4 -0
  201. data/spec/filters/unsupported/range.rb +7 -0
  202. data/spec/filters/unsupported/regexp.rb +25 -15
  203. data/spec/filters/unsupported/set.rb +1 -1
  204. data/spec/filters/unsupported/singleton.rb +1 -1
  205. data/spec/filters/unsupported/string.rb +110 -101
  206. data/spec/filters/unsupported/struct.rb +1 -1
  207. data/spec/filters/unsupported/symbol.rb +2 -1
  208. data/spec/filters/unsupported/taint.rb +22 -7
  209. data/spec/filters/unsupported/thread.rb +1 -1
  210. data/spec/filters/unsupported/time.rb +1 -1
  211. data/spec/lib/builder_spec.rb +17 -0
  212. data/spec/lib/cli_spec.rb +37 -8
  213. data/spec/lib/compiler/call_spec.rb +98 -66
  214. data/spec/lib/compiler_spec.rb +39 -30
  215. data/spec/lib/dependency_resolver_spec.rb +2 -2
  216. data/spec/lib/deprecations_spec.rb +16 -0
  217. data/spec/lib/fixtures/source_location_test.rb +7 -0
  218. data/spec/lib/rewriters/binary_operator_assignment_spec.rb +151 -0
  219. data/spec/lib/rewriters/block_to_iter_spec.rb +28 -0
  220. data/spec/lib/rewriters/dot_js_syntax_spec.rb +108 -0
  221. data/spec/lib/rewriters/explicit_writer_return_spec.rb +186 -0
  222. data/spec/lib/rewriters/js_reserved_words_spec.rb +116 -0
  223. data/spec/lib/rewriters/logical_operator_assignment_spec.rb +202 -0
  224. data/spec/lib/rewriters/opal_engine_check_spec.rb +82 -0
  225. data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +53 -0
  226. data/spec/lib/simple_server_spec.rb +54 -0
  227. data/spec/mspec-opal/formatters.rb +65 -17
  228. data/spec/mspec-opal/runner.rb +47 -67
  229. data/spec/opal/core/date_spec.rb +14 -0
  230. data/spec/opal/core/exception_spec.rb +10 -0
  231. data/spec/opal/core/hash/internals_spec.rb +10 -10
  232. data/spec/opal/core/kernel/rand_spec.rb +0 -4
  233. data/spec/opal/core/kernel/respond_to_spec.rb +5 -2
  234. data/spec/opal/core/language/constant_lookup_spec.rb +38 -0
  235. data/spec/opal/core/language/predefined_spec.rb +1 -1
  236. data/spec/opal/core/language/safe_navigator_spec.rb +7 -0
  237. data/spec/opal/core/language/send_spec.rb +1 -9
  238. data/spec/opal/core/language/string_spec.rb +8 -8
  239. data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -4
  240. data/spec/opal/core/language_spec.rb +32 -0
  241. data/spec/opal/core/module/const_get_spec.rb +1 -1
  242. data/spec/opal/core/runtime/is_a_spec.rb +36 -0
  243. data/spec/opal/core/runtime/rescue_spec.rb +35 -0
  244. data/spec/opal/core/runtime_spec.rb +4 -4
  245. data/spec/opal/core/string_spec.rb +8 -8
  246. data/spec/opal/core/time_spec.rb +26 -17
  247. data/spec/opal/stdlib/erb/quoted.opalerb +1 -1
  248. data/spec/opal/stdlib/json/parse_spec.rb +4 -0
  249. data/spec/opal/stdlib/native/hash_spec.rb +16 -0
  250. data/spec/ruby_specs +2 -1
  251. data/spec/spec_helper.rb +1 -0
  252. data/spec/support/rewriters_helper.rb +24 -0
  253. data/stdlib/base64.rb +4 -2
  254. data/stdlib/bigdecimal/bignumber.js.rb +1 -1
  255. data/stdlib/date.rb +18 -19
  256. data/stdlib/json.rb +16 -4
  257. data/stdlib/nashorn/file.rb +15 -0
  258. data/stdlib/native.rb +21 -12
  259. data/stdlib/nodejs/dir.rb +1 -1
  260. data/stdlib/nodejs/file.rb +49 -20
  261. data/stdlib/nodejs/io.rb +22 -1
  262. data/stdlib/nodejs/{node_modules/js-yaml/dist/js-yaml.js → js-yaml-3-6-1.js} +815 -626
  263. data/stdlib/nodejs/kernel.rb +3 -1
  264. data/stdlib/nodejs/package.json +0 -1
  265. data/stdlib/nodejs/stacktrace.rb +163 -0
  266. data/stdlib/nodejs/yaml.rb +2 -1
  267. data/stdlib/opal-platform.rb +15 -0
  268. data/stdlib/opal/platform.rb +5 -13
  269. data/stdlib/pathname.rb +1 -1
  270. data/stdlib/strscan.rb +15 -1
  271. data/stdlib/yaml.rb +1 -1
  272. data/tasks/benchmarking.rake +9 -0
  273. data/tasks/building.rake +24 -20
  274. data/tasks/linting.rake +24 -13
  275. data/tasks/testing.rake +322 -205
  276. data/tasks/testing/mspec_special_calls.rb +44 -15
  277. data/tasks/testing/opal_rspec_smoketest.Gemfile +13 -0
  278. data/test/nodejs/fixtures/hello.rb +1 -0
  279. data/test/nodejs/test_file.rb +57 -0
  280. data/test/nodejs/test_io.rb +18 -0
  281. data/test/nodejs/test_opal_builder.rb +12 -0
  282. data/test/opal/unsupported_and_bugs.rb +9 -0
  283. metadata +127 -240
  284. data/lib/opal/parser/grammar.rb +0 -6157
  285. data/lib/opal/parser/grammar.y +0 -2011
  286. data/lib/opal/parser/keywords.rb +0 -66
  287. data/lib/opal/parser/lexer.rb +0 -1352
  288. data/lib/opal/parser/parser_scope.rb +0 -28
  289. data/lib/opal/parser/sexp.rb +0 -90
  290. data/lib/opal/sprockets.rb +0 -77
  291. data/lib/opal/sprockets/environment.rb +0 -23
  292. data/lib/opal/sprockets/erb.rb +0 -28
  293. data/lib/opal/sprockets/path_reader.rb +0 -36
  294. data/lib/opal/sprockets/processor.rb +0 -173
  295. data/lib/opal/sprockets/server.rb +0 -133
  296. data/lib/opal/sprockets/source_map_header_patch.rb +0 -41
  297. data/lib/opal/sprockets/source_map_server.rb +0 -117
  298. data/spec/filters/bugs/compiler_opal.rb +0 -5
  299. data/spec/filters/bugs/language_opal.rb +0 -88
  300. data/spec/filters/unsupported/module.rb +0 -8
  301. data/spec/lib/compiler/pre_processed_conditionals_spec.rb +0 -87
  302. data/spec/lib/lexer_spec.rb +0 -110
  303. data/spec/lib/parser/alias_spec.rb +0 -26
  304. data/spec/lib/parser/and_spec.rb +0 -13
  305. data/spec/lib/parser/aref_spec.rb +0 -10
  306. data/spec/lib/parser/attrasgn_spec.rb +0 -28
  307. data/spec/lib/parser/begin_spec.rb +0 -42
  308. data/spec/lib/parser/block_spec.rb +0 -12
  309. data/spec/lib/parser/break_spec.rb +0 -17
  310. data/spec/lib/parser/call_spec.rb +0 -201
  311. data/spec/lib/parser/class_spec.rb +0 -35
  312. data/spec/lib/parser/comments_spec.rb +0 -11
  313. data/spec/lib/parser/def_spec.rb +0 -109
  314. data/spec/lib/parser/if_spec.rb +0 -26
  315. data/spec/lib/parser/iter_spec.rb +0 -59
  316. data/spec/lib/parser/lambda_spec.rb +0 -219
  317. data/spec/lib/parser/literal_spec.rb +0 -118
  318. data/spec/lib/parser/masgn_spec.rb +0 -37
  319. data/spec/lib/parser/module_spec.rb +0 -27
  320. data/spec/lib/parser/not_spec.rb +0 -21
  321. data/spec/lib/parser/op_asgn1_spec.rb +0 -23
  322. data/spec/lib/parser/op_asgn2_spec.rb +0 -23
  323. data/spec/lib/parser/op_asgn_spec.rb +0 -17
  324. data/spec/lib/parser/or_spec.rb +0 -13
  325. data/spec/lib/parser/return_spec.rb +0 -22
  326. data/spec/lib/parser/sclass_spec.rb +0 -21
  327. data/spec/lib/parser/string_spec.rb +0 -286
  328. data/spec/lib/parser/super_spec.rb +0 -20
  329. data/spec/lib/parser/unary_spec.rb +0 -52
  330. data/spec/lib/parser/undef_spec.rb +0 -19
  331. data/spec/lib/parser/unless_spec.rb +0 -13
  332. data/spec/lib/parser/variables_spec.rb +0 -112
  333. data/spec/lib/parser/while_spec.rb +0 -15
  334. data/spec/lib/parser/yield_spec.rb +0 -20
  335. data/spec/lib/sprockets/erb_spec.rb +0 -38
  336. data/spec/lib/sprockets/path_reader_spec.rb +0 -41
  337. data/spec/lib/sprockets/processor_spec.rb +0 -79
  338. data/spec/lib/sprockets/server_spec.rb +0 -102
  339. data/spec/lib/sprockets_spec.rb +0 -39
  340. data/spec/lib/tilt/opal_spec.rb +0 -37
  341. data/spec/opal/core/language/block_spec.rb +0 -538
  342. data/spec/opal/core/language/proc_spec.rb +0 -263
  343. data/spec/opal/core/language/variables_spec.rb +0 -1366
  344. data/spec/opal/core/runtime/block_send_spec.rb +0 -28
  345. data/spec/opal/core/runtime/send_spec.rb +0 -34
  346. data/spec/support/parser_helpers.rb +0 -37
  347. data/stdlib/nodejs/node_modules/js-yaml/HISTORY.md +0 -277
  348. data/stdlib/nodejs/node_modules/js-yaml/LICENSE +0 -21
  349. data/stdlib/nodejs/node_modules/js-yaml/README.md +0 -288
  350. data/stdlib/nodejs/node_modules/js-yaml/bin/js-yaml.js +0 -140
  351. data/stdlib/nodejs/node_modules/js-yaml/bower.json +0 -23
  352. data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.min.js +0 -3
  353. data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.js +0 -102
  354. data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.yml +0 -18
  355. data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.js +0 -31
  356. data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.json +0 -22
  357. data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.js +0 -18
  358. data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.yml +0 -197
  359. data/stdlib/nodejs/node_modules/js-yaml/index.js +0 -7
  360. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml.js +0 -39
  361. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/common.js +0 -62
  362. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/dumper.js +0 -554
  363. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/exception.js +0 -25
  364. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/loader.js +0 -1581
  365. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/mark.js +0 -78
  366. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema.js +0 -103
  367. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/core.js +0 -18
  368. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +0 -25
  369. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +0 -28
  370. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +0 -17
  371. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/json.js +0 -25
  372. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type.js +0 -61
  373. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/binary.js +0 -133
  374. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/bool.js +0 -37
  375. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/float.js +0 -110
  376. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/int.js +0 -183
  377. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/function.js +0 -85
  378. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +0 -84
  379. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +0 -27
  380. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/map.js +0 -8
  381. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/merge.js +0 -12
  382. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/null.js +0 -36
  383. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/omap.js +0 -56
  384. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/pairs.js +0 -61
  385. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/seq.js +0 -8
  386. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js +0 -33
  387. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js +0 -8
  388. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +0 -98
  389. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md +0 -115
  390. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE +0 -21
  391. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md +0 -239
  392. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/arguments.js +0 -36
  393. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/choice.js +0 -22
  394. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/constants.js +0 -59
  395. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/help.js +0 -13
  396. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/nargs.js +0 -33
  397. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/parents.js +0 -28
  398. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js +0 -23
  399. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js +0 -49
  400. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sum.js +0 -35
  401. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js +0 -270
  402. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/index.js +0 -1
  403. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action.js +0 -146
  404. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append.js +0 -55
  405. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js +0 -47
  406. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/count.js +0 -40
  407. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/help.js +0 -48
  408. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store.js +0 -50
  409. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js +0 -43
  410. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js +0 -27
  411. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js +0 -26
  412. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js +0 -148
  413. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/version.js +0 -50
  414. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action_container.js +0 -481
  415. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argparse.js +0 -14
  416. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js +0 -50
  417. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js +0 -54
  418. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js +0 -75
  419. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js +0 -1168
  420. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/const.js +0 -18
  421. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js +0 -88
  422. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js +0 -798
  423. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/namespace.js +0 -77
  424. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore +0 -2
  425. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml +0 -8
  426. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/README.markdown +0 -825
  427. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/bower.json +0 -33
  428. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/component.json +0 -11
  429. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/foo.js +0 -10
  430. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/gulpfile.js +0 -26
  431. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js +0 -673
  432. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log +0 -0
  433. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/package.json +0 -107
  434. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/LICENSE +0 -23
  435. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/README.md +0 -22
  436. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/package.json +0 -69
  437. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore-min.js +0 -6
  438. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore.js +0 -1415
  439. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/package.json +0 -62
  440. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/README.md +0 -73
  441. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esparse.js +0 -117
  442. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js +0 -177
  443. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/esprima.js +0 -3908
  444. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/package.json +0 -69
  445. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/compat.js +0 -239
  446. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/reflect.js +0 -422
  447. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/run.js +0 -66
  448. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/runner.js +0 -387
  449. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/test.js +0 -20238
  450. data/stdlib/nodejs/node_modules/js-yaml/package.json +0 -83
@@ -1,107 +0,0 @@
1
- {
2
- "name": "underscore.string",
3
- "version": "2.4.0",
4
- "description": "String manipulation extensions for Underscore.js javascript library.",
5
- "homepage": "http://epeli.github.com/underscore.string/",
6
- "contributors": [
7
- {
8
- "name": "Esa-Matti Suuronen",
9
- "email": "esa-matti@suuronen.org",
10
- "url": "http://esa-matti.suuronen.org/"
11
- },
12
- {
13
- "name": "Edward Tsech",
14
- "email": "edtsech@gmail.com"
15
- },
16
- {
17
- "name": "Pavel Pravosud",
18
- "email": "pavel@pravosud.com",
19
- "url": "<https://github.com/rwz>"
20
- },
21
- {
22
- "name": "Sasha Koss",
23
- "email": "kossnocorp@gmail.com",
24
- "url": "http://koss.nocorp.me/"
25
- },
26
- {
27
- "name": "Vladimir Dronnikov",
28
- "email": "dronnikov@gmail.com"
29
- },
30
- {
31
- "name": "Pete Kruckenberg",
32
- "email": "https://github.com/kruckenb",
33
- "url": "<https://github.com/kruckenb>"
34
- },
35
- {
36
- "name": "Paul Chavard",
37
- "email": "paul@chavard.net",
38
- "url": "<http://tchak.net>"
39
- },
40
- {
41
- "name": "Ed Finkler",
42
- "email": "coj@funkatron.com",
43
- "url": "<http://funkatron.com>"
44
- }
45
- ],
46
- "keywords": [
47
- "underscore",
48
- "string"
49
- ],
50
- "main": "./lib/underscore.string.js",
51
- "directories": {
52
- "lib": "./lib"
53
- },
54
- "engines": {
55
- "node": "*"
56
- },
57
- "repository": {
58
- "type": "git",
59
- "url": "https://github.com/epeli/underscore.string.git"
60
- },
61
- "bugs": {
62
- "url": "https://github.com/epeli/underscore.string/issues"
63
- },
64
- "licenses": [
65
- {
66
- "type": "MIT"
67
- }
68
- ],
69
- "scripts": {
70
- "test": "gulp test"
71
- },
72
- "devDependencies": {
73
- "gulp": "~3.8.10",
74
- "gulp-uglify": "~1.0.1",
75
- "gulp-qunit": "~1.0.0",
76
- "gulp-clean": "~0.3.1",
77
- "gulp-rename": "~1.2.0"
78
- },
79
- "_id": "underscore.string@2.4.0",
80
- "dist": {
81
- "shasum": "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b",
82
- "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz"
83
- },
84
- "_from": "underscore.string@>=2.4.0 <2.5.0",
85
- "_npmVersion": "1.3.24",
86
- "_npmUser": {
87
- "name": "epeli",
88
- "email": "esa-matti@suuronen.org"
89
- },
90
- "maintainers": [
91
- {
92
- "name": "edtsech",
93
- "email": "edtsech@gmail.com"
94
- },
95
- {
96
- "name": "rwz",
97
- "email": "rwz@duckroll.ru"
98
- },
99
- {
100
- "name": "epeli",
101
- "email": "esa-matti@suuronen.org"
102
- }
103
- ],
104
- "_shasum": "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b",
105
- "_resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz",
106
- "readme": "ERROR: No README data found!"
107
- }
@@ -1,23 +0,0 @@
1
- Copyright (c) 2009-2014 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.
@@ -1,22 +0,0 @@
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
@@ -1,69 +0,0 @@
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.7.0",
22
- "devDependencies": {
23
- "docco": "0.6.x",
24
- "phantomjs": "1.9.7-1",
25
- "uglify-js": "2.4.x",
26
- "eslint": "0.6.x"
27
- },
28
- "scripts": {
29
- "test": "phantomjs test/vendor/runner.js test/index.html?noglobals=true && eslint underscore.js test/*.js test/vendor/runner.js",
30
- "build": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m --source-map underscore-min.map -o underscore-min.js",
31
- "doc": "docco underscore.js"
32
- },
33
- "licenses": [
34
- {
35
- "type": "MIT",
36
- "url": "https://raw.github.com/jashkenas/underscore/master/LICENSE"
37
- }
38
- ],
39
- "files": [
40
- "underscore.js",
41
- "underscore-min.js",
42
- "LICENSE"
43
- ],
44
- "gitHead": "da996e665deb0b69b257e80e3e257c04fde4191c",
45
- "bugs": {
46
- "url": "https://github.com/jashkenas/underscore/issues"
47
- },
48
- "_id": "underscore@1.7.0",
49
- "_shasum": "6bbaf0877500d36be34ecaa584e0db9fef035209",
50
- "_from": "underscore@>=1.7.0 <1.8.0",
51
- "_npmVersion": "1.4.24",
52
- "_npmUser": {
53
- "name": "jashkenas",
54
- "email": "jashkenas@gmail.com"
55
- },
56
- "maintainers": [
57
- {
58
- "name": "jashkenas",
59
- "email": "jashkenas@gmail.com"
60
- }
61
- ],
62
- "dist": {
63
- "shasum": "6bbaf0877500d36be34ecaa584e0db9fef035209",
64
- "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz"
65
- },
66
- "directories": {},
67
- "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz",
68
- "readme": "ERROR: No README data found!"
69
- }
@@ -1,6 +0,0 @@
1
- // Underscore.js 1.7.0
2
- // http://underscorejs.org
3
- // (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
4
- // Underscore may be freely distributed under the MIT license.
5
- (function(){var n=this,t=n._,r=Array.prototype,e=Object.prototype,u=Function.prototype,i=r.push,a=r.slice,o=r.concat,l=e.toString,c=e.hasOwnProperty,f=Array.isArray,s=Object.keys,p=u.bind,h=function(n){return n instanceof h?n:this instanceof h?void(this._wrapped=n):new h(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=h),exports._=h):n._=h,h.VERSION="1.7.0";var g=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)}};h.iteratee=function(n,t,r){return null==n?h.identity:h.isFunction(n)?g(n,t,r):h.isObject(n)?h.matches(n):h.property(n)},h.each=h.forEach=function(n,t,r){if(null==n)return n;t=g(t,r);var e,u=n.length;if(u===+u)for(e=0;u>e;e++)t(n[e],e,n);else{var i=h.keys(n);for(e=0,u=i.length;u>e;e++)t(n[i[e]],i[e],n)}return n},h.map=h.collect=function(n,t,r){if(null==n)return[];t=h.iteratee(t,r);for(var e,u=n.length!==+n.length&&h.keys(n),i=(u||n).length,a=Array(i),o=0;i>o;o++)e=u?u[o]:o,a[o]=t(n[e],e,n);return a};var v="Reduce of empty array with no initial value";h.reduce=h.foldl=h.inject=function(n,t,r,e){null==n&&(n=[]),t=g(t,e,4);var u,i=n.length!==+n.length&&h.keys(n),a=(i||n).length,o=0;if(arguments.length<3){if(!a)throw new TypeError(v);r=n[i?i[o++]:o++]}for(;a>o;o++)u=i?i[o]:o,r=t(r,n[u],u,n);return r},h.reduceRight=h.foldr=function(n,t,r,e){null==n&&(n=[]),t=g(t,e,4);var u,i=n.length!==+n.length&&h.keys(n),a=(i||n).length;if(arguments.length<3){if(!a)throw new TypeError(v);r=n[i?i[--a]:--a]}for(;a--;)u=i?i[a]:a,r=t(r,n[u],u,n);return r},h.find=h.detect=function(n,t,r){var e;return t=h.iteratee(t,r),h.some(n,function(n,r,u){return t(n,r,u)?(e=n,!0):void 0}),e},h.filter=h.select=function(n,t,r){var e=[];return null==n?e:(t=h.iteratee(t,r),h.each(n,function(n,r,u){t(n,r,u)&&e.push(n)}),e)},h.reject=function(n,t,r){return h.filter(n,h.negate(h.iteratee(t)),r)},h.every=h.all=function(n,t,r){if(null==n)return!0;t=h.iteratee(t,r);var e,u,i=n.length!==+n.length&&h.keys(n),a=(i||n).length;for(e=0;a>e;e++)if(u=i?i[e]:e,!t(n[u],u,n))return!1;return!0},h.some=h.any=function(n,t,r){if(null==n)return!1;t=h.iteratee(t,r);var e,u,i=n.length!==+n.length&&h.keys(n),a=(i||n).length;for(e=0;a>e;e++)if(u=i?i[e]:e,t(n[u],u,n))return!0;return!1},h.contains=h.include=function(n,t){return null==n?!1:(n.length!==+n.length&&(n=h.values(n)),h.indexOf(n,t)>=0)},h.invoke=function(n,t){var r=a.call(arguments,2),e=h.isFunction(t);return h.map(n,function(n){return(e?t:n[t]).apply(n,r)})},h.pluck=function(n,t){return h.map(n,h.property(t))},h.where=function(n,t){return h.filter(n,h.matches(t))},h.findWhere=function(n,t){return h.find(n,h.matches(t))},h.max=function(n,t,r){var e,u,i=-1/0,a=-1/0;if(null==t&&null!=n){n=n.length===+n.length?n:h.values(n);for(var o=0,l=n.length;l>o;o++)e=n[o],e>i&&(i=e)}else t=h.iteratee(t,r),h.each(n,function(n,r,e){u=t(n,r,e),(u>a||u===-1/0&&i===-1/0)&&(i=n,a=u)});return i},h.min=function(n,t,r){var e,u,i=1/0,a=1/0;if(null==t&&null!=n){n=n.length===+n.length?n:h.values(n);for(var o=0,l=n.length;l>o;o++)e=n[o],i>e&&(i=e)}else t=h.iteratee(t,r),h.each(n,function(n,r,e){u=t(n,r,e),(a>u||1/0===u&&1/0===i)&&(i=n,a=u)});return i},h.shuffle=function(n){for(var t,r=n&&n.length===+n.length?n:h.values(n),e=r.length,u=Array(e),i=0;e>i;i++)t=h.random(0,i),t!==i&&(u[i]=u[t]),u[t]=r[i];return u},h.sample=function(n,t,r){return null==t||r?(n.length!==+n.length&&(n=h.values(n)),n[h.random(n.length-1)]):h.shuffle(n).slice(0,Math.max(0,t))},h.sortBy=function(n,t,r){return t=h.iteratee(t,r),h.pluck(h.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 m=function(n){return function(t,r,e){var u={};return r=h.iteratee(r,e),h.each(t,function(e,i){var a=r(e,i,t);n(u,e,a)}),u}};h.groupBy=m(function(n,t,r){h.has(n,r)?n[r].push(t):n[r]=[t]}),h.indexBy=m(function(n,t,r){n[r]=t}),h.countBy=m(function(n,t,r){h.has(n,r)?n[r]++:n[r]=1}),h.sortedIndex=function(n,t,r,e){r=h.iteratee(r,e,1);for(var u=r(t),i=0,a=n.length;a>i;){var o=i+a>>>1;r(n[o])<u?i=o+1:a=o}return i},h.toArray=function(n){return n?h.isArray(n)?a.call(n):n.length===+n.length?h.map(n,h.identity):h.values(n):[]},h.size=function(n){return null==n?0:n.length===+n.length?n.length:h.keys(n).length},h.partition=function(n,t,r){t=h.iteratee(t,r);var e=[],u=[];return h.each(n,function(n,r,i){(t(n,r,i)?e:u).push(n)}),[e,u]},h.first=h.head=h.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:0>t?[]:a.call(n,0,t)},h.initial=function(n,t,r){return a.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))},h.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:a.call(n,Math.max(n.length-t,0))},h.rest=h.tail=h.drop=function(n,t,r){return a.call(n,null==t||r?1:t)},h.compact=function(n){return h.filter(n,h.identity)};var y=function(n,t,r,e){if(t&&h.every(n,h.isArray))return o.apply(e,n);for(var u=0,a=n.length;a>u;u++){var l=n[u];h.isArray(l)||h.isArguments(l)?t?i.apply(e,l):y(l,t,r,e):r||e.push(l)}return e};h.flatten=function(n,t){return y(n,t,!1,[])},h.without=function(n){return h.difference(n,a.call(arguments,1))},h.uniq=h.unique=function(n,t,r,e){if(null==n)return[];h.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=h.iteratee(r,e));for(var u=[],i=[],a=0,o=n.length;o>a;a++){var l=n[a];if(t)a&&i===l||u.push(l),i=l;else if(r){var c=r(l,a,n);h.indexOf(i,c)<0&&(i.push(c),u.push(l))}else h.indexOf(u,l)<0&&u.push(l)}return u},h.union=function(){return h.uniq(y(arguments,!0,!0,[]))},h.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(!h.contains(t,i)){for(var a=1;r>a&&h.contains(arguments[a],i);a++);a===r&&t.push(i)}}return t},h.difference=function(n){var t=y(a.call(arguments,1),!0,!0,[]);return h.filter(n,function(n){return!h.contains(t,n)})},h.zip=function(n){if(null==n)return[];for(var t=h.max(arguments,"length").length,r=Array(t),e=0;t>e;e++)r[e]=h.pluck(arguments,e);return r},h.object=function(n,t){if(null==n)return{};for(var r={},e=0,u=n.length;u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},h.indexOf=function(n,t,r){if(null==n)return-1;var e=0,u=n.length;if(r){if("number"!=typeof r)return e=h.sortedIndex(n,t),n[e]===t?e:-1;e=0>r?Math.max(0,u+r):r}for(;u>e;e++)if(n[e]===t)return e;return-1},h.lastIndexOf=function(n,t,r){if(null==n)return-1;var e=n.length;for("number"==typeof r&&(e=0>r?e+r+1:Math.min(e,r+1));--e>=0;)if(n[e]===t)return e;return-1},h.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 d=function(){};h.bind=function(n,t){var r,e;if(p&&n.bind===p)return p.apply(n,a.call(arguments,1));if(!h.isFunction(n))throw new TypeError("Bind must be called on a function");return r=a.call(arguments,2),e=function(){if(!(this instanceof e))return n.apply(t,r.concat(a.call(arguments)));d.prototype=n.prototype;var u=new d;d.prototype=null;var i=n.apply(u,r.concat(a.call(arguments)));return h.isObject(i)?i:u}},h.partial=function(n){var t=a.call(arguments,1);return function(){for(var r=0,e=t.slice(),u=0,i=e.length;i>u;u++)e[u]===h&&(e[u]=arguments[r++]);for(;r<arguments.length;)e.push(arguments[r++]);return n.apply(this,e)}},h.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]=h.bind(n[r],n);return n},h.memoize=function(n,t){var r=function(e){var u=r.cache,i=t?t.apply(this,arguments):e;return h.has(u,i)||(u[i]=n.apply(this,arguments)),u[i]};return r.cache={},r},h.delay=function(n,t){var r=a.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},h.defer=function(n){return h.delay.apply(h,[n,1].concat(a.call(arguments,1)))},h.throttle=function(n,t,r){var e,u,i,a=null,o=0;r||(r={});var l=function(){o=r.leading===!1?0:h.now(),a=null,i=n.apply(e,u),a||(e=u=null)};return function(){var c=h.now();o||r.leading!==!1||(o=c);var f=t-(c-o);return e=this,u=arguments,0>=f||f>t?(clearTimeout(a),a=null,o=c,i=n.apply(e,u),a||(e=u=null)):a||r.trailing===!1||(a=setTimeout(l,f)),i}},h.debounce=function(n,t,r){var e,u,i,a,o,l=function(){var c=h.now()-a;t>c&&c>0?e=setTimeout(l,t-c):(e=null,r||(o=n.apply(i,u),e||(i=u=null)))};return function(){i=this,u=arguments,a=h.now();var c=r&&!e;return e||(e=setTimeout(l,t)),c&&(o=n.apply(i,u),i=u=null),o}},h.wrap=function(n,t){return h.partial(t,n)},h.negate=function(n){return function(){return!n.apply(this,arguments)}},h.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}},h.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},h.before=function(n,t){var r;return function(){return--n>0?r=t.apply(this,arguments):t=null,r}},h.once=h.partial(h.before,2),h.keys=function(n){if(!h.isObject(n))return[];if(s)return s(n);var t=[];for(var r in n)h.has(n,r)&&t.push(r);return t},h.values=function(n){for(var t=h.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},h.pairs=function(n){for(var t=h.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},h.invert=function(n){for(var t={},r=h.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},h.functions=h.methods=function(n){var t=[];for(var r in n)h.isFunction(n[r])&&t.push(r);return t.sort()},h.extend=function(n){if(!h.isObject(n))return n;for(var t,r,e=1,u=arguments.length;u>e;e++){t=arguments[e];for(r in t)c.call(t,r)&&(n[r]=t[r])}return n},h.pick=function(n,t,r){var e,u={};if(null==n)return u;if(h.isFunction(t)){t=g(t,r);for(e in n){var i=n[e];t(i,e,n)&&(u[e]=i)}}else{var l=o.apply([],a.call(arguments,1));n=new Object(n);for(var c=0,f=l.length;f>c;c++)e=l[c],e in n&&(u[e]=n[e])}return u},h.omit=function(n,t,r){if(h.isFunction(t))t=h.negate(t);else{var e=h.map(o.apply([],a.call(arguments,1)),String);t=function(n,t){return!h.contains(e,t)}}return h.pick(n,t,r)},h.defaults=function(n){if(!h.isObject(n))return n;for(var t=1,r=arguments.length;r>t;t++){var e=arguments[t];for(var u in e)n[u]===void 0&&(n[u]=e[u])}return n},h.clone=function(n){return h.isObject(n)?h.isArray(n)?n.slice():h.extend({},n):n},h.tap=function(n,t){return t(n),n};var b=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 h&&(n=n._wrapped),t instanceof h&&(t=t._wrapped);var u=l.call(n);if(u!==l.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}if("object"!=typeof n||"object"!=typeof t)return!1;for(var i=r.length;i--;)if(r[i]===n)return e[i]===t;var a=n.constructor,o=t.constructor;if(a!==o&&"constructor"in n&&"constructor"in t&&!(h.isFunction(a)&&a instanceof a&&h.isFunction(o)&&o instanceof o))return!1;r.push(n),e.push(t);var c,f;if("[object Array]"===u){if(c=n.length,f=c===t.length)for(;c--&&(f=b(n[c],t[c],r,e)););}else{var s,p=h.keys(n);if(c=p.length,f=h.keys(t).length===c)for(;c--&&(s=p[c],f=h.has(t,s)&&b(n[s],t[s],r,e)););}return r.pop(),e.pop(),f};h.isEqual=function(n,t){return b(n,t,[],[])},h.isEmpty=function(n){if(null==n)return!0;if(h.isArray(n)||h.isString(n)||h.isArguments(n))return 0===n.length;for(var t in n)if(h.has(n,t))return!1;return!0},h.isElement=function(n){return!(!n||1!==n.nodeType)},h.isArray=f||function(n){return"[object Array]"===l.call(n)},h.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},h.each(["Arguments","Function","String","Number","Date","RegExp"],function(n){h["is"+n]=function(t){return l.call(t)==="[object "+n+"]"}}),h.isArguments(arguments)||(h.isArguments=function(n){return h.has(n,"callee")}),"function"!=typeof/./&&(h.isFunction=function(n){return"function"==typeof n||!1}),h.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},h.isNaN=function(n){return h.isNumber(n)&&n!==+n},h.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"===l.call(n)},h.isNull=function(n){return null===n},h.isUndefined=function(n){return n===void 0},h.has=function(n,t){return null!=n&&c.call(n,t)},h.noConflict=function(){return n._=t,this},h.identity=function(n){return n},h.constant=function(n){return function(){return n}},h.noop=function(){},h.property=function(n){return function(t){return t[n]}},h.matches=function(n){var t=h.pairs(n),r=t.length;return function(n){if(null==n)return!r;n=new Object(n);for(var e=0;r>e;e++){var u=t[e],i=u[0];if(u[1]!==n[i]||!(i in n))return!1}return!0}},h.times=function(n,t,r){var e=Array(Math.max(0,n));t=g(t,r,1);for(var u=0;n>u;u++)e[u]=t(u);return e},h.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},h.now=Date.now||function(){return(new Date).getTime()};var _={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},w=h.invert(_),j=function(n){var t=function(t){return n[t]},r="(?:"+h.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}};h.escape=j(_),h.unescape=j(w),h.result=function(n,t){if(null==n)return void 0;var r=n[t];return h.isFunction(r)?n[t]():r};var x=0;h.uniqueId=function(n){var t=++x+"";return n?n+t:t},h.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var A=/(.)^/,k={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},O=/\\|'|\r|\n|\u2028|\u2029/g,F=function(n){return"\\"+k[n]};h.template=function(n,t,r){!t&&r&&(t=r),t=h.defaults({},t,h.templateSettings);var e=RegExp([(t.escape||A).source,(t.interpolate||A).source,(t.evaluate||A).source].join("|")+"|$","g"),u=0,i="__p+='";n.replace(e,function(t,r,e,a,o){return i+=n.slice(u,o).replace(O,F),u=o+t.length,r?i+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":e?i+="'+\n((__t=("+e+"))==null?'':__t)+\n'":a&&(i+="';\n"+a+"\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 a=new Function(t.variable||"obj","_",i)}catch(o){throw o.source=i,o}var l=function(n){return a.call(this,n,h)},c=t.variable||"obj";return l.source="function("+c+"){\n"+i+"}",l},h.chain=function(n){var t=h(n);return t._chain=!0,t};var E=function(n){return this._chain?h(n).chain():n};h.mixin=function(n){h.each(h.functions(n),function(t){var r=h[t]=n[t];h.prototype[t]=function(){var n=[this._wrapped];return i.apply(n,arguments),E.call(this,r.apply(h,n))}})},h.mixin(h),h.each(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=r[n];h.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0],E.call(this,r)}}),h.each(["concat","join","slice"],function(n){var t=r[n];h.prototype[n]=function(){return E.call(this,t.apply(this._wrapped,arguments))}}),h.prototype.value=function(){return this._wrapped},"function"==typeof define&&define.amd&&define("underscore",[],function(){return h})}).call(this);
6
- //# sourceMappingURL=underscore-min.map
@@ -1,1415 +0,0 @@
1
- // Underscore.js 1.7.0
2
- // http://underscorejs.org
3
- // (c) 2009-2014 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
- concat = ArrayProto.concat,
25
- toString = ObjProto.toString,
26
- hasOwnProperty = ObjProto.hasOwnProperty;
27
-
28
- // All **ECMAScript 5** native function implementations that we hope to use
29
- // are declared here.
30
- var
31
- nativeIsArray = Array.isArray,
32
- nativeKeys = Object.keys,
33
- nativeBind = FuncProto.bind;
34
-
35
- // Create a safe reference to the Underscore object for use below.
36
- var _ = function(obj) {
37
- if (obj instanceof _) return obj;
38
- if (!(this instanceof _)) return new _(obj);
39
- this._wrapped = obj;
40
- };
41
-
42
- // Export the Underscore object for **Node.js**, with
43
- // backwards-compatibility for the old `require()` API. If we're in
44
- // the browser, add `_` as a global object.
45
- if (typeof exports !== 'undefined') {
46
- if (typeof module !== 'undefined' && module.exports) {
47
- exports = module.exports = _;
48
- }
49
- exports._ = _;
50
- } else {
51
- root._ = _;
52
- }
53
-
54
- // Current version.
55
- _.VERSION = '1.7.0';
56
-
57
- // Internal function that returns an efficient (for current engines) version
58
- // of the passed-in callback, to be repeatedly applied in other Underscore
59
- // functions.
60
- var createCallback = function(func, context, argCount) {
61
- if (context === void 0) return func;
62
- switch (argCount == null ? 3 : argCount) {
63
- case 1: return function(value) {
64
- return func.call(context, value);
65
- };
66
- case 2: return function(value, other) {
67
- return func.call(context, value, other);
68
- };
69
- case 3: return function(value, index, collection) {
70
- return func.call(context, value, index, collection);
71
- };
72
- case 4: return function(accumulator, value, index, collection) {
73
- return func.call(context, accumulator, value, index, collection);
74
- };
75
- }
76
- return function() {
77
- return func.apply(context, arguments);
78
- };
79
- };
80
-
81
- // A mostly-internal function to generate callbacks that can be applied
82
- // to each element in a collection, returning the desired result — either
83
- // identity, an arbitrary callback, a property matcher, or a property accessor.
84
- _.iteratee = function(value, context, argCount) {
85
- if (value == null) return _.identity;
86
- if (_.isFunction(value)) return createCallback(value, context, argCount);
87
- if (_.isObject(value)) return _.matches(value);
88
- return _.property(value);
89
- };
90
-
91
- // Collection Functions
92
- // --------------------
93
-
94
- // The cornerstone, an `each` implementation, aka `forEach`.
95
- // Handles raw objects in addition to array-likes. Treats all
96
- // sparse array-likes as if they were dense.
97
- _.each = _.forEach = function(obj, iteratee, context) {
98
- if (obj == null) return obj;
99
- iteratee = createCallback(iteratee, context);
100
- var i, length = obj.length;
101
- if (length === +length) {
102
- for (i = 0; i < length; i++) {
103
- iteratee(obj[i], i, obj);
104
- }
105
- } else {
106
- var keys = _.keys(obj);
107
- for (i = 0, length = keys.length; i < length; i++) {
108
- iteratee(obj[keys[i]], keys[i], obj);
109
- }
110
- }
111
- return obj;
112
- };
113
-
114
- // Return the results of applying the iteratee to each element.
115
- _.map = _.collect = function(obj, iteratee, context) {
116
- if (obj == null) return [];
117
- iteratee = _.iteratee(iteratee, context);
118
- var keys = obj.length !== +obj.length && _.keys(obj),
119
- length = (keys || obj).length,
120
- results = Array(length),
121
- currentKey;
122
- for (var index = 0; index < length; index++) {
123
- currentKey = keys ? keys[index] : index;
124
- results[index] = iteratee(obj[currentKey], currentKey, obj);
125
- }
126
- return results;
127
- };
128
-
129
- var reduceError = 'Reduce of empty array with no initial value';
130
-
131
- // **Reduce** builds up a single result from a list of values, aka `inject`,
132
- // or `foldl`.
133
- _.reduce = _.foldl = _.inject = function(obj, iteratee, memo, context) {
134
- if (obj == null) obj = [];
135
- iteratee = createCallback(iteratee, context, 4);
136
- var keys = obj.length !== +obj.length && _.keys(obj),
137
- length = (keys || obj).length,
138
- index = 0, currentKey;
139
- if (arguments.length < 3) {
140
- if (!length) throw new TypeError(reduceError);
141
- memo = obj[keys ? keys[index++] : index++];
142
- }
143
- for (; index < length; index++) {
144
- currentKey = keys ? keys[index] : index;
145
- memo = iteratee(memo, obj[currentKey], currentKey, obj);
146
- }
147
- return memo;
148
- };
149
-
150
- // The right-associative version of reduce, also known as `foldr`.
151
- _.reduceRight = _.foldr = function(obj, iteratee, memo, context) {
152
- if (obj == null) obj = [];
153
- iteratee = createCallback(iteratee, context, 4);
154
- var keys = obj.length !== + obj.length && _.keys(obj),
155
- index = (keys || obj).length,
156
- currentKey;
157
- if (arguments.length < 3) {
158
- if (!index) throw new TypeError(reduceError);
159
- memo = obj[keys ? keys[--index] : --index];
160
- }
161
- while (index--) {
162
- currentKey = keys ? keys[index] : index;
163
- memo = iteratee(memo, obj[currentKey], currentKey, obj);
164
- }
165
- return memo;
166
- };
167
-
168
- // Return the first value which passes a truth test. Aliased as `detect`.
169
- _.find = _.detect = function(obj, predicate, context) {
170
- var result;
171
- predicate = _.iteratee(predicate, context);
172
- _.some(obj, function(value, index, list) {
173
- if (predicate(value, index, list)) {
174
- result = value;
175
- return true;
176
- }
177
- });
178
- return result;
179
- };
180
-
181
- // Return all the elements that pass a truth test.
182
- // Aliased as `select`.
183
- _.filter = _.select = function(obj, predicate, context) {
184
- var results = [];
185
- if (obj == null) return results;
186
- predicate = _.iteratee(predicate, context);
187
- _.each(obj, function(value, index, list) {
188
- if (predicate(value, index, list)) results.push(value);
189
- });
190
- return results;
191
- };
192
-
193
- // Return all the elements for which a truth test fails.
194
- _.reject = function(obj, predicate, context) {
195
- return _.filter(obj, _.negate(_.iteratee(predicate)), context);
196
- };
197
-
198
- // Determine whether all of the elements match a truth test.
199
- // Aliased as `all`.
200
- _.every = _.all = function(obj, predicate, context) {
201
- if (obj == null) return true;
202
- predicate = _.iteratee(predicate, context);
203
- var keys = obj.length !== +obj.length && _.keys(obj),
204
- length = (keys || obj).length,
205
- index, currentKey;
206
- for (index = 0; index < length; index++) {
207
- currentKey = keys ? keys[index] : index;
208
- if (!predicate(obj[currentKey], currentKey, obj)) return false;
209
- }
210
- return true;
211
- };
212
-
213
- // Determine if at least one element in the object matches a truth test.
214
- // Aliased as `any`.
215
- _.some = _.any = function(obj, predicate, context) {
216
- if (obj == null) return false;
217
- predicate = _.iteratee(predicate, context);
218
- var keys = obj.length !== +obj.length && _.keys(obj),
219
- length = (keys || obj).length,
220
- index, currentKey;
221
- for (index = 0; index < length; index++) {
222
- currentKey = keys ? keys[index] : index;
223
- if (predicate(obj[currentKey], currentKey, obj)) return true;
224
- }
225
- return false;
226
- };
227
-
228
- // Determine if the array or object contains a given value (using `===`).
229
- // Aliased as `include`.
230
- _.contains = _.include = function(obj, target) {
231
- if (obj == null) return false;
232
- if (obj.length !== +obj.length) obj = _.values(obj);
233
- return _.indexOf(obj, target) >= 0;
234
- };
235
-
236
- // Invoke a method (with arguments) on every item in a collection.
237
- _.invoke = function(obj, method) {
238
- var args = slice.call(arguments, 2);
239
- var isFunc = _.isFunction(method);
240
- return _.map(obj, function(value) {
241
- return (isFunc ? method : value[method]).apply(value, args);
242
- });
243
- };
244
-
245
- // Convenience version of a common use case of `map`: fetching a property.
246
- _.pluck = function(obj, key) {
247
- return _.map(obj, _.property(key));
248
- };
249
-
250
- // Convenience version of a common use case of `filter`: selecting only objects
251
- // containing specific `key:value` pairs.
252
- _.where = function(obj, attrs) {
253
- return _.filter(obj, _.matches(attrs));
254
- };
255
-
256
- // Convenience version of a common use case of `find`: getting the first object
257
- // containing specific `key:value` pairs.
258
- _.findWhere = function(obj, attrs) {
259
- return _.find(obj, _.matches(attrs));
260
- };
261
-
262
- // Return the maximum element (or element-based computation).
263
- _.max = function(obj, iteratee, context) {
264
- var result = -Infinity, lastComputed = -Infinity,
265
- value, computed;
266
- if (iteratee == null && obj != null) {
267
- obj = obj.length === +obj.length ? obj : _.values(obj);
268
- for (var i = 0, length = obj.length; i < length; i++) {
269
- value = obj[i];
270
- if (value > result) {
271
- result = value;
272
- }
273
- }
274
- } else {
275
- iteratee = _.iteratee(iteratee, context);
276
- _.each(obj, function(value, index, list) {
277
- computed = iteratee(value, index, list);
278
- if (computed > lastComputed || computed === -Infinity && result === -Infinity) {
279
- result = value;
280
- lastComputed = computed;
281
- }
282
- });
283
- }
284
- return result;
285
- };
286
-
287
- // Return the minimum element (or element-based computation).
288
- _.min = function(obj, iteratee, context) {
289
- var result = Infinity, lastComputed = Infinity,
290
- value, computed;
291
- if (iteratee == null && obj != null) {
292
- obj = obj.length === +obj.length ? obj : _.values(obj);
293
- for (var i = 0, length = obj.length; i < length; i++) {
294
- value = obj[i];
295
- if (value < result) {
296
- result = value;
297
- }
298
- }
299
- } else {
300
- iteratee = _.iteratee(iteratee, context);
301
- _.each(obj, function(value, index, list) {
302
- computed = iteratee(value, index, list);
303
- if (computed < lastComputed || computed === Infinity && result === Infinity) {
304
- result = value;
305
- lastComputed = computed;
306
- }
307
- });
308
- }
309
- return result;
310
- };
311
-
312
- // Shuffle a collection, using the modern version of the
313
- // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
314
- _.shuffle = function(obj) {
315
- var set = obj && obj.length === +obj.length ? obj : _.values(obj);
316
- var length = set.length;
317
- var shuffled = Array(length);
318
- for (var index = 0, rand; index < length; index++) {
319
- rand = _.random(0, index);
320
- if (rand !== index) shuffled[index] = shuffled[rand];
321
- shuffled[rand] = set[index];
322
- }
323
- return shuffled;
324
- };
325
-
326
- // Sample **n** random values from a collection.
327
- // If **n** is not specified, returns a single random element.
328
- // The internal `guard` argument allows it to work with `map`.
329
- _.sample = function(obj, n, guard) {
330
- if (n == null || guard) {
331
- if (obj.length !== +obj.length) obj = _.values(obj);
332
- return obj[_.random(obj.length - 1)];
333
- }
334
- return _.shuffle(obj).slice(0, Math.max(0, n));
335
- };
336
-
337
- // Sort the object's values by a criterion produced by an iteratee.
338
- _.sortBy = function(obj, iteratee, context) {
339
- iteratee = _.iteratee(iteratee, context);
340
- return _.pluck(_.map(obj, function(value, index, list) {
341
- return {
342
- value: value,
343
- index: index,
344
- criteria: iteratee(value, index, list)
345
- };
346
- }).sort(function(left, right) {
347
- var a = left.criteria;
348
- var b = right.criteria;
349
- if (a !== b) {
350
- if (a > b || a === void 0) return 1;
351
- if (a < b || b === void 0) return -1;
352
- }
353
- return left.index - right.index;
354
- }), 'value');
355
- };
356
-
357
- // An internal function used for aggregate "group by" operations.
358
- var group = function(behavior) {
359
- return function(obj, iteratee, context) {
360
- var result = {};
361
- iteratee = _.iteratee(iteratee, context);
362
- _.each(obj, function(value, index) {
363
- var key = iteratee(value, index, obj);
364
- behavior(result, value, key);
365
- });
366
- return result;
367
- };
368
- };
369
-
370
- // Groups the object's values by a criterion. Pass either a string attribute
371
- // to group by, or a function that returns the criterion.
372
- _.groupBy = group(function(result, value, key) {
373
- if (_.has(result, key)) result[key].push(value); else result[key] = [value];
374
- });
375
-
376
- // Indexes the object's values by a criterion, similar to `groupBy`, but for
377
- // when you know that your index values will be unique.
378
- _.indexBy = group(function(result, value, key) {
379
- result[key] = value;
380
- });
381
-
382
- // Counts instances of an object that group by a certain criterion. Pass
383
- // either a string attribute to count by, or a function that returns the
384
- // criterion.
385
- _.countBy = group(function(result, value, key) {
386
- if (_.has(result, key)) result[key]++; else result[key] = 1;
387
- });
388
-
389
- // Use a comparator function to figure out the smallest index at which
390
- // an object should be inserted so as to maintain order. Uses binary search.
391
- _.sortedIndex = function(array, obj, iteratee, context) {
392
- iteratee = _.iteratee(iteratee, context, 1);
393
- var value = iteratee(obj);
394
- var low = 0, high = array.length;
395
- while (low < high) {
396
- var mid = low + high >>> 1;
397
- if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;
398
- }
399
- return low;
400
- };
401
-
402
- // Safely create a real, live array from anything iterable.
403
- _.toArray = function(obj) {
404
- if (!obj) return [];
405
- if (_.isArray(obj)) return slice.call(obj);
406
- if (obj.length === +obj.length) return _.map(obj, _.identity);
407
- return _.values(obj);
408
- };
409
-
410
- // Return the number of elements in an object.
411
- _.size = function(obj) {
412
- if (obj == null) return 0;
413
- return obj.length === +obj.length ? obj.length : _.keys(obj).length;
414
- };
415
-
416
- // Split a collection into two arrays: one whose elements all satisfy the given
417
- // predicate, and one whose elements all do not satisfy the predicate.
418
- _.partition = function(obj, predicate, context) {
419
- predicate = _.iteratee(predicate, context);
420
- var pass = [], fail = [];
421
- _.each(obj, function(value, key, obj) {
422
- (predicate(value, key, obj) ? pass : fail).push(value);
423
- });
424
- return [pass, fail];
425
- };
426
-
427
- // Array Functions
428
- // ---------------
429
-
430
- // Get the first element of an array. Passing **n** will return the first N
431
- // values in the array. Aliased as `head` and `take`. The **guard** check
432
- // allows it to work with `_.map`.
433
- _.first = _.head = _.take = function(array, n, guard) {
434
- if (array == null) return void 0;
435
- if (n == null || guard) return array[0];
436
- if (n < 0) return [];
437
- return slice.call(array, 0, n);
438
- };
439
-
440
- // Returns everything but the last entry of the array. Especially useful on
441
- // the arguments object. Passing **n** will return all the values in
442
- // the array, excluding the last N. The **guard** check allows it to work with
443
- // `_.map`.
444
- _.initial = function(array, n, guard) {
445
- return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));
446
- };
447
-
448
- // Get the last element of an array. Passing **n** will return the last N
449
- // values in the array. The **guard** check allows it to work with `_.map`.
450
- _.last = function(array, n, guard) {
451
- if (array == null) return void 0;
452
- if (n == null || guard) return array[array.length - 1];
453
- return slice.call(array, Math.max(array.length - n, 0));
454
- };
455
-
456
- // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.
457
- // Especially useful on the arguments object. Passing an **n** will return
458
- // the rest N values in the array. The **guard**
459
- // check allows it to work with `_.map`.
460
- _.rest = _.tail = _.drop = function(array, n, guard) {
461
- return slice.call(array, n == null || guard ? 1 : n);
462
- };
463
-
464
- // Trim out all falsy values from an array.
465
- _.compact = function(array) {
466
- return _.filter(array, _.identity);
467
- };
468
-
469
- // Internal implementation of a recursive `flatten` function.
470
- var flatten = function(input, shallow, strict, output) {
471
- if (shallow && _.every(input, _.isArray)) {
472
- return concat.apply(output, input);
473
- }
474
- for (var i = 0, length = input.length; i < length; i++) {
475
- var value = input[i];
476
- if (!_.isArray(value) && !_.isArguments(value)) {
477
- if (!strict) output.push(value);
478
- } else if (shallow) {
479
- push.apply(output, value);
480
- } else {
481
- flatten(value, shallow, strict, output);
482
- }
483
- }
484
- return output;
485
- };
486
-
487
- // Flatten out an array, either recursively (by default), or just one level.
488
- _.flatten = function(array, shallow) {
489
- return flatten(array, shallow, false, []);
490
- };
491
-
492
- // Return a version of the array that does not contain the specified value(s).
493
- _.without = function(array) {
494
- return _.difference(array, slice.call(arguments, 1));
495
- };
496
-
497
- // Produce a duplicate-free version of the array. If the array has already
498
- // been sorted, you have the option of using a faster algorithm.
499
- // Aliased as `unique`.
500
- _.uniq = _.unique = function(array, isSorted, iteratee, context) {
501
- if (array == null) return [];
502
- if (!_.isBoolean(isSorted)) {
503
- context = iteratee;
504
- iteratee = isSorted;
505
- isSorted = false;
506
- }
507
- if (iteratee != null) iteratee = _.iteratee(iteratee, context);
508
- var result = [];
509
- var seen = [];
510
- for (var i = 0, length = array.length; i < length; i++) {
511
- var value = array[i];
512
- if (isSorted) {
513
- if (!i || seen !== value) result.push(value);
514
- seen = value;
515
- } else if (iteratee) {
516
- var computed = iteratee(value, i, array);
517
- if (_.indexOf(seen, computed) < 0) {
518
- seen.push(computed);
519
- result.push(value);
520
- }
521
- } else if (_.indexOf(result, value) < 0) {
522
- result.push(value);
523
- }
524
- }
525
- return result;
526
- };
527
-
528
- // Produce an array that contains the union: each distinct element from all of
529
- // the passed-in arrays.
530
- _.union = function() {
531
- return _.uniq(flatten(arguments, true, true, []));
532
- };
533
-
534
- // Produce an array that contains every item shared between all the
535
- // passed-in arrays.
536
- _.intersection = function(array) {
537
- if (array == null) return [];
538
- var result = [];
539
- var argsLength = arguments.length;
540
- for (var i = 0, length = array.length; i < length; i++) {
541
- var item = array[i];
542
- if (_.contains(result, item)) continue;
543
- for (var j = 1; j < argsLength; j++) {
544
- if (!_.contains(arguments[j], item)) break;
545
- }
546
- if (j === argsLength) result.push(item);
547
- }
548
- return result;
549
- };
550
-
551
- // Take the difference between one array and a number of other arrays.
552
- // Only the elements present in just the first array will remain.
553
- _.difference = function(array) {
554
- var rest = flatten(slice.call(arguments, 1), true, true, []);
555
- return _.filter(array, function(value){
556
- return !_.contains(rest, value);
557
- });
558
- };
559
-
560
- // Zip together multiple lists into a single array -- elements that share
561
- // an index go together.
562
- _.zip = function(array) {
563
- if (array == null) return [];
564
- var length = _.max(arguments, 'length').length;
565
- var results = Array(length);
566
- for (var i = 0; i < length; i++) {
567
- results[i] = _.pluck(arguments, i);
568
- }
569
- return results;
570
- };
571
-
572
- // Converts lists into objects. Pass either a single array of `[key, value]`
573
- // pairs, or two parallel arrays of the same length -- one of keys, and one of
574
- // the corresponding values.
575
- _.object = function(list, values) {
576
- if (list == null) return {};
577
- var result = {};
578
- for (var i = 0, length = list.length; i < length; i++) {
579
- if (values) {
580
- result[list[i]] = values[i];
581
- } else {
582
- result[list[i][0]] = list[i][1];
583
- }
584
- }
585
- return result;
586
- };
587
-
588
- // Return the position of the first occurrence of an item in an array,
589
- // or -1 if the item is not included in the array.
590
- // If the array is large and already in sort order, pass `true`
591
- // for **isSorted** to use binary search.
592
- _.indexOf = function(array, item, isSorted) {
593
- if (array == null) return -1;
594
- var i = 0, length = array.length;
595
- if (isSorted) {
596
- if (typeof isSorted == 'number') {
597
- i = isSorted < 0 ? Math.max(0, length + isSorted) : isSorted;
598
- } else {
599
- i = _.sortedIndex(array, item);
600
- return array[i] === item ? i : -1;
601
- }
602
- }
603
- for (; i < length; i++) if (array[i] === item) return i;
604
- return -1;
605
- };
606
-
607
- _.lastIndexOf = function(array, item, from) {
608
- if (array == null) return -1;
609
- var idx = array.length;
610
- if (typeof from == 'number') {
611
- idx = from < 0 ? idx + from + 1 : Math.min(idx, from + 1);
612
- }
613
- while (--idx >= 0) if (array[idx] === item) return idx;
614
- return -1;
615
- };
616
-
617
- // Generate an integer Array containing an arithmetic progression. A port of
618
- // the native Python `range()` function. See
619
- // [the Python documentation](http://docs.python.org/library/functions.html#range).
620
- _.range = function(start, stop, step) {
621
- if (arguments.length <= 1) {
622
- stop = start || 0;
623
- start = 0;
624
- }
625
- step = step || 1;
626
-
627
- var length = Math.max(Math.ceil((stop - start) / step), 0);
628
- var range = Array(length);
629
-
630
- for (var idx = 0; idx < length; idx++, start += step) {
631
- range[idx] = start;
632
- }
633
-
634
- return range;
635
- };
636
-
637
- // Function (ahem) Functions
638
- // ------------------
639
-
640
- // Reusable constructor function for prototype setting.
641
- var Ctor = function(){};
642
-
643
- // Create a function bound to a given object (assigning `this`, and arguments,
644
- // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if
645
- // available.
646
- _.bind = function(func, context) {
647
- var args, bound;
648
- if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
649
- if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');
650
- args = slice.call(arguments, 2);
651
- bound = function() {
652
- if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
653
- Ctor.prototype = func.prototype;
654
- var self = new Ctor;
655
- Ctor.prototype = null;
656
- var result = func.apply(self, args.concat(slice.call(arguments)));
657
- if (_.isObject(result)) return result;
658
- return self;
659
- };
660
- return bound;
661
- };
662
-
663
- // Partially apply a function by creating a version that has had some of its
664
- // arguments pre-filled, without changing its dynamic `this` context. _ acts
665
- // as a placeholder, allowing any combination of arguments to be pre-filled.
666
- _.partial = function(func) {
667
- var boundArgs = slice.call(arguments, 1);
668
- return function() {
669
- var position = 0;
670
- var args = boundArgs.slice();
671
- for (var i = 0, length = args.length; i < length; i++) {
672
- if (args[i] === _) args[i] = arguments[position++];
673
- }
674
- while (position < arguments.length) args.push(arguments[position++]);
675
- return func.apply(this, args);
676
- };
677
- };
678
-
679
- // Bind a number of an object's methods to that object. Remaining arguments
680
- // are the method names to be bound. Useful for ensuring that all callbacks
681
- // defined on an object belong to it.
682
- _.bindAll = function(obj) {
683
- var i, length = arguments.length, key;
684
- if (length <= 1) throw new Error('bindAll must be passed function names');
685
- for (i = 1; i < length; i++) {
686
- key = arguments[i];
687
- obj[key] = _.bind(obj[key], obj);
688
- }
689
- return obj;
690
- };
691
-
692
- // Memoize an expensive function by storing its results.
693
- _.memoize = function(func, hasher) {
694
- var memoize = function(key) {
695
- var cache = memoize.cache;
696
- var address = hasher ? hasher.apply(this, arguments) : key;
697
- if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);
698
- return cache[address];
699
- };
700
- memoize.cache = {};
701
- return memoize;
702
- };
703
-
704
- // Delays a function for the given number of milliseconds, and then calls
705
- // it with the arguments supplied.
706
- _.delay = function(func, wait) {
707
- var args = slice.call(arguments, 2);
708
- return setTimeout(function(){
709
- return func.apply(null, args);
710
- }, wait);
711
- };
712
-
713
- // Defers a function, scheduling it to run after the current call stack has
714
- // cleared.
715
- _.defer = function(func) {
716
- return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
717
- };
718
-
719
- // Returns a function, that, when invoked, will only be triggered at most once
720
- // during a given window of time. Normally, the throttled function will run
721
- // as much as it can, without ever going more than once per `wait` duration;
722
- // but if you'd like to disable the execution on the leading edge, pass
723
- // `{leading: false}`. To disable execution on the trailing edge, ditto.
724
- _.throttle = function(func, wait, options) {
725
- var context, args, result;
726
- var timeout = null;
727
- var previous = 0;
728
- if (!options) options = {};
729
- var later = function() {
730
- previous = options.leading === false ? 0 : _.now();
731
- timeout = null;
732
- result = func.apply(context, args);
733
- if (!timeout) context = args = null;
734
- };
735
- return function() {
736
- var now = _.now();
737
- if (!previous && options.leading === false) previous = now;
738
- var remaining = wait - (now - previous);
739
- context = this;
740
- args = arguments;
741
- if (remaining <= 0 || remaining > wait) {
742
- clearTimeout(timeout);
743
- timeout = null;
744
- previous = now;
745
- result = func.apply(context, args);
746
- if (!timeout) context = args = null;
747
- } else if (!timeout && options.trailing !== false) {
748
- timeout = setTimeout(later, remaining);
749
- }
750
- return result;
751
- };
752
- };
753
-
754
- // Returns a function, that, as long as it continues to be invoked, will not
755
- // be triggered. The function will be called after it stops being called for
756
- // N milliseconds. If `immediate` is passed, trigger the function on the
757
- // leading edge, instead of the trailing.
758
- _.debounce = function(func, wait, immediate) {
759
- var timeout, args, context, timestamp, result;
760
-
761
- var later = function() {
762
- var last = _.now() - timestamp;
763
-
764
- if (last < wait && last > 0) {
765
- timeout = setTimeout(later, wait - last);
766
- } else {
767
- timeout = null;
768
- if (!immediate) {
769
- result = func.apply(context, args);
770
- if (!timeout) context = args = null;
771
- }
772
- }
773
- };
774
-
775
- return function() {
776
- context = this;
777
- args = arguments;
778
- timestamp = _.now();
779
- var callNow = immediate && !timeout;
780
- if (!timeout) timeout = setTimeout(later, wait);
781
- if (callNow) {
782
- result = func.apply(context, args);
783
- context = args = null;
784
- }
785
-
786
- return result;
787
- };
788
- };
789
-
790
- // Returns the first function passed as an argument to the second,
791
- // allowing you to adjust arguments, run code before and after, and
792
- // conditionally execute the original function.
793
- _.wrap = function(func, wrapper) {
794
- return _.partial(wrapper, func);
795
- };
796
-
797
- // Returns a negated version of the passed-in predicate.
798
- _.negate = function(predicate) {
799
- return function() {
800
- return !predicate.apply(this, arguments);
801
- };
802
- };
803
-
804
- // Returns a function that is the composition of a list of functions, each
805
- // consuming the return value of the function that follows.
806
- _.compose = function() {
807
- var args = arguments;
808
- var start = args.length - 1;
809
- return function() {
810
- var i = start;
811
- var result = args[start].apply(this, arguments);
812
- while (i--) result = args[i].call(this, result);
813
- return result;
814
- };
815
- };
816
-
817
- // Returns a function that will only be executed after being called N times.
818
- _.after = function(times, func) {
819
- return function() {
820
- if (--times < 1) {
821
- return func.apply(this, arguments);
822
- }
823
- };
824
- };
825
-
826
- // Returns a function that will only be executed before being called N times.
827
- _.before = function(times, func) {
828
- var memo;
829
- return function() {
830
- if (--times > 0) {
831
- memo = func.apply(this, arguments);
832
- } else {
833
- func = null;
834
- }
835
- return memo;
836
- };
837
- };
838
-
839
- // Returns a function that will be executed at most one time, no matter how
840
- // often you call it. Useful for lazy initialization.
841
- _.once = _.partial(_.before, 2);
842
-
843
- // Object Functions
844
- // ----------------
845
-
846
- // Retrieve the names of an object's properties.
847
- // Delegates to **ECMAScript 5**'s native `Object.keys`
848
- _.keys = function(obj) {
849
- if (!_.isObject(obj)) return [];
850
- if (nativeKeys) return nativeKeys(obj);
851
- var keys = [];
852
- for (var key in obj) if (_.has(obj, key)) keys.push(key);
853
- return keys;
854
- };
855
-
856
- // Retrieve the values of an object's properties.
857
- _.values = function(obj) {
858
- var keys = _.keys(obj);
859
- var length = keys.length;
860
- var values = Array(length);
861
- for (var i = 0; i < length; i++) {
862
- values[i] = obj[keys[i]];
863
- }
864
- return values;
865
- };
866
-
867
- // Convert an object into a list of `[key, value]` pairs.
868
- _.pairs = function(obj) {
869
- var keys = _.keys(obj);
870
- var length = keys.length;
871
- var pairs = Array(length);
872
- for (var i = 0; i < length; i++) {
873
- pairs[i] = [keys[i], obj[keys[i]]];
874
- }
875
- return pairs;
876
- };
877
-
878
- // Invert the keys and values of an object. The values must be serializable.
879
- _.invert = function(obj) {
880
- var result = {};
881
- var keys = _.keys(obj);
882
- for (var i = 0, length = keys.length; i < length; i++) {
883
- result[obj[keys[i]]] = keys[i];
884
- }
885
- return result;
886
- };
887
-
888
- // Return a sorted list of the function names available on the object.
889
- // Aliased as `methods`
890
- _.functions = _.methods = function(obj) {
891
- var names = [];
892
- for (var key in obj) {
893
- if (_.isFunction(obj[key])) names.push(key);
894
- }
895
- return names.sort();
896
- };
897
-
898
- // Extend a given object with all the properties in passed-in object(s).
899
- _.extend = function(obj) {
900
- if (!_.isObject(obj)) return obj;
901
- var source, prop;
902
- for (var i = 1, length = arguments.length; i < length; i++) {
903
- source = arguments[i];
904
- for (prop in source) {
905
- if (hasOwnProperty.call(source, prop)) {
906
- obj[prop] = source[prop];
907
- }
908
- }
909
- }
910
- return obj;
911
- };
912
-
913
- // Return a copy of the object only containing the whitelisted properties.
914
- _.pick = function(obj, iteratee, context) {
915
- var result = {}, key;
916
- if (obj == null) return result;
917
- if (_.isFunction(iteratee)) {
918
- iteratee = createCallback(iteratee, context);
919
- for (key in obj) {
920
- var value = obj[key];
921
- if (iteratee(value, key, obj)) result[key] = value;
922
- }
923
- } else {
924
- var keys = concat.apply([], slice.call(arguments, 1));
925
- obj = new Object(obj);
926
- for (var i = 0, length = keys.length; i < length; i++) {
927
- key = keys[i];
928
- if (key in obj) result[key] = obj[key];
929
- }
930
- }
931
- return result;
932
- };
933
-
934
- // Return a copy of the object without the blacklisted properties.
935
- _.omit = function(obj, iteratee, context) {
936
- if (_.isFunction(iteratee)) {
937
- iteratee = _.negate(iteratee);
938
- } else {
939
- var keys = _.map(concat.apply([], slice.call(arguments, 1)), String);
940
- iteratee = function(value, key) {
941
- return !_.contains(keys, key);
942
- };
943
- }
944
- return _.pick(obj, iteratee, context);
945
- };
946
-
947
- // Fill in a given object with default properties.
948
- _.defaults = function(obj) {
949
- if (!_.isObject(obj)) return obj;
950
- for (var i = 1, length = arguments.length; i < length; i++) {
951
- var source = arguments[i];
952
- for (var prop in source) {
953
- if (obj[prop] === void 0) obj[prop] = source[prop];
954
- }
955
- }
956
- return obj;
957
- };
958
-
959
- // Create a (shallow-cloned) duplicate of an object.
960
- _.clone = function(obj) {
961
- if (!_.isObject(obj)) return obj;
962
- return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
963
- };
964
-
965
- // Invokes interceptor with the obj, and then returns obj.
966
- // The primary purpose of this method is to "tap into" a method chain, in
967
- // order to perform operations on intermediate results within the chain.
968
- _.tap = function(obj, interceptor) {
969
- interceptor(obj);
970
- return obj;
971
- };
972
-
973
- // Internal recursive comparison function for `isEqual`.
974
- var eq = function(a, b, aStack, bStack) {
975
- // Identical objects are equal. `0 === -0`, but they aren't identical.
976
- // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
977
- if (a === b) return a !== 0 || 1 / a === 1 / b;
978
- // A strict comparison is necessary because `null == undefined`.
979
- if (a == null || b == null) return a === b;
980
- // Unwrap any wrapped objects.
981
- if (a instanceof _) a = a._wrapped;
982
- if (b instanceof _) b = b._wrapped;
983
- // Compare `[[Class]]` names.
984
- var className = toString.call(a);
985
- if (className !== toString.call(b)) return false;
986
- switch (className) {
987
- // Strings, numbers, regular expressions, dates, and booleans are compared by value.
988
- case '[object RegExp]':
989
- // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')
990
- case '[object String]':
991
- // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
992
- // equivalent to `new String("5")`.
993
- return '' + a === '' + b;
994
- case '[object Number]':
995
- // `NaN`s are equivalent, but non-reflexive.
996
- // Object(NaN) is equivalent to NaN
997
- if (+a !== +a) return +b !== +b;
998
- // An `egal` comparison is performed for other numeric values.
999
- return +a === 0 ? 1 / +a === 1 / b : +a === +b;
1000
- case '[object Date]':
1001
- case '[object Boolean]':
1002
- // Coerce dates and booleans to numeric primitive values. Dates are compared by their
1003
- // millisecond representations. Note that invalid dates with millisecond representations
1004
- // of `NaN` are not equivalent.
1005
- return +a === +b;
1006
- }
1007
- if (typeof a != 'object' || typeof b != 'object') return false;
1008
- // Assume equality for cyclic structures. The algorithm for detecting cyclic
1009
- // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
1010
- var length = aStack.length;
1011
- while (length--) {
1012
- // Linear search. Performance is inversely proportional to the number of
1013
- // unique nested structures.
1014
- if (aStack[length] === a) return bStack[length] === b;
1015
- }
1016
- // Objects with different constructors are not equivalent, but `Object`s
1017
- // from different frames are.
1018
- var aCtor = a.constructor, bCtor = b.constructor;
1019
- if (
1020
- aCtor !== bCtor &&
1021
- // Handle Object.create(x) cases
1022
- 'constructor' in a && 'constructor' in b &&
1023
- !(_.isFunction(aCtor) && aCtor instanceof aCtor &&
1024
- _.isFunction(bCtor) && bCtor instanceof bCtor)
1025
- ) {
1026
- return false;
1027
- }
1028
- // Add the first object to the stack of traversed objects.
1029
- aStack.push(a);
1030
- bStack.push(b);
1031
- var size, result;
1032
- // Recursively compare objects and arrays.
1033
- if (className === '[object Array]') {
1034
- // Compare array lengths to determine if a deep comparison is necessary.
1035
- size = a.length;
1036
- result = size === b.length;
1037
- if (result) {
1038
- // Deep compare the contents, ignoring non-numeric properties.
1039
- while (size--) {
1040
- if (!(result = eq(a[size], b[size], aStack, bStack))) break;
1041
- }
1042
- }
1043
- } else {
1044
- // Deep compare objects.
1045
- var keys = _.keys(a), key;
1046
- size = keys.length;
1047
- // Ensure that both objects contain the same number of properties before comparing deep equality.
1048
- result = _.keys(b).length === size;
1049
- if (result) {
1050
- while (size--) {
1051
- // Deep compare each member
1052
- key = keys[size];
1053
- if (!(result = _.has(b, key) && eq(a[key], b[key], aStack, bStack))) break;
1054
- }
1055
- }
1056
- }
1057
- // Remove the first object from the stack of traversed objects.
1058
- aStack.pop();
1059
- bStack.pop();
1060
- return result;
1061
- };
1062
-
1063
- // Perform a deep comparison to check if two objects are equal.
1064
- _.isEqual = function(a, b) {
1065
- return eq(a, b, [], []);
1066
- };
1067
-
1068
- // Is a given array, string, or object empty?
1069
- // An "empty" object has no enumerable own-properties.
1070
- _.isEmpty = function(obj) {
1071
- if (obj == null) return true;
1072
- if (_.isArray(obj) || _.isString(obj) || _.isArguments(obj)) return obj.length === 0;
1073
- for (var key in obj) if (_.has(obj, key)) return false;
1074
- return true;
1075
- };
1076
-
1077
- // Is a given value a DOM element?
1078
- _.isElement = function(obj) {
1079
- return !!(obj && obj.nodeType === 1);
1080
- };
1081
-
1082
- // Is a given value an array?
1083
- // Delegates to ECMA5's native Array.isArray
1084
- _.isArray = nativeIsArray || function(obj) {
1085
- return toString.call(obj) === '[object Array]';
1086
- };
1087
-
1088
- // Is a given variable an object?
1089
- _.isObject = function(obj) {
1090
- var type = typeof obj;
1091
- return type === 'function' || type === 'object' && !!obj;
1092
- };
1093
-
1094
- // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp.
1095
- _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp'], function(name) {
1096
- _['is' + name] = function(obj) {
1097
- return toString.call(obj) === '[object ' + name + ']';
1098
- };
1099
- });
1100
-
1101
- // Define a fallback version of the method in browsers (ahem, IE), where
1102
- // there isn't any inspectable "Arguments" type.
1103
- if (!_.isArguments(arguments)) {
1104
- _.isArguments = function(obj) {
1105
- return _.has(obj, 'callee');
1106
- };
1107
- }
1108
-
1109
- // Optimize `isFunction` if appropriate. Work around an IE 11 bug.
1110
- if (typeof /./ !== 'function') {
1111
- _.isFunction = function(obj) {
1112
- return typeof obj == 'function' || false;
1113
- };
1114
- }
1115
-
1116
- // Is a given object a finite number?
1117
- _.isFinite = function(obj) {
1118
- return isFinite(obj) && !isNaN(parseFloat(obj));
1119
- };
1120
-
1121
- // Is the given value `NaN`? (NaN is the only number which does not equal itself).
1122
- _.isNaN = function(obj) {
1123
- return _.isNumber(obj) && obj !== +obj;
1124
- };
1125
-
1126
- // Is a given value a boolean?
1127
- _.isBoolean = function(obj) {
1128
- return obj === true || obj === false || toString.call(obj) === '[object Boolean]';
1129
- };
1130
-
1131
- // Is a given value equal to null?
1132
- _.isNull = function(obj) {
1133
- return obj === null;
1134
- };
1135
-
1136
- // Is a given variable undefined?
1137
- _.isUndefined = function(obj) {
1138
- return obj === void 0;
1139
- };
1140
-
1141
- // Shortcut function for checking if an object has a given property directly
1142
- // on itself (in other words, not on a prototype).
1143
- _.has = function(obj, key) {
1144
- return obj != null && hasOwnProperty.call(obj, key);
1145
- };
1146
-
1147
- // Utility Functions
1148
- // -----------------
1149
-
1150
- // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
1151
- // previous owner. Returns a reference to the Underscore object.
1152
- _.noConflict = function() {
1153
- root._ = previousUnderscore;
1154
- return this;
1155
- };
1156
-
1157
- // Keep the identity function around for default iteratees.
1158
- _.identity = function(value) {
1159
- return value;
1160
- };
1161
-
1162
- _.constant = function(value) {
1163
- return function() {
1164
- return value;
1165
- };
1166
- };
1167
-
1168
- _.noop = function(){};
1169
-
1170
- _.property = function(key) {
1171
- return function(obj) {
1172
- return obj[key];
1173
- };
1174
- };
1175
-
1176
- // Returns a predicate for checking whether an object has a given set of `key:value` pairs.
1177
- _.matches = function(attrs) {
1178
- var pairs = _.pairs(attrs), length = pairs.length;
1179
- return function(obj) {
1180
- if (obj == null) return !length;
1181
- obj = new Object(obj);
1182
- for (var i = 0; i < length; i++) {
1183
- var pair = pairs[i], key = pair[0];
1184
- if (pair[1] !== obj[key] || !(key in obj)) return false;
1185
- }
1186
- return true;
1187
- };
1188
- };
1189
-
1190
- // Run a function **n** times.
1191
- _.times = function(n, iteratee, context) {
1192
- var accum = Array(Math.max(0, n));
1193
- iteratee = createCallback(iteratee, context, 1);
1194
- for (var i = 0; i < n; i++) accum[i] = iteratee(i);
1195
- return accum;
1196
- };
1197
-
1198
- // Return a random integer between min and max (inclusive).
1199
- _.random = function(min, max) {
1200
- if (max == null) {
1201
- max = min;
1202
- min = 0;
1203
- }
1204
- return min + Math.floor(Math.random() * (max - min + 1));
1205
- };
1206
-
1207
- // A (possibly faster) way to get the current timestamp as an integer.
1208
- _.now = Date.now || function() {
1209
- return new Date().getTime();
1210
- };
1211
-
1212
- // List of HTML entities for escaping.
1213
- var escapeMap = {
1214
- '&': '&amp;',
1215
- '<': '&lt;',
1216
- '>': '&gt;',
1217
- '"': '&quot;',
1218
- "'": '&#x27;',
1219
- '`': '&#x60;'
1220
- };
1221
- var unescapeMap = _.invert(escapeMap);
1222
-
1223
- // Functions for escaping and unescaping strings to/from HTML interpolation.
1224
- var createEscaper = function(map) {
1225
- var escaper = function(match) {
1226
- return map[match];
1227
- };
1228
- // Regexes for identifying a key that needs to be escaped
1229
- var source = '(?:' + _.keys(map).join('|') + ')';
1230
- var testRegexp = RegExp(source);
1231
- var replaceRegexp = RegExp(source, 'g');
1232
- return function(string) {
1233
- string = string == null ? '' : '' + string;
1234
- return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;
1235
- };
1236
- };
1237
- _.escape = createEscaper(escapeMap);
1238
- _.unescape = createEscaper(unescapeMap);
1239
-
1240
- // If the value of the named `property` is a function then invoke it with the
1241
- // `object` as context; otherwise, return it.
1242
- _.result = function(object, property) {
1243
- if (object == null) return void 0;
1244
- var value = object[property];
1245
- return _.isFunction(value) ? object[property]() : value;
1246
- };
1247
-
1248
- // Generate a unique integer id (unique within the entire client session).
1249
- // Useful for temporary DOM ids.
1250
- var idCounter = 0;
1251
- _.uniqueId = function(prefix) {
1252
- var id = ++idCounter + '';
1253
- return prefix ? prefix + id : id;
1254
- };
1255
-
1256
- // By default, Underscore uses ERB-style template delimiters, change the
1257
- // following template settings to use alternative delimiters.
1258
- _.templateSettings = {
1259
- evaluate : /<%([\s\S]+?)%>/g,
1260
- interpolate : /<%=([\s\S]+?)%>/g,
1261
- escape : /<%-([\s\S]+?)%>/g
1262
- };
1263
-
1264
- // When customizing `templateSettings`, if you don't want to define an
1265
- // interpolation, evaluation or escaping regex, we need one that is
1266
- // guaranteed not to match.
1267
- var noMatch = /(.)^/;
1268
-
1269
- // Certain characters need to be escaped so that they can be put into a
1270
- // string literal.
1271
- var escapes = {
1272
- "'": "'",
1273
- '\\': '\\',
1274
- '\r': 'r',
1275
- '\n': 'n',
1276
- '\u2028': 'u2028',
1277
- '\u2029': 'u2029'
1278
- };
1279
-
1280
- var escaper = /\\|'|\r|\n|\u2028|\u2029/g;
1281
-
1282
- var escapeChar = function(match) {
1283
- return '\\' + escapes[match];
1284
- };
1285
-
1286
- // JavaScript micro-templating, similar to John Resig's implementation.
1287
- // Underscore templating handles arbitrary delimiters, preserves whitespace,
1288
- // and correctly escapes quotes within interpolated code.
1289
- // NB: `oldSettings` only exists for backwards compatibility.
1290
- _.template = function(text, settings, oldSettings) {
1291
- if (!settings && oldSettings) settings = oldSettings;
1292
- settings = _.defaults({}, settings, _.templateSettings);
1293
-
1294
- // Combine delimiters into one regular expression via alternation.
1295
- var matcher = RegExp([
1296
- (settings.escape || noMatch).source,
1297
- (settings.interpolate || noMatch).source,
1298
- (settings.evaluate || noMatch).source
1299
- ].join('|') + '|$', 'g');
1300
-
1301
- // Compile the template source, escaping string literals appropriately.
1302
- var index = 0;
1303
- var source = "__p+='";
1304
- text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {
1305
- source += text.slice(index, offset).replace(escaper, escapeChar);
1306
- index = offset + match.length;
1307
-
1308
- if (escape) {
1309
- source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'";
1310
- } else if (interpolate) {
1311
- source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'";
1312
- } else if (evaluate) {
1313
- source += "';\n" + evaluate + "\n__p+='";
1314
- }
1315
-
1316
- // Adobe VMs need the match returned to produce the correct offest.
1317
- return match;
1318
- });
1319
- source += "';\n";
1320
-
1321
- // If a variable is not specified, place data values in local scope.
1322
- if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
1323
-
1324
- source = "var __t,__p='',__j=Array.prototype.join," +
1325
- "print=function(){__p+=__j.call(arguments,'');};\n" +
1326
- source + 'return __p;\n';
1327
-
1328
- try {
1329
- var render = new Function(settings.variable || 'obj', '_', source);
1330
- } catch (e) {
1331
- e.source = source;
1332
- throw e;
1333
- }
1334
-
1335
- var template = function(data) {
1336
- return render.call(this, data, _);
1337
- };
1338
-
1339
- // Provide the compiled source as a convenience for precompilation.
1340
- var argument = settings.variable || 'obj';
1341
- template.source = 'function(' + argument + '){\n' + source + '}';
1342
-
1343
- return template;
1344
- };
1345
-
1346
- // Add a "chain" function. Start chaining a wrapped Underscore object.
1347
- _.chain = function(obj) {
1348
- var instance = _(obj);
1349
- instance._chain = true;
1350
- return instance;
1351
- };
1352
-
1353
- // OOP
1354
- // ---------------
1355
- // If Underscore is called as a function, it returns a wrapped object that
1356
- // can be used OO-style. This wrapper holds altered versions of all the
1357
- // underscore functions. Wrapped objects may be chained.
1358
-
1359
- // Helper function to continue chaining intermediate results.
1360
- var result = function(obj) {
1361
- return this._chain ? _(obj).chain() : obj;
1362
- };
1363
-
1364
- // Add your own custom functions to the Underscore object.
1365
- _.mixin = function(obj) {
1366
- _.each(_.functions(obj), function(name) {
1367
- var func = _[name] = obj[name];
1368
- _.prototype[name] = function() {
1369
- var args = [this._wrapped];
1370
- push.apply(args, arguments);
1371
- return result.call(this, func.apply(_, args));
1372
- };
1373
- });
1374
- };
1375
-
1376
- // Add all of the Underscore functions to the wrapper object.
1377
- _.mixin(_);
1378
-
1379
- // Add all mutator Array functions to the wrapper.
1380
- _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
1381
- var method = ArrayProto[name];
1382
- _.prototype[name] = function() {
1383
- var obj = this._wrapped;
1384
- method.apply(obj, arguments);
1385
- if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];
1386
- return result.call(this, obj);
1387
- };
1388
- });
1389
-
1390
- // Add all accessor Array functions to the wrapper.
1391
- _.each(['concat', 'join', 'slice'], function(name) {
1392
- var method = ArrayProto[name];
1393
- _.prototype[name] = function() {
1394
- return result.call(this, method.apply(this._wrapped, arguments));
1395
- };
1396
- });
1397
-
1398
- // Extracts the result from a wrapped and chained object.
1399
- _.prototype.value = function() {
1400
- return this._wrapped;
1401
- };
1402
-
1403
- // AMD registration happens at the end for compatibility with AMD loaders
1404
- // that may not enforce next-turn semantics on modules. Even though general
1405
- // practice for AMD registration is to be anonymous, underscore registers
1406
- // as a named module because, like jQuery, it is a base library that is
1407
- // popular enough to be bundled in a third party lib, but not be part of
1408
- // an AMD load request. Those cases could generate an error when an
1409
- // anonymous define() is called outside of a loader request.
1410
- if (typeof define === 'function' && define.amd) {
1411
- define('underscore', [], function() {
1412
- return _;
1413
- });
1414
- }
1415
- }.call(this));