epuber-stylus-source 0.54.8 → 0.56.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (465) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/Rakefile +1 -1
  4. data/VERSION +1 -1
  5. data/vendor/{History.md → Changelog.md} +50 -0
  6. data/vendor/Readme.md +37 -23
  7. data/vendor/bin/stylus +1 -2
  8. data/vendor/lib/convert/css.js +1 -1
  9. data/vendor/lib/functions/acos.js +20 -0
  10. data/vendor/lib/functions/asin.js +21 -0
  11. data/vendor/lib/functions/atan.js +21 -0
  12. data/vendor/lib/functions/convert-angle.js +19 -0
  13. data/vendor/lib/functions/index.js +3 -0
  14. data/vendor/lib/functions/url.js +5 -5
  15. data/vendor/lib/lexer.js +1 -1
  16. data/vendor/lib/middleware.js +1 -2
  17. data/vendor/lib/visitor/compiler.js +2 -2
  18. data/vendor/lib/visitor/deps-resolver.js +3 -0
  19. data/vendor/node_modules/{cliui/node_modules/ansi-regex → ansi-regex}/index.d.ts +0 -0
  20. data/vendor/node_modules/ansi-regex/index.js +4 -4
  21. data/vendor/node_modules/ansi-regex/package.json +53 -51
  22. data/vendor/node_modules/ansi-regex/readme.md +35 -3
  23. data/vendor/node_modules/assertion-error/History.md +24 -0
  24. data/vendor/node_modules/{mkdirp/LICENSE → assertion-error/README.md} +22 -2
  25. data/vendor/node_modules/assertion-error/index.d.ts +11 -0
  26. data/vendor/node_modules/assertion-error/index.js +116 -0
  27. data/vendor/node_modules/assertion-error/package.json +29 -0
  28. data/vendor/node_modules/camelcase/index.d.ts +5 -3
  29. data/vendor/node_modules/camelcase/index.js +40 -18
  30. data/vendor/node_modules/camelcase/package.json +1 -1
  31. data/vendor/node_modules/camelcase/readme.md +21 -5
  32. data/vendor/node_modules/chai/CODEOWNERS +1 -0
  33. data/vendor/node_modules/chai/CODE_OF_CONDUCT.md +58 -0
  34. data/vendor/node_modules/chai/CONTRIBUTING.md +218 -0
  35. data/vendor/node_modules/chai/History.md +1059 -0
  36. data/vendor/node_modules/{should-type-adaptors → chai}/LICENSE +1 -1
  37. data/vendor/node_modules/chai/README.md +212 -0
  38. data/vendor/node_modules/chai/ReleaseNotes.md +737 -0
  39. data/vendor/node_modules/chai/bower.json +26 -0
  40. data/vendor/node_modules/chai/chai.js +11464 -0
  41. data/vendor/node_modules/chai/index.js +1 -0
  42. data/vendor/node_modules/chai/index.mjs +14 -0
  43. data/vendor/node_modules/chai/karma.conf.js +34 -0
  44. data/vendor/node_modules/chai/karma.sauce.js +41 -0
  45. data/vendor/node_modules/chai/lib/chai/assertion.js +175 -0
  46. data/vendor/node_modules/chai/lib/chai/config.js +94 -0
  47. data/vendor/node_modules/chai/lib/chai/core/assertions.js +3853 -0
  48. data/vendor/node_modules/chai/lib/chai/interface/assert.js +3113 -0
  49. data/vendor/node_modules/chai/lib/chai/interface/expect.js +47 -0
  50. data/vendor/node_modules/chai/lib/chai/interface/should.js +219 -0
  51. data/vendor/node_modules/chai/lib/chai/utils/addChainableMethod.js +152 -0
  52. data/vendor/node_modules/chai/lib/chai/utils/addLengthGuard.js +60 -0
  53. data/vendor/node_modules/chai/lib/chai/utils/addMethod.js +68 -0
  54. data/vendor/node_modules/chai/lib/chai/utils/addProperty.js +72 -0
  55. data/vendor/node_modules/chai/lib/chai/utils/compareByInspect.js +31 -0
  56. data/vendor/node_modules/chai/lib/chai/utils/expectTypes.js +51 -0
  57. data/vendor/node_modules/chai/lib/chai/utils/flag.js +33 -0
  58. data/vendor/node_modules/chai/lib/chai/utils/getActual.js +20 -0
  59. data/vendor/node_modules/chai/lib/chai/utils/getEnumerableProperties.js +26 -0
  60. data/vendor/node_modules/chai/lib/chai/utils/getMessage.js +50 -0
  61. data/vendor/node_modules/chai/lib/chai/utils/getOperator.js +55 -0
  62. data/vendor/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js +29 -0
  63. data/vendor/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js +27 -0
  64. data/vendor/node_modules/chai/lib/chai/utils/getProperties.js +36 -0
  65. data/vendor/node_modules/chai/lib/chai/utils/index.js +178 -0
  66. data/vendor/node_modules/chai/lib/chai/utils/inspect.js +33 -0
  67. data/vendor/node_modules/chai/lib/chai/utils/isNaN.js +26 -0
  68. data/vendor/node_modules/chai/lib/chai/utils/isProxyEnabled.js +24 -0
  69. data/vendor/node_modules/chai/lib/chai/utils/objDisplay.js +50 -0
  70. data/vendor/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js +69 -0
  71. data/vendor/node_modules/chai/lib/chai/utils/overwriteMethod.js +92 -0
  72. data/vendor/node_modules/chai/lib/chai/utils/overwriteProperty.js +92 -0
  73. data/vendor/node_modules/chai/lib/chai/utils/proxify.js +147 -0
  74. data/vendor/node_modules/chai/lib/chai/utils/test.js +28 -0
  75. data/vendor/node_modules/chai/lib/chai/utils/transferFlags.js +45 -0
  76. data/vendor/node_modules/chai/lib/chai.js +92 -0
  77. data/vendor/node_modules/chai/package.json +63 -0
  78. data/vendor/node_modules/chai/register-assert.js +1 -0
  79. data/vendor/node_modules/chai/register-expect.js +1 -0
  80. data/vendor/node_modules/chai/register-should.js +1 -0
  81. data/vendor/node_modules/chai/sauce.browsers.js +106 -0
  82. data/vendor/node_modules/chalk/package.json +1 -1
  83. data/vendor/node_modules/chalk/readme.md +7 -1
  84. data/vendor/node_modules/{source-map-url → check-error}/LICENSE +1 -3
  85. data/vendor/node_modules/check-error/README.md +207 -0
  86. data/vendor/node_modules/check-error/check-error.js +176 -0
  87. data/vendor/node_modules/check-error/index.js +172 -0
  88. data/vendor/node_modules/check-error/package.json +85 -0
  89. data/vendor/node_modules/chokidar/README.md +5 -4
  90. data/vendor/node_modules/chokidar/index.js +7 -1
  91. data/vendor/node_modules/chokidar/lib/constants.js +2 -0
  92. data/vendor/node_modules/chokidar/lib/fsevents-handler.js +2 -1
  93. data/vendor/node_modules/chokidar/lib/nodefs-handler.js +9 -1
  94. data/vendor/node_modules/chokidar/package.json +15 -8
  95. data/vendor/node_modules/chokidar/types/index.d.ts +4 -3
  96. data/vendor/node_modules/css/lib/stringify/source-map-support.js +10 -3
  97. data/vendor/node_modules/css/package.json +8 -9
  98. data/vendor/node_modules/debug/LICENSE +10 -9
  99. data/vendor/node_modules/debug/README.md +116 -3
  100. data/vendor/node_modules/debug/package.json +35 -19
  101. data/vendor/node_modules/debug/src/browser.js +194 -120
  102. data/vendor/node_modules/debug/src/common.js +274 -0
  103. data/vendor/node_modules/debug/src/index.js +4 -4
  104. data/vendor/node_modules/debug/src/node.js +174 -97
  105. data/vendor/node_modules/{resolve-url → deep-eql}/LICENSE +1 -3
  106. data/vendor/node_modules/deep-eql/README.md +116 -0
  107. data/vendor/node_modules/deep-eql/deep-eql.js +833 -0
  108. data/vendor/node_modules/deep-eql/index.js +455 -0
  109. data/vendor/node_modules/deep-eql/package.json +90 -0
  110. data/vendor/node_modules/{urix → get-func-name}/LICENSE +1 -3
  111. data/vendor/node_modules/get-func-name/README.md +123 -0
  112. data/vendor/node_modules/get-func-name/get-func-name.js +48 -0
  113. data/vendor/node_modules/get-func-name/index.js +44 -0
  114. data/vendor/node_modules/get-func-name/package.json +85 -0
  115. data/vendor/node_modules/glob/README.md +3 -0
  116. data/vendor/node_modules/glob/common.js +2 -0
  117. data/vendor/node_modules/glob/glob.js +4 -5
  118. data/vendor/node_modules/glob/package.json +2 -1
  119. data/vendor/node_modules/glob/sync.js +4 -5
  120. data/vendor/node_modules/{cliui/node_modules/is-fullwidth-code-point → is-fullwidth-code-point}/index.d.ts +0 -0
  121. data/vendor/node_modules/is-fullwidth-code-point/index.js +25 -21
  122. data/vendor/node_modules/is-fullwidth-code-point/license +4 -16
  123. data/vendor/node_modules/is-fullwidth-code-point/package.json +40 -43
  124. data/vendor/node_modules/is-fullwidth-code-point/readme.md +6 -6
  125. data/vendor/node_modules/is-glob/README.md +1 -1
  126. data/vendor/node_modules/is-glob/index.js +126 -24
  127. data/vendor/node_modules/is-glob/package.json +2 -2
  128. data/vendor/node_modules/is-unicode-supported/index.d.ts +14 -0
  129. data/vendor/node_modules/is-unicode-supported/index.js +13 -0
  130. data/vendor/node_modules/{cliui/node_modules/string-width → is-unicode-supported}/license +1 -1
  131. data/vendor/node_modules/is-unicode-supported/package.json +41 -0
  132. data/vendor/node_modules/is-unicode-supported/readme.md +35 -0
  133. data/vendor/node_modules/js-yaml/CHANGELOG.md +13 -0
  134. data/vendor/node_modules/js-yaml/README.md +1 -1
  135. data/vendor/node_modules/js-yaml/dist/js-yaml.js +90 -70
  136. data/vendor/node_modules/js-yaml/dist/js-yaml.min.js +2 -2
  137. data/vendor/node_modules/js-yaml/dist/js-yaml.mjs +84 -65
  138. data/vendor/node_modules/js-yaml/index.js +17 -0
  139. data/vendor/node_modules/js-yaml/lib/schema.js +9 -9
  140. data/vendor/node_modules/js-yaml/lib/type.js +1 -0
  141. data/vendor/node_modules/js-yaml/package.json +1 -1
  142. data/vendor/node_modules/jscoverage/node_modules/ms/index.js +152 -0
  143. data/vendor/node_modules/{should-format/LICENSE → jscoverage/node_modules/ms/license.md} +1 -2
  144. data/vendor/node_modules/jscoverage/node_modules/ms/package.json +37 -0
  145. data/vendor/node_modules/jscoverage/node_modules/ms/readme.md +51 -0
  146. data/vendor/node_modules/log-symbols/index.d.ts +2 -2
  147. data/vendor/node_modules/log-symbols/index.js +3 -4
  148. data/vendor/node_modules/log-symbols/package.json +7 -5
  149. data/vendor/node_modules/log-symbols/readme.md +3 -3
  150. data/vendor/node_modules/loupe/CHANGELOG.md +5 -0
  151. data/vendor/node_modules/{cliui/node_modules/strip-ansi/license → loupe/LICENSE} +2 -2
  152. data/vendor/node_modules/loupe/README.md +63 -0
  153. data/vendor/node_modules/loupe/index.js +195 -0
  154. data/vendor/node_modules/loupe/lib/arguments.js +7 -0
  155. data/vendor/node_modules/loupe/lib/array.js +20 -0
  156. data/vendor/node_modules/loupe/lib/bigint.js +7 -0
  157. data/vendor/node_modules/loupe/lib/class.js +18 -0
  158. data/vendor/node_modules/loupe/lib/date.js +8 -0
  159. data/vendor/node_modules/loupe/lib/error.js +34 -0
  160. data/vendor/node_modules/loupe/lib/function.js +10 -0
  161. data/vendor/node_modules/loupe/lib/helpers.js +177 -0
  162. data/vendor/node_modules/loupe/lib/html.js +40 -0
  163. data/vendor/node_modules/loupe/lib/map.js +27 -0
  164. data/vendor/node_modules/loupe/lib/number.js +18 -0
  165. data/vendor/node_modules/loupe/lib/object.js +31 -0
  166. data/vendor/node_modules/loupe/lib/promise.js +16 -0
  167. data/vendor/node_modules/loupe/lib/regexp.js +8 -0
  168. data/vendor/node_modules/loupe/lib/set.js +16 -0
  169. data/vendor/node_modules/loupe/lib/string.js +29 -0
  170. data/vendor/node_modules/loupe/lib/symbol.js +6 -0
  171. data/vendor/node_modules/loupe/lib/typedarray.js +45 -0
  172. data/vendor/node_modules/loupe/loupe.js +852 -0
  173. data/vendor/node_modules/loupe/package.json +141 -0
  174. data/vendor/node_modules/minimatch/README.md +22 -1
  175. data/vendor/node_modules/minimatch/minimatch.js +93 -69
  176. data/vendor/node_modules/minimatch/package.json +6 -3
  177. data/vendor/node_modules/mocha/LICENSE +1 -1
  178. data/vendor/node_modules/mocha/README.md +1 -1
  179. data/vendor/node_modules/mocha/bin/mocha +18 -27
  180. data/vendor/node_modules/mocha/browser-entry.js +27 -20
  181. data/vendor/node_modules/mocha/lib/browser/growl.js +5 -5
  182. data/vendor/node_modules/mocha/lib/browser/parse-query.js +1 -1
  183. data/vendor/node_modules/mocha/lib/browser/progress.js +6 -6
  184. data/vendor/node_modules/mocha/lib/cli/cli.js +3 -2
  185. data/vendor/node_modules/mocha/lib/cli/config.js +7 -12
  186. data/vendor/node_modules/mocha/lib/cli/lookup-files.js +2 -8
  187. data/vendor/node_modules/mocha/lib/cli/node-flags.js +2 -5
  188. data/vendor/node_modules/mocha/lib/cli/one-and-dones.js +1 -2
  189. data/vendor/node_modules/mocha/lib/cli/run-helpers.js +15 -15
  190. data/vendor/node_modules/mocha/lib/cli/run-option-metadata.js +4 -0
  191. data/vendor/node_modules/mocha/lib/cli/run.js +13 -1
  192. data/vendor/node_modules/mocha/lib/cli/watch-run.js +3 -6
  193. data/vendor/node_modules/mocha/lib/context.js +5 -5
  194. data/vendor/node_modules/mocha/lib/errors.js +3 -3
  195. data/vendor/node_modules/mocha/lib/hook.js +9 -3
  196. data/vendor/node_modules/mocha/lib/interfaces/bdd.js +23 -20
  197. data/vendor/node_modules/mocha/lib/interfaces/common.js +7 -7
  198. data/vendor/node_modules/mocha/lib/interfaces/exports.js +1 -1
  199. data/vendor/node_modules/mocha/lib/interfaces/qunit.js +7 -7
  200. data/vendor/node_modules/mocha/lib/interfaces/tdd.js +9 -9
  201. data/vendor/node_modules/mocha/lib/mocha.js +105 -99
  202. data/vendor/node_modules/mocha/lib/nodejs/buffered-worker-pool.js +17 -1
  203. data/vendor/node_modules/mocha/lib/nodejs/esm-utils.js +124 -0
  204. data/vendor/node_modules/mocha/lib/reporters/base.js +49 -35
  205. data/vendor/node_modules/mocha/lib/reporters/doc.js +4 -4
  206. data/vendor/node_modules/mocha/lib/reporters/dot.js +5 -5
  207. data/vendor/node_modules/mocha/lib/reporters/html.js +12 -12
  208. data/vendor/node_modules/mocha/lib/reporters/json-stream.js +4 -4
  209. data/vendor/node_modules/mocha/lib/reporters/json.js +35 -10
  210. data/vendor/node_modules/mocha/lib/reporters/landing.js +5 -5
  211. data/vendor/node_modules/mocha/lib/reporters/list.js +5 -5
  212. data/vendor/node_modules/mocha/lib/reporters/markdown.js +5 -5
  213. data/vendor/node_modules/mocha/lib/reporters/min.js +1 -1
  214. data/vendor/node_modules/mocha/lib/reporters/nyan.js +16 -16
  215. data/vendor/node_modules/mocha/lib/reporters/progress.js +3 -3
  216. data/vendor/node_modules/mocha/lib/reporters/spec.js +6 -6
  217. data/vendor/node_modules/mocha/lib/reporters/tap.js +17 -17
  218. data/vendor/node_modules/mocha/lib/reporters/xunit.js +9 -9
  219. data/vendor/node_modules/mocha/lib/runnable.js +21 -21
  220. data/vendor/node_modules/mocha/lib/runner.js +63 -61
  221. data/vendor/node_modules/mocha/lib/stats-collector.js +7 -7
  222. data/vendor/node_modules/mocha/lib/suite.js +46 -75
  223. data/vendor/node_modules/mocha/lib/test.js +5 -5
  224. data/vendor/node_modules/mocha/lib/utils.js +19 -114
  225. data/vendor/node_modules/mocha/mocha-es2018.js +19794 -0
  226. data/vendor/node_modules/mocha/mocha.js +8059 -6920
  227. data/vendor/node_modules/mocha/mocha.js.map +1 -1
  228. data/vendor/node_modules/mocha/node_modules/debug/LICENSE +10 -9
  229. data/vendor/node_modules/mocha/node_modules/debug/README.md +24 -1
  230. data/vendor/node_modules/mocha/node_modules/debug/package.json +6 -6
  231. data/vendor/node_modules/mocha/node_modules/debug/src/common.js +15 -2
  232. data/vendor/node_modules/{semver → mocha/node_modules/minimatch}/LICENSE +1 -1
  233. data/vendor/node_modules/mocha/node_modules/minimatch/README.md +230 -0
  234. data/vendor/node_modules/mocha/node_modules/minimatch/minimatch.js +908 -0
  235. data/vendor/node_modules/mocha/node_modules/minimatch/package.json +31 -0
  236. data/vendor/node_modules/mocha/package.json +66 -65
  237. data/vendor/node_modules/ms/index.js +29 -19
  238. data/vendor/node_modules/ms/package.json +6 -6
  239. data/vendor/node_modules/ms/readme.md +18 -9
  240. data/vendor/node_modules/nanoid/README.md +9 -473
  241. data/vendor/node_modules/nanoid/async/index.browser.cjs +34 -0
  242. data/vendor/node_modules/nanoid/async/index.browser.js +7 -43
  243. data/vendor/node_modules/nanoid/async/index.cjs +5 -41
  244. data/vendor/node_modules/nanoid/async/index.d.ts +7 -7
  245. data/vendor/node_modules/nanoid/async/index.js +5 -41
  246. data/vendor/node_modules/nanoid/async/index.native.js +5 -36
  247. data/vendor/node_modules/nanoid/async/package.json +2 -1
  248. data/vendor/node_modules/nanoid/bin/nanoid.cjs +52 -2
  249. data/vendor/node_modules/nanoid/index.browser.cjs +37 -0
  250. data/vendor/node_modules/nanoid/index.browser.js +5 -73
  251. data/vendor/node_modules/nanoid/index.cjs +14 -49
  252. data/vendor/node_modules/nanoid/index.d.ts +9 -6
  253. data/vendor/node_modules/nanoid/index.js +14 -49
  254. data/vendor/node_modules/nanoid/non-secure/index.cjs +3 -12
  255. data/vendor/node_modules/nanoid/non-secure/index.d.ts +8 -5
  256. data/vendor/node_modules/nanoid/non-secure/index.js +3 -12
  257. data/vendor/node_modules/nanoid/package.json +14 -10
  258. data/vendor/node_modules/nanoid/url-alphabet/index.cjs +1 -4
  259. data/vendor/node_modules/nanoid/url-alphabet/index.js +1 -4
  260. data/vendor/node_modules/pathval/CHANGELOG.md +18 -0
  261. data/vendor/node_modules/pathval/LICENSE +16 -0
  262. data/vendor/node_modules/pathval/README.md +147 -0
  263. data/vendor/node_modules/pathval/index.js +301 -0
  264. data/vendor/node_modules/pathval/package.json +80 -0
  265. data/vendor/node_modules/pathval/pathval.js +1 -0
  266. data/vendor/node_modules/picomatch/CHANGELOG.md +16 -0
  267. data/vendor/node_modules/picomatch/README.md +34 -17
  268. data/vendor/node_modules/picomatch/lib/parse.js +19 -6
  269. data/vendor/node_modules/picomatch/lib/picomatch.js +34 -31
  270. data/vendor/node_modules/picomatch/lib/scan.js +8 -2
  271. data/vendor/node_modules/picomatch/package.json +1 -1
  272. data/vendor/node_modules/readdirp/index.js +11 -6
  273. data/vendor/node_modules/readdirp/package.json +1 -1
  274. data/vendor/node_modules/serialize-javascript/README.md +2 -4
  275. data/vendor/node_modules/serialize-javascript/index.js +11 -2
  276. data/vendor/node_modules/serialize-javascript/package.json +2 -2
  277. data/vendor/node_modules/source-map-resolve/LICENSE +1 -1
  278. data/vendor/node_modules/source-map-resolve/changelog.md +6 -0
  279. data/vendor/node_modules/source-map-resolve/{lib/source-map-resolve-node.js → index.js} +48 -13
  280. data/vendor/node_modules/source-map-resolve/package.json +7 -14
  281. data/vendor/node_modules/source-map-resolve/readme.md +1 -39
  282. data/vendor/node_modules/{cliui/node_modules/string-width → string-width}/index.d.ts +0 -0
  283. data/vendor/node_modules/string-width/index.js +16 -5
  284. data/vendor/node_modules/string-width/package.json +11 -10
  285. data/vendor/node_modules/string-width/readme.md +15 -7
  286. data/vendor/node_modules/{cliui/node_modules/strip-ansi → strip-ansi}/index.d.ts +0 -0
  287. data/vendor/node_modules/strip-ansi/index.js +1 -1
  288. data/vendor/node_modules/strip-ansi/package.json +52 -50
  289. data/vendor/node_modules/strip-ansi/readme.md +12 -5
  290. data/vendor/node_modules/{fsevents → type-detect}/LICENSE +1 -4
  291. data/vendor/node_modules/type-detect/README.md +228 -0
  292. data/vendor/node_modules/type-detect/index.js +378 -0
  293. data/vendor/node_modules/type-detect/package.json +1 -0
  294. data/vendor/node_modules/type-detect/type-detect.js +388 -0
  295. data/vendor/node_modules/workerpool/HISTORY.md +42 -0
  296. data/vendor/node_modules/workerpool/README.md +11 -1
  297. data/vendor/node_modules/workerpool/dist/worker.js +9 -42
  298. data/vendor/node_modules/workerpool/dist/worker.js.map +1 -1
  299. data/vendor/node_modules/workerpool/dist/workerpool.js +117 -74
  300. data/vendor/node_modules/workerpool/dist/workerpool.js.map +1 -1
  301. data/vendor/node_modules/workerpool/dist/workerpool.min.js +1 -1
  302. data/vendor/node_modules/workerpool/dist/workerpool.min.js.LICENSE.txt +3 -3
  303. data/vendor/node_modules/workerpool/dist/workerpool.min.js.map +1 -1
  304. data/vendor/node_modules/workerpool/package.json +11 -11
  305. data/vendor/node_modules/workerpool/src/Pool.js +29 -4
  306. data/vendor/node_modules/workerpool/src/WorkerHandler.js +17 -4
  307. data/vendor/node_modules/workerpool/src/generated/embeddedWorker.js +1 -1
  308. data/vendor/node_modules/workerpool/src/header.js +1 -1
  309. data/vendor/node_modules/workerpool/src/types.js +2 -1
  310. data/vendor/package-lock.json +401 -664
  311. data/vendor/package.json +7 -9
  312. metadata +139 -175
  313. data/vendor/node_modules/cliui/node_modules/ansi-regex/index.js +0 -10
  314. data/vendor/node_modules/cliui/node_modules/ansi-regex/license +0 -9
  315. data/vendor/node_modules/cliui/node_modules/ansi-regex/package.json +0 -55
  316. data/vendor/node_modules/cliui/node_modules/ansi-regex/readme.md +0 -78
  317. data/vendor/node_modules/cliui/node_modules/is-fullwidth-code-point/index.js +0 -50
  318. data/vendor/node_modules/cliui/node_modules/is-fullwidth-code-point/license +0 -9
  319. data/vendor/node_modules/cliui/node_modules/is-fullwidth-code-point/package.json +0 -42
  320. data/vendor/node_modules/cliui/node_modules/is-fullwidth-code-point/readme.md +0 -39
  321. data/vendor/node_modules/cliui/node_modules/string-width/index.js +0 -47
  322. data/vendor/node_modules/cliui/node_modules/string-width/package.json +0 -56
  323. data/vendor/node_modules/cliui/node_modules/string-width/readme.md +0 -50
  324. data/vendor/node_modules/cliui/node_modules/strip-ansi/index.js +0 -4
  325. data/vendor/node_modules/cliui/node_modules/strip-ansi/package.json +0 -54
  326. data/vendor/node_modules/cliui/node_modules/strip-ansi/readme.md +0 -46
  327. data/vendor/node_modules/css-parse/Readme.md +0 -15
  328. data/vendor/node_modules/css-parse/index.js +0 -1
  329. data/vendor/node_modules/css-parse/package.json +0 -23
  330. data/vendor/node_modules/debug/CHANGELOG.md +0 -395
  331. data/vendor/node_modules/debug/Makefile +0 -58
  332. data/vendor/node_modules/debug/karma.conf.js +0 -70
  333. data/vendor/node_modules/debug/node.js +0 -1
  334. data/vendor/node_modules/debug/src/debug.js +0 -225
  335. data/vendor/node_modules/fsevents/README.md +0 -83
  336. data/vendor/node_modules/fsevents/fsevents.d.ts +0 -46
  337. data/vendor/node_modules/fsevents/fsevents.js +0 -82
  338. data/vendor/node_modules/fsevents/fsevents.node +0 -0
  339. data/vendor/node_modules/fsevents/package.json +0 -62
  340. data/vendor/node_modules/glob/changelog.md +0 -67
  341. data/vendor/node_modules/mkdirp/CHANGELOG.md +0 -15
  342. data/vendor/node_modules/mkdirp/bin/cmd.js +0 -68
  343. data/vendor/node_modules/mkdirp/index.js +0 -31
  344. data/vendor/node_modules/mkdirp/lib/find-made.js +0 -29
  345. data/vendor/node_modules/mkdirp/lib/mkdirp-manual.js +0 -64
  346. data/vendor/node_modules/mkdirp/lib/mkdirp-native.js +0 -39
  347. data/vendor/node_modules/mkdirp/lib/opts-arg.js +0 -23
  348. data/vendor/node_modules/mkdirp/lib/path-arg.js +0 -29
  349. data/vendor/node_modules/mkdirp/lib/use-native.js +0 -10
  350. data/vendor/node_modules/mkdirp/package.json +0 -44
  351. data/vendor/node_modules/mkdirp/readme.markdown +0 -266
  352. data/vendor/node_modules/mocha/CHANGELOG.md +0 -931
  353. data/vendor/node_modules/mocha/lib/esm-utils.js +0 -58
  354. data/vendor/node_modules/mocha/node_modules/glob/LICENSE +0 -21
  355. data/vendor/node_modules/mocha/node_modules/glob/README.md +0 -375
  356. data/vendor/node_modules/mocha/node_modules/glob/changelog.md +0 -67
  357. data/vendor/node_modules/mocha/node_modules/glob/common.js +0 -240
  358. data/vendor/node_modules/mocha/node_modules/glob/glob.js +0 -790
  359. data/vendor/node_modules/mocha/node_modules/glob/package.json +0 -46
  360. data/vendor/node_modules/mocha/node_modules/glob/sync.js +0 -486
  361. data/vendor/node_modules/nanoid/CHANGELOG.md +0 -241
  362. data/vendor/node_modules/nanoid/index.dev.js +0 -105
  363. data/vendor/node_modules/nanoid/index.prod.js +0 -105
  364. data/vendor/node_modules/resolve-url/bower.json +0 -15
  365. data/vendor/node_modules/resolve-url/changelog.md +0 -15
  366. data/vendor/node_modules/resolve-url/component.json +0 -15
  367. data/vendor/node_modules/resolve-url/package.json +0 -34
  368. data/vendor/node_modules/resolve-url/readme.md +0 -83
  369. data/vendor/node_modules/resolve-url/resolve-url.js +0 -47
  370. data/vendor/node_modules/resolve-url/test/resolve-url.js +0 -70
  371. data/vendor/node_modules/semver/CHANGELOG.md +0 -70
  372. data/vendor/node_modules/semver/README.md +0 -443
  373. data/vendor/node_modules/semver/bin/semver.js +0 -174
  374. data/vendor/node_modules/semver/package.json +0 -28
  375. data/vendor/node_modules/semver/range.bnf +0 -16
  376. data/vendor/node_modules/semver/semver.js +0 -1596
  377. data/vendor/node_modules/should/CONTRIBUTING.md +0 -14
  378. data/vendor/node_modules/should/History.md +0 -554
  379. data/vendor/node_modules/should/LICENSE +0 -20
  380. data/vendor/node_modules/should/Readme.md +0 -223
  381. data/vendor/node_modules/should/as-function.js +0 -2935
  382. data/vendor/node_modules/should/cjs/should.js +0 -2962
  383. data/vendor/node_modules/should/es6/should.js +0 -2958
  384. data/vendor/node_modules/should/package.json +0 -51
  385. data/vendor/node_modules/should/should.d.ts +0 -243
  386. data/vendor/node_modules/should/should.js +0 -4371
  387. data/vendor/node_modules/should-equal/LICENSE +0 -21
  388. data/vendor/node_modules/should-equal/README.md +0 -24
  389. data/vendor/node_modules/should-equal/cjs/should-equal.js +0 -333
  390. data/vendor/node_modules/should-equal/es6/should-equal.js +0 -329
  391. data/vendor/node_modules/should-equal/package.json +0 -38
  392. data/vendor/node_modules/should-format/README.md +0 -6
  393. data/vendor/node_modules/should-format/cjs/should-format.js +0 -532
  394. data/vendor/node_modules/should-format/es6/should-format.js +0 -528
  395. data/vendor/node_modules/should-format/package.json +0 -44
  396. data/vendor/node_modules/should-type/LICENSE +0 -22
  397. data/vendor/node_modules/should-type/README.md +0 -4
  398. data/vendor/node_modules/should-type/cjs/should-type.js +0 -263
  399. data/vendor/node_modules/should-type/es6/should-type.js +0 -261
  400. data/vendor/node_modules/should-type/package.json +0 -38
  401. data/vendor/node_modules/should-type-adaptors/README.md +0 -1
  402. data/vendor/node_modules/should-type-adaptors/cjs/should-type-adaptors.js +0 -288
  403. data/vendor/node_modules/should-type-adaptors/es6/should-type-adaptors.js +0 -272
  404. data/vendor/node_modules/should-type-adaptors/package.json +0 -43
  405. data/vendor/node_modules/should-util/LICENSE +0 -21
  406. data/vendor/node_modules/should-util/README.md +0 -2
  407. data/vendor/node_modules/should-util/cjs/should-util.js +0 -50
  408. data/vendor/node_modules/should-util/es6/should-util.js +0 -42
  409. data/vendor/node_modules/should-util/package.json +0 -40
  410. data/vendor/node_modules/source-map-resolve/lib/decode-uri-component.js +0 -8
  411. data/vendor/node_modules/source-map-resolve/lib/resolve-url.js +0 -9
  412. data/vendor/node_modules/source-map-resolve/source-map-resolve.js +0 -348
  413. data/vendor/node_modules/source-map-url/changelog.md +0 -57
  414. data/vendor/node_modules/source-map-url/package.json +0 -39
  415. data/vendor/node_modules/source-map-url/readme.md +0 -97
  416. data/vendor/node_modules/source-map-url/source-map-url.js +0 -57
  417. data/vendor/node_modules/urix/index.js +0 -17
  418. data/vendor/node_modules/urix/package.json +0 -25
  419. data/vendor/node_modules/urix/readme.md +0 -46
  420. data/vendor/node_modules/urix/test/index.js +0 -43
  421. data/vendor/node_modules/wide-align/LICENSE +0 -14
  422. data/vendor/node_modules/wide-align/README.md +0 -47
  423. data/vendor/node_modules/wide-align/align.js +0 -65
  424. data/vendor/node_modules/wide-align/package.json +0 -33
  425. data/vendor/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts +0 -37
  426. data/vendor/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +0 -10
  427. data/vendor/node_modules/wrap-ansi/node_modules/ansi-regex/license +0 -9
  428. data/vendor/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +0 -55
  429. data/vendor/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +0 -78
  430. data/vendor/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
  431. data/vendor/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/index.js +0 -50
  432. data/vendor/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license +0 -9
  433. data/vendor/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +0 -42
  434. data/vendor/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/readme.md +0 -39
  435. data/vendor/node_modules/wrap-ansi/node_modules/string-width/index.d.ts +0 -29
  436. data/vendor/node_modules/wrap-ansi/node_modules/string-width/index.js +0 -47
  437. data/vendor/node_modules/wrap-ansi/node_modules/string-width/license +0 -9
  438. data/vendor/node_modules/wrap-ansi/node_modules/string-width/package.json +0 -56
  439. data/vendor/node_modules/wrap-ansi/node_modules/string-width/readme.md +0 -50
  440. data/vendor/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +0 -17
  441. data/vendor/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +0 -4
  442. data/vendor/node_modules/wrap-ansi/node_modules/strip-ansi/license +0 -9
  443. data/vendor/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +0 -54
  444. data/vendor/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +0 -46
  445. data/vendor/node_modules/yargs/node_modules/ansi-regex/index.d.ts +0 -37
  446. data/vendor/node_modules/yargs/node_modules/ansi-regex/index.js +0 -10
  447. data/vendor/node_modules/yargs/node_modules/ansi-regex/license +0 -9
  448. data/vendor/node_modules/yargs/node_modules/ansi-regex/package.json +0 -55
  449. data/vendor/node_modules/yargs/node_modules/ansi-regex/readme.md +0 -78
  450. data/vendor/node_modules/yargs/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
  451. data/vendor/node_modules/yargs/node_modules/is-fullwidth-code-point/index.js +0 -50
  452. data/vendor/node_modules/yargs/node_modules/is-fullwidth-code-point/license +0 -9
  453. data/vendor/node_modules/yargs/node_modules/is-fullwidth-code-point/package.json +0 -42
  454. data/vendor/node_modules/yargs/node_modules/is-fullwidth-code-point/readme.md +0 -39
  455. data/vendor/node_modules/yargs/node_modules/string-width/index.d.ts +0 -29
  456. data/vendor/node_modules/yargs/node_modules/string-width/index.js +0 -47
  457. data/vendor/node_modules/yargs/node_modules/string-width/license +0 -9
  458. data/vendor/node_modules/yargs/node_modules/string-width/package.json +0 -56
  459. data/vendor/node_modules/yargs/node_modules/string-width/readme.md +0 -50
  460. data/vendor/node_modules/yargs/node_modules/strip-ansi/index.d.ts +0 -17
  461. data/vendor/node_modules/yargs/node_modules/strip-ansi/index.js +0 -4
  462. data/vendor/node_modules/yargs/node_modules/strip-ansi/license +0 -9
  463. data/vendor/node_modules/yargs/node_modules/strip-ansi/package.json +0 -54
  464. data/vendor/node_modules/yargs/node_modules/strip-ansi/readme.md +0 -46
  465. data/vendor/test.js +0 -31
@@ -1,14 +0,0 @@
1
- Before contribute something:
2
-
3
- Follow simple rules:
4
-
5
- - Not violate [DRY](http://programmer.97things.oreilly.com/wiki/index.php/Don%27t_Repeat_Yourself).
6
- - [Boy Scout Rule](http://programmer.97things.oreilly.com/wiki/index.php/The_Boy_Scout_Rule) needs to have been applied.
7
-
8
- 1. Your code should look like all the other code - this project should look like it was written by one person, always.
9
- 2. If you want to propose something - just create an issue and describe your question with as much description as you can.
10
- 3. Please never send issues or pull requests about code style, jshint violations etc - I do not accept it (and you will spend your time for free).
11
- 4. If you think you have some general improvement, consider creating a pull request with it.
12
- 5. If you are not sure whether your improvement is general enough, just create your own plugin for should.js. (see should.use and Assertion.add usage).
13
- 6. If you add new code, it should be covered by tests. No tests - no code.
14
- 7. If you find a bug (or at least you think it is a bug), create an issue with the library version and test case that I can run and see what are you talking about, or at least full steps by which I can reproduce it.
@@ -1,554 +0,0 @@
1
- # 13.2.3 / 2018-07-30
2
-
3
- * `.only.keys` throws when no `Object.prototype.should`
4
-
5
- # 13.2.2 / 2018-07-26
6
-
7
- * Updates for TS definition
8
-
9
- # 13.2.1 / 2018-01-12
10
-
11
- * Fix `.size` to work with should/as-function
12
-
13
- # 13.2.0 / 2017-12-27
14
-
15
- * Update type adaptors to allow to use Set as iterable everywhere
16
-
17
- # 13.1.3 / 2017-10-28
18
-
19
- * Fix weird bug in `.containDeep` when given object is string (see \#157)
20
-
21
- # 13.1.2 / 2017-10-10
22
-
23
- * Revert default export in TS definition (added in 13.1.0)
24
-
25
- # 13.1.1 / 2017-10-07
26
-
27
- * Added missing return type for `.rejectedWith` in typescript definition
28
-
29
- # 13.1.0 / 2017-09-20
30
-
31
- * Added `.resolved` as alias to `.fulfilled`
32
- * Added `.resolvedWith` as alias to `.fulfilledWith`
33
- * All zero argument assertion will throw `TypeError` if any arg passed
34
- * Fix default export for TS definition
35
-
36
- # 13.0.1 / 2017-09-06
37
-
38
- * Add missing UMD bundle for browser
39
-
40
- # 13.0.0 / 2017-09-05
41
-
42
- * Removed `.enumerable` and `.enumerables`
43
- * Fixed `.match`ing on `Date`s
44
- * Added TypeScript definitions
45
-
46
- # 12.0.0 / 2017-08-28
47
-
48
- * Update `should-equal` to 2.x
49
- * Update entry points to do the same thing (global should entry)
50
-
51
- # 11.2.1 / 2017-03-09
52
-
53
- * Fix `.match(regex)` for not supported cases
54
-
55
- # 11.2.0 / 2017-01-27
56
-
57
- * Added `.only` modifier for `.keys` to check also size
58
- * Soft deprecate `.enumerable(s)`
59
-
60
- # 11.1.2 / 2016-12-10
61
-
62
- * Added workaround for runtimes where error's stack populated eagerly
63
-
64
- # 11.1.1 / 2016-10-10
65
-
66
- * Update modules
67
-
68
- # 11.1.0 / 2016-08-14
69
-
70
- * Update modules
71
-
72
- # 11.0.0 / 2016-08-10
73
-
74
- * Extracted parts from code for traversing different data types in similar ways.
75
- This allows for easily extending the library to almost any collection class.
76
- Now should.js supports `Set`/`Map`/`WeakSet`/`WeakMap` everywhere.
77
- * `.empty()` now uses new type adaptors
78
- * Breaking change in `.keys()`/`.key()`: now only checks for passed keys (also uses type adaptors) - it can check for keys in `Map`/`Set` e.g
79
- * Added `.value(key, value)` to assert if key-value object has such `value` with this `key`
80
- * Added `.size()` to get size of collection; also works with type adaptors
81
- * `.containEql` uses type adaptors and can check something contained within a collection or sub-part of a key-value object
82
-
83
- # 10.0.0 / 2016-07-18
84
-
85
- * Possible breaking change/bugfix in should-format when in objects used keys that looks like a numbers
86
-
87
- # 9.0.2 / 2016-06-10
88
-
89
- * Small test fixes for function expressions without names in Chrome
90
-
91
- # 9.0.1 / 2016-06-09
92
-
93
- * Fix browser global export
94
-
95
- # 9.0.0 / 2016-05-30
96
-
97
- * Set should.config values to be more obvious. Pls check breaking changes page for exact values.
98
- * Add support for SIMD data types.
99
- * Fixed minor bugs in .eql
100
- * Allow to show all equality check fails in .eql
101
-
102
- # 8.4.0 / 2016-05-21
103
-
104
- * Add support for Symbols in .eql
105
-
106
- # 8.3.2 / 2016-05-18
107
-
108
- * Fix for `should-equal` to do not call .toString when checking circular usage
109
-
110
- # 8.3.1 / 2016-04-15
111
-
112
- * Fix browser script to again be UMD bundle
113
-
114
- # 8.3.0 / 2016-03-23
115
-
116
- * .true() and .false() can accept optional message to be used in assertion Error
117
- * Add more useful messages to promise assertions
118
-
119
- # 8.2.2 / 2016-02-09
120
-
121
- * Fix bug with .match when called primitive to match object
122
- * Various linting issues
123
-
124
- # 8.2.1 / 2016-01-27
125
-
126
- * Fix bug with new option, thanks @VinGarcia
127
-
128
- # 8.2.0 / 2016-01-24
129
-
130
- * Add option to should.equal to treat -0 and +0 as equals
131
-
132
- # 8.1.1 / 2016-01-10
133
-
134
- * Fix browser build to do not loose window.Should
135
-
136
- # 8.1.0 / 2016-01-10
137
-
138
- * Add .Date() assertion to test if given object is Date instance
139
-
140
- # 8.0.2 / 2015-12-18
141
-
142
- * Update should-format to fix bug in formatting arrow functions
143
-
144
- # 8.0.1 / 2015-12-11
145
-
146
- * Fix throwing TypeError in .match
147
-
148
- # 8.0.0 / 2015-12-08
149
-
150
- * Move should-promised to main repo
151
- * Expose window.should as should function and not a getter
152
-
153
- # 7.1.1 / 2015-10-20
154
-
155
- * Update format package to fix node 0.12 Symbol formatting
156
-
157
- # 7.1.0 / 2015-08-28
158
-
159
- * Added .aboveOrEqual and .belowOrEqual for numbers (<= and >=)
160
- * Added .oneOf and .equalOneOf to check equality of one of values
161
- * Added 'browser' field to package.json
162
-
163
- # 7.0.4 / 2015-08-14
164
-
165
- * Missing doc for .deepEqual
166
- * Fix .match and dependent assertions to check property in object-object matching
167
-
168
- # 7.0.3 / 2015-08-09
169
-
170
- * Add alias .deepEqual for .eql
171
-
172
- # 7.0.2 / 2015-07-09
173
-
174
- * Bug in browser script and build
175
-
176
- # 7.0.1 / 2015-06-18
177
-
178
- * Fixes in should-type for dom nodes, host object and promises
179
-
180
- # 7.0.0 / 2015-06-18
181
-
182
- * Added support to `.eql` es6 set, map and symbol (`should-type`, `should-format`, `should-equal`)
183
- * **Breaking Change** More accurate work with types (dom nodes, typed-arrays).
184
- * **Breaking Change** Change result of should-type to be more accurate and consistent.
185
- * Fixed should-equal options checks
186
- * Fixed should-format typed arrays (more then 8 bits)
187
- * Added aliases: .matchEach => .matchSome, .matchAny => .matchEvery (to be similar to array methods). See #65.
188
- * **Breaking Change (possibly)** .matchEach and .matchAny now uses internally .match. See #65.
189
- * **Breaking Change** No more getter assertions. No all assertions are functions.
190
- * **Breaking Change** No more proxy returning, to check property names.
191
- * **Breaking Change** `should-format` now looks more like chrome developer tools inspections.
192
-
193
- # 6.0.3 / 2015-05-18
194
-
195
- * Replace rest of usage after 6.0.2
196
-
197
- # 6.0.2 / 2015-05-18
198
-
199
- * Replace in all internal assertions `should` usage to non getter form
200
-
201
- # 6.0.1 / 2015-04-15
202
-
203
- * Remove dummy debug messages
204
-
205
- # 6.0.0 / 2015-04-15
206
-
207
- * From .containDeep\* removed .indexOf checks for strings, now it is just equality checks (see #55)
208
- * Fix for .not.throws for generators
209
-
210
- # 5.2.0 / 2015-03-12
211
-
212
- * Added `.matchAny`, like `.matchEach` but with `some` semantics
213
-
214
- # 5.1.0 / 2015-03-05
215
-
216
- * Initial support of es6 generators, iterables, iterators and symbols
217
- * .throwError now support generator functions
218
- * Fix bug in .propertyByPath
219
-
220
- # 5.0.1 / 2015-02-21
221
-
222
- * Export utils via should.util
223
-
224
- # 5.0.0 / 2015-02-10
225
-
226
- * Remove old .eql implementation
227
- * Refactor nested errors
228
- * Added separate reporting message for false negative results like 10.should.not.equal(10)
229
- * Make error.message lazy fix old performance bottlenecks for constructing messages for big objects
230
- * Added .propertyWithDescriptor
231
-
232
- # 4.6.5 / 2015-02-05
233
-
234
- * Fix performance degradation on large objects
235
-
236
- # 4.6.4 / 2015-02-05
237
-
238
- * Fix end cases for .containDeep and .containDeepOrdered
239
-
240
- # 4.6.3 / 2015-02-01
241
-
242
- * Added small check for .noConflict
243
- * Fix end cases for .containDeep and .containDeepOrdered
244
-
245
- # 4.6.2 / 2015-01-28
246
-
247
- * Make assertion properties configurable
248
-
249
- # 4.6.1 / 2015-01-18
250
-
251
- * Bump deps
252
- * Set showDiff only if the same types
253
-
254
- # 4.6.0 / 2015-01-13
255
-
256
- * Wrap everywhere returned assertion with Proxy if available.
257
-
258
- # 4.5.2 / 2015-01-13
259
-
260
- * Fixed null properties in .containDeep and .containDeepOrdered
261
-
262
- # 4.5.1 / 2015-01-13
263
-
264
- * Fixed leaked \_eql
265
-
266
- # 4.5.0 / 2015-01-11
267
-
268
- * Added config flag .useOldDeepEqual to use old .eql implementation
269
-
270
- # 4.4.4 / 2015-01-08
271
-
272
- * Added .enumerables
273
-
274
- # 4.4.3 / 2015-01-08
275
-
276
- * Bump dependencies to get more accurate format of promise
277
- * Added a lot of jsdocs
278
-
279
- # 4.4.2 / 2014-12-27
280
-
281
- * Remove breaking change with should-equal that check also object prototypes. Instead document how get both behaviours in .eql docs.
282
-
283
- # 4.4.1 / 2014-12-13
284
-
285
- * bump deps
286
-
287
- # 4.4.0 / 2014-12-12
288
-
289
- * assert methods reimplemented via assertion, deepEqual done via should-equal. To avoid possible confusion between should.deepEqual and a.should.eql(b)
290
- * Possible fix for error tests
291
-
292
- # 4.3.1 / 2014-12-08
293
-
294
- * `.throw()` check if given object is a function
295
-
296
- # 4.3.0 / 2014-11-10
297
-
298
- * Remove node's version of .eql
299
- * Added reason why .eql failed
300
-
301
- # 4.2.1 / 2014-11-07
302
-
303
- * Move inspection from .formattedObj to be in .getMessage - to make inspection as late as possible.
304
-
305
- # 4.2.0 / 2014-11-06
306
-
307
- * Remove node util.inspect and use instead own inspection module with type detection and browser types compatibility
308
-
309
- # 4.1.0 / 2014-10-19
310
-
311
- * As inspect function was moved to repo, refine how it show Dates (added millis via custom format)
312
- * Added warnings for potential shoot in the leg: eql non strict and should unwrapping primitive wrappers
313
- * Added possibility to disable any warnings via environment variable SHOULDJS_WARN and should.warn = false
314
- * Added new deep equality check function
315
- * Nested assertions can contribute to parent assertions own messages
316
-
317
- # 4.0.4 / 2014-06-09
318
-
319
- * Make all assertions enumerable in Assertion.prototype
320
-
321
- # 4.0.3 / 2014-06-09
322
-
323
- * Fix wrong/strange behaviour of .containDeep with equal keys. Now it check to contain element once.
324
- * Added util.formatProp to format properties more accurate
325
-
326
- # 4.0.1 / 2014-06-04
327
-
328
- * Missing name in browser script
329
-
330
- # 4.0.0 / 2014-05-29
331
-
332
- * Breaking change: Move non core assertions out
333
- * Added casting in properties assertions to String for all property names
334
- * Added .propertyByPath assertion
335
- * Breaking change: Remove deprecated .includeEql and .include
336
- * Breaking change: .containDeep now do not check order for 2 arrays case
337
- * Added .containDeepOrdered for old .containDeep
338
- * Added support of array-like objects
339
- * Added to .throw matching by error properties with .match
340
-
341
- # 3.3.2 / 2014-05-23
342
-
343
- * Fix for should.format
344
-
345
- # 3.3.1 / 2014-04-16
346
-
347
- * Added aliases for es reserved words
348
- * Fix bug with ownProperty alias
349
- * Fix bug with not function alias
350
-
351
- # 3.3.0 / 2014-04-07
352
-
353
- * Added .enumerable(name, val)
354
-
355
- # 3.2.0 / 2014-03-29
356
-
357
- * Added first version of .any modifier that affect assertions with multiple parameters
358
- * .header now have more nice message
359
- * assertion can now override how to show object
360
-
361
- # 3.1.4 / 2014-03-18
362
-
363
- * .Error now do not throw assertion error for custom errors.
364
-
365
- # 3.1.3 / 2014-02-25
366
-
367
- * Fix TypeError in .containEql
368
-
369
- # 3.1.2 / 2014-01-28
370
-
371
- * Fix for adding .inspect for JQuery object only in case when it is exist
372
-
373
- # 3.1.1 / 2014-01-28
374
-
375
- * Fix for HTMLElement in DOM less environments
376
-
377
- # 3.1.0 / 2014-01-23
378
-
379
- * Added jquery based browser extension
380
-
381
- # 3.0.1 / 2014-01-17
382
-
383
- * Fix: .lengthOf()
384
-
385
- # 3.0.0 / 2014-01-17
386
-
387
- * Split everything to smaller files
388
- * Added huge extension to .match and .matchEach. Thanks @alsotang for initial code and idea.
389
- * Added .containDeep and .containEql
390
- * Separate build for browser and node.js
391
- * Basic plugin system
392
- * Breaking change: .Object now do not fail on arrays
393
- * Breaking change: Additional messages now replaces generated and do not added
394
- * Breaking change: .keys now check as is - no keys in args means no keys in object
395
- * Deprecated: assert extension
396
- * Deprecated: .include and .includeEql
397
- * Now all assertions define only positive cases, should.js take care about negations and chains
398
-
399
- # 2.1.1 / 2013-12-05
400
-
401
- * Move date formatting out of should.inspect
402
-
403
- # 2.1.0 / 2013-11-11
404
-
405
- * Override .inspect for Date's to convert them to ISOString
406
-
407
- # 2.0.2 / 2013-10-21
408
-
409
- * Add '#of' as getter for chaining.
410
- * Exclude browser script for .npmignore.
411
-
412
- # 2.0.1 / 2013-10-10
413
-
414
- * Fix wrong path in .npmignore.
415
-
416
- # 2.0.0 / 2013-10-10
417
-
418
- * breaking change: #a now getter like #an. Was replaced with #type(str)
419
- * breaking change: #empty does not check length for objects. Now it check if object do not have own properties.
420
- * #properties check if object have some properties
421
- * util.inspect now exposed as should.inspect
422
- * assertions for NaN, Infinity, Array, Object, String, Boolean, Number, Error, Function
423
- * #equal got alias #exactly
424
-
425
- # 1.3.0 / 2013-09-13
426
-
427
- * fix doc for .keys. Closes #108.
428
- * add #endWith()
429
- * add .startWith (#119)
430
-
431
- # 1.2.2 / 2013-02-19
432
-
433
- * fix should.be.instanceOf() failure on Date
434
-
435
- # 1.2.1 / 2012-11-02
436
-
437
- * add .showDiff
438
- * Make instanceOf and throwError be aliased like others [alFReD-NSH]
439
- * Fix should[.not].exist not having stack trace #84 [alFReD-NSH]
440
-
441
- # 1.2.0 / 2012-09-21
442
-
443
- * Added #approximately(value, delta, description) for doing assertions on results of operations with numbers. [titarenko]
444
-
445
- # 1.1.1 / 2012-09-19
446
-
447
- * add .type for eql()s assert
448
-
449
- # 1.1.0 / 2012-07-30
450
-
451
- * add enclosing of failure message functions. Closes #81
452
- * add mocha .actual / .expected string support for all assertion values
453
-
454
- # 0.7.0 / 2012-07-17
455
-
456
- * add `.throw(Constructor)` support [snakamura]
457
-
458
- # 0.6.3 / 2012-04-26
459
-
460
- * Added object inclusion support back
461
-
462
- # 0.6.2 / 2012-04-26
463
-
464
- * Added homepage to package.json
465
- * Fixed .equal() with dates. Closes #63
466
-
467
- # 0.6.1 / 2012-04-10
468
-
469
- * package: add "repository" section [TooTallNate]
470
- * use valueOf() to get the reference the object [TooTallNate]
471
-
472
- # 0.6.0 / 2012-03-01
473
-
474
- * Added `err.actual` and `err.expected` for .{eql,equal}()
475
- * Added 'return this;' to 'get json' and 'get html' in order to provide chaining for should.be.json and should.be.html
476
-
477
- # 0.5.1 / 2012-01-13
478
-
479
- * Added better `.json`
480
- * Added better `.html`
481
-
482
- # 0.5.0 / 2012-01-12
483
-
484
- * Added string matching to `.throw()` [serby]
485
- * Added regexp matching to `.throw()` [serby]
486
- * Added `.includeEql()` [RubenVerborgh]
487
- * Added `.should.be.html`
488
- * Added `.should.be.json`
489
- * Added optional description args to most matchers [Mike Swift]
490
-
491
- # 0.4.2 / 2011-12-17
492
-
493
- * Fixed .header() for realzzz
494
-
495
- # 0.4.1 / 2011-12-16
496
-
497
- * Fixed: chain .header() to retain negation
498
-
499
- # 0.4.0 / 2011-12-16
500
-
501
- * Added `.should.throw()`
502
- * Added `.include()` support for strings
503
- * Added `.include()` support for arrays
504
- * Removed `keys()` `.include` modifier support
505
- * Removed `.object()`
506
- * Removed `.string()`
507
- * Removed `.contain()`
508
- * Removed `.respondTo()` rubyism
509
- * expresso -> mocha
510
-
511
- # 0.3.2 / 2011-10-24
512
-
513
- * Fixed tests for 0.5.x
514
- * Fixed sys warning
515
-
516
- # 0.3.1 / 2011-08-22
517
-
518
- * configurable
519
-
520
- # 0.3.0 / 2011-08-20
521
-
522
- * Added assertion for inclusion of an object: `foo.should.include.object({ foo: 'bar' })`
523
-
524
- # 0.2.1 / 2011-05-13
525
-
526
- * Fixed .status(code). Closes #18
527
-
528
- # 0.2.0 / 2011-04-17
529
-
530
- * Added `res.should.have.status(code)` method
531
- * Added `res.should.have.header(field, val)` method
532
-
533
- # 0.1.0 / 2011-04-06
534
-
535
- * Added `should.exist(obj)` [aseemk]
536
- * Added `should.not.exist(obj)` [aseemk]
537
-
538
- # 0.0.4 / 2010-11-24
539
-
540
- * Added `.ok` to assert truthfulness
541
- * Added `.arguments`
542
- * Fixed double required bug. [thanks dominictarr]
543
-
544
- # 0.0.3 / 2010-11-19
545
-
546
- * Added `true` / `false` assertions
547
-
548
- # 0.0.2 / 2010-11-19
549
-
550
- * Added chaining support
551
-
552
- # 0.0.1 / 2010-11-19
553
-
554
- * Initial release
@@ -1,20 +0,0 @@
1
- Copyright(c) 2010-2013 TJ Holowaychuk <tj@vision-media.ca>
2
- Copyright(c) 2013-2017 Denis Bardadym <bardadymchik@gmail.com>
3
-
4
- Permission is hereby granted, free of charge, to any person obtaining a copy
5
- of this software and associated documentation files (the "Software"), to deal
6
- in the Software without restriction, including without limitation the rights
7
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is
9
- furnished to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in
12
- all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
- THE SOFTWARE.