fsevents 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fsevents might be problematic. Click here for more details.

Files changed (581) hide show
  1. package/.travis.yml +7 -9
  2. package/build/.target.mk +6 -2
  3. package/build/Makefile +6 -6
  4. package/build/Release/.deps/Release/.node.d +1 -0
  5. package/build/Release/.deps/Release/fse.node.d +1 -0
  6. package/build/Release/.deps/Release/obj.target/action_after_build.stamp.d +1 -0
  7. package/build/Release/.deps/Release/obj.target/fse/fsevents.o.d +65 -0
  8. package/build/Release/.deps/Users/eshanker/Code/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node.d +1 -0
  9. package/build/Release/.node +0 -0
  10. package/build/Release/fse.node +0 -0
  11. package/build/Release/obj.target/action_after_build.stamp +0 -0
  12. package/build/Release/obj.target/fse/fsevents.o +0 -0
  13. package/build/action_after_build.target.mk +4 -4
  14. package/build/fse.target.mk +22 -12
  15. package/build/gyp-mac-tool +1 -2
  16. package/build/stage/v1.1.2/fse-v1.1.2-node-v48-darwin-x64.tar.gz +0 -0
  17. package/lib/binding/Release/node-v48-darwin-x64/fse.node +0 -0
  18. package/lib/binding/Release/node-v57-darwin-x64/fse.node +0 -0
  19. package/node_modules/abbrev/package.json +15 -51
  20. package/node_modules/ajv/.tonic_example.js +20 -0
  21. package/node_modules/{is-my-json-valid → ajv}/LICENSE +6 -5
  22. package/node_modules/ajv/README.md +1213 -0
  23. package/node_modules/ajv/dist/ajv.bundle.js +8023 -0
  24. package/node_modules/ajv/dist/ajv.min.js +6 -0
  25. package/node_modules/ajv/dist/ajv.min.js.map +1 -0
  26. package/node_modules/ajv/dist/nodent.min.js +8 -0
  27. package/node_modules/ajv/dist/regenerator.min.js +32 -0
  28. package/node_modules/ajv/lib/ajv.d.ts +284 -0
  29. package/node_modules/ajv/lib/ajv.js +420 -0
  30. package/node_modules/ajv/lib/async.js +218 -0
  31. package/node_modules/ajv/lib/cache.js +26 -0
  32. package/node_modules/ajv/lib/compile/_rules.js +28 -0
  33. package/node_modules/ajv/lib/compile/equal.js +45 -0
  34. package/node_modules/ajv/lib/compile/formats.js +164 -0
  35. package/node_modules/ajv/lib/compile/index.js +390 -0
  36. package/node_modules/ajv/lib/compile/resolve.js +267 -0
  37. package/node_modules/ajv/lib/compile/rules.js +40 -0
  38. package/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  39. package/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  40. package/node_modules/ajv/lib/compile/util.js +257 -0
  41. package/node_modules/ajv/lib/compile/validation_error.js +14 -0
  42. package/node_modules/ajv/lib/dot/_limit.jst +49 -0
  43. package/node_modules/ajv/lib/dot/_limitItems.jst +10 -0
  44. package/node_modules/ajv/lib/dot/_limitLength.jst +10 -0
  45. package/node_modules/ajv/lib/dot/_limitProperties.jst +10 -0
  46. package/node_modules/ajv/lib/dot/allOf.jst +34 -0
  47. package/node_modules/ajv/lib/dot/anyOf.jst +48 -0
  48. package/node_modules/ajv/lib/dot/coerce.def +61 -0
  49. package/node_modules/ajv/lib/dot/custom.jst +184 -0
  50. package/node_modules/ajv/lib/dot/defaults.def +32 -0
  51. package/node_modules/ajv/lib/dot/definitions.def +182 -0
  52. package/node_modules/ajv/lib/dot/dependencies.jst +69 -0
  53. package/node_modules/ajv/lib/dot/enum.jst +30 -0
  54. package/node_modules/ajv/lib/dot/errors.def +185 -0
  55. package/node_modules/ajv/lib/dot/format.jst +100 -0
  56. package/node_modules/ajv/lib/dot/items.jst +101 -0
  57. package/node_modules/ajv/lib/dot/missing.def +34 -0
  58. package/node_modules/ajv/lib/dot/multipleOf.jst +20 -0
  59. package/node_modules/ajv/lib/dot/not.jst +43 -0
  60. package/node_modules/ajv/lib/dot/oneOf.jst +44 -0
  61. package/node_modules/ajv/lib/dot/pattern.jst +14 -0
  62. package/node_modules/ajv/lib/dot/properties.jst +319 -0
  63. package/node_modules/ajv/lib/dot/ref.jst +86 -0
  64. package/node_modules/ajv/lib/dot/required.jst +96 -0
  65. package/node_modules/ajv/lib/dot/uniqueItems.jst +38 -0
  66. package/node_modules/ajv/lib/dot/v5/_formatLimit.jst +116 -0
  67. package/node_modules/ajv/lib/dot/v5/constant.jst +10 -0
  68. package/node_modules/ajv/lib/dot/v5/patternRequired.jst +28 -0
  69. package/node_modules/ajv/lib/dot/v5/switch.jst +73 -0
  70. package/node_modules/ajv/lib/dot/validate.jst +210 -0
  71. package/node_modules/ajv/lib/dotjs/README.md +3 -0
  72. package/node_modules/ajv/lib/dotjs/_formatLimit.js +176 -0
  73. package/node_modules/ajv/lib/dotjs/_limit.js +124 -0
  74. package/node_modules/ajv/lib/dotjs/_limitItems.js +76 -0
  75. package/node_modules/ajv/lib/dotjs/_limitLength.js +81 -0
  76. package/node_modules/ajv/lib/dotjs/_limitProperties.js +76 -0
  77. package/node_modules/ajv/lib/dotjs/allOf.js +43 -0
  78. package/node_modules/ajv/lib/dotjs/anyOf.js +65 -0
  79. package/node_modules/ajv/lib/dotjs/constant.js +52 -0
  80. package/node_modules/ajv/lib/dotjs/custom.js +220 -0
  81. package/node_modules/ajv/lib/dotjs/dependencies.js +147 -0
  82. package/node_modules/ajv/lib/dotjs/enum.js +65 -0
  83. package/node_modules/ajv/lib/dotjs/format.js +138 -0
  84. package/node_modules/ajv/lib/dotjs/items.js +144 -0
  85. package/node_modules/ajv/lib/dotjs/multipleOf.js +76 -0
  86. package/node_modules/ajv/lib/dotjs/not.js +83 -0
  87. package/node_modules/ajv/lib/dotjs/oneOf.js +76 -0
  88. package/node_modules/ajv/lib/dotjs/pattern.js +74 -0
  89. package/node_modules/ajv/lib/dotjs/patternRequired.js +51 -0
  90. package/node_modules/ajv/lib/dotjs/properties.js +445 -0
  91. package/node_modules/ajv/lib/dotjs/ref.js +119 -0
  92. package/node_modules/ajv/lib/dotjs/required.js +249 -0
  93. package/node_modules/ajv/lib/dotjs/switch.js +128 -0
  94. package/node_modules/ajv/lib/dotjs/uniqueItems.js +71 -0
  95. package/node_modules/ajv/lib/dotjs/validate.js +375 -0
  96. package/node_modules/ajv/lib/keyword.js +129 -0
  97. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +150 -0
  98. package/node_modules/ajv/lib/refs/json-schema-v5.json +328 -0
  99. package/node_modules/ajv/lib/v5.js +52 -0
  100. package/node_modules/ajv/package.json +132 -0
  101. package/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  102. package/node_modules/ajv/scripts/bundle.js +54 -0
  103. package/node_modules/ajv/scripts/compile-dots.js +73 -0
  104. package/node_modules/ajv/scripts/info +10 -0
  105. package/node_modules/ajv/scripts/prepare-tests +9 -0
  106. package/node_modules/ajv/scripts/travis-gh-pages +23 -0
  107. package/node_modules/ansi-regex/package.json +26 -49
  108. package/node_modules/aproba/package.json +15 -48
  109. package/node_modules/are-we-there-yet/CHANGES.md +12 -0
  110. package/node_modules/are-we-there-yet/CHANGES.md~ +27 -0
  111. package/node_modules/are-we-there-yet/README.md +4 -3
  112. package/node_modules/are-we-there-yet/package.json +28 -54
  113. package/node_modules/asn1/package.json +16 -48
  114. package/node_modules/assert-plus/package.json +15 -47
  115. package/node_modules/asynckit/package.json +15 -49
  116. package/node_modules/aws-sign2/package.json +15 -45
  117. package/node_modules/aws4/package.json +15 -50
  118. package/node_modules/balanced-match/package.json +15 -49
  119. package/node_modules/bcrypt-pbkdf/package.json +16 -62
  120. package/node_modules/block-stream/package.json +15 -49
  121. package/node_modules/boom/package.json +15 -54
  122. package/node_modules/brace-expansion/README.md +1 -0
  123. package/node_modules/brace-expansion/index.js +1 -1
  124. package/node_modules/brace-expansion/package.json +20 -56
  125. package/node_modules/buffer-shims/package.json +15 -51
  126. package/node_modules/caseless/index.js +1 -0
  127. package/node_modules/caseless/package.json +19 -58
  128. package/node_modules/caseless/test.js +27 -0
  129. package/node_modules/co/History.md +172 -0
  130. package/node_modules/{commander → co}/LICENSE +1 -1
  131. package/node_modules/co/Readme.md +212 -0
  132. package/node_modules/co/index.js +237 -0
  133. package/node_modules/co/package.json +67 -0
  134. package/node_modules/code-point-at/package.json +15 -50
  135. package/node_modules/combined-stream/package.json +15 -58
  136. package/node_modules/concat-map/package.json +13 -41
  137. package/node_modules/console-control-strings/package.json +15 -50
  138. package/node_modules/core-util-is/package.json +15 -47
  139. package/node_modules/cryptiles/package.json +15 -49
  140. package/node_modules/dashdash/node_modules/assert-plus/package.json +15 -47
  141. package/node_modules/dashdash/package.json +15 -72
  142. package/node_modules/debug/.coveralls.yml +1 -0
  143. package/node_modules/debug/.eslintrc +11 -0
  144. package/node_modules/debug/.npmignore +3 -0
  145. package/node_modules/debug/.travis.yml +14 -0
  146. package/node_modules/debug/CHANGELOG.md +357 -0
  147. package/node_modules/debug/LICENSE +19 -0
  148. package/node_modules/debug/Makefile +28 -14
  149. package/node_modules/debug/README.md +312 -0
  150. package/node_modules/debug/component.json +4 -4
  151. package/node_modules/debug/karma.conf.js +70 -0
  152. package/node_modules/debug/node.js +1 -209
  153. package/node_modules/debug/package.json +41 -58
  154. package/node_modules/debug/{browser.js → src/browser.js} +29 -12
  155. package/node_modules/debug/{debug.js → src/debug.js} +42 -37
  156. package/node_modules/debug/src/index.js +10 -0
  157. package/node_modules/debug/src/node.js +246 -0
  158. package/node_modules/deep-extend/README.md +1 -1
  159. package/node_modules/deep-extend/lib/deep-extend.js +2 -2
  160. package/node_modules/deep-extend/package.json +22 -48
  161. package/node_modules/delayed-stream/package.json +15 -49
  162. package/node_modules/delegates/package.json +15 -50
  163. package/node_modules/ecc-jsbn/package.json +21 -45
  164. package/node_modules/extend/.eslintrc +10 -185
  165. package/node_modules/extend/.jscs.json +75 -4
  166. package/node_modules/extend/.travis.yml +154 -19
  167. package/node_modules/extend/CHANGELOG.md +8 -0
  168. package/node_modules/extend/README.md +20 -1
  169. package/node_modules/extend/index.js +8 -8
  170. package/node_modules/extend/package.json +26 -56
  171. package/node_modules/extsprintf/package.json +12 -43
  172. package/node_modules/forever-agent/package.json +16 -53
  173. package/node_modules/form-data/README.md +4 -4
  174. package/node_modules/form-data/lib/form_data.js +4 -0
  175. package/node_modules/form-data/package.json +18 -64
  176. package/node_modules/fs.realpath/package.json +15 -49
  177. package/node_modules/fstream/lib/reader.js +4 -4
  178. package/node_modules/fstream/lib/writer.js +2 -2
  179. package/node_modules/fstream/package.json +19 -67
  180. package/node_modules/fstream-ignore/package.json +15 -57
  181. package/node_modules/gauge/CHANGELOG.md +5 -0
  182. package/node_modules/gauge/package.json +18 -52
  183. package/node_modules/gauge/plumbing.js +1 -0
  184. package/node_modules/getpass/node_modules/assert-plus/package.json +15 -47
  185. package/node_modules/getpass/package.json +19 -58
  186. package/node_modules/glob/glob.js +0 -2
  187. package/node_modules/glob/package.json +19 -53
  188. package/node_modules/graceful-fs/package.json +15 -49
  189. package/node_modules/har-schema/LICENSE +13 -0
  190. package/node_modules/har-schema/README.md +49 -0
  191. package/node_modules/har-schema/lib/afterRequest.json +29 -0
  192. package/node_modules/har-schema/lib/beforeRequest.json +29 -0
  193. package/node_modules/har-schema/lib/browser.json +19 -0
  194. package/node_modules/har-schema/lib/cache.json +20 -0
  195. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/content.json +1 -0
  196. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/cookie.json +1 -0
  197. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/creator.json +1 -0
  198. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/entry.json +5 -4
  199. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/har.json +2 -1
  200. package/node_modules/har-schema/lib/header.json +19 -0
  201. package/node_modules/har-schema/lib/index.js +22 -0
  202. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/log.json +5 -4
  203. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/page.json +2 -1
  204. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/pageTimings.json +1 -0
  205. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/postData.json +1 -0
  206. package/node_modules/{har-validator/lib/schemas/record.json → har-schema/lib/query.json} +1 -0
  207. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/request.json +5 -4
  208. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/response.json +4 -3
  209. package/node_modules/{har-validator/lib/schemas → har-schema/lib}/timings.json +1 -0
  210. package/node_modules/har-schema/package.json +87 -0
  211. package/node_modules/har-validator/README.md +31 -265
  212. package/node_modules/har-validator/lib/browser/async.js +96 -0
  213. package/node_modules/har-validator/lib/browser/error.js +15 -0
  214. package/node_modules/har-validator/lib/browser/promise.js +93 -0
  215. package/node_modules/har-validator/lib/node4/async.js +136 -0
  216. package/node_modules/har-validator/lib/node4/error.js +22 -0
  217. package/node_modules/har-validator/lib/node4/promise.js +132 -0
  218. package/node_modules/har-validator/lib/node6/async.js +133 -0
  219. package/node_modules/har-validator/lib/node6/error.js +22 -0
  220. package/node_modules/har-validator/lib/node6/promise.js +130 -0
  221. package/node_modules/har-validator/lib/node7/async.js +133 -0
  222. package/node_modules/har-validator/lib/node7/error.js +22 -0
  223. package/node_modules/har-validator/lib/node7/promise.js +130 -0
  224. package/node_modules/har-validator/package.json +54 -72
  225. package/node_modules/har-validator/src/async.js +96 -0
  226. package/node_modules/har-validator/src/error.js +15 -0
  227. package/node_modules/har-validator/src/promise.js +93 -0
  228. package/node_modules/has-unicode/package.json +15 -50
  229. package/node_modules/hawk/package.json +15 -45
  230. package/node_modules/hoek/package.json +15 -55
  231. package/node_modules/http-signature/package.json +15 -53
  232. package/node_modules/inflight/package.json +15 -61
  233. package/node_modules/inherits/package.json +15 -58
  234. package/node_modules/ini/package.json +15 -45
  235. package/node_modules/is-fullwidth-code-point/package.json +16 -46
  236. package/node_modules/is-typedarray/package.json +15 -45
  237. package/node_modules/isarray/package.json +15 -46
  238. package/node_modules/isstream/package.json +15 -46
  239. package/node_modules/jodid25519/package.json +16 -44
  240. package/node_modules/jsbn/package.json +16 -53
  241. package/node_modules/json-schema/package.json +13 -41
  242. package/node_modules/{generate-function → json-stable-stringify}/.npmignore +0 -0
  243. package/node_modules/{generate-object-property → json-stable-stringify}/.travis.yml +1 -0
  244. package/node_modules/{ms → json-stable-stringify}/LICENSE +1 -3
  245. package/node_modules/json-stable-stringify/example/key_cmp.js +7 -0
  246. package/node_modules/json-stable-stringify/example/nested.js +3 -0
  247. package/node_modules/json-stable-stringify/example/str.js +3 -0
  248. package/node_modules/json-stable-stringify/example/value_cmp.js +7 -0
  249. package/node_modules/json-stable-stringify/index.js +84 -0
  250. package/node_modules/json-stable-stringify/package.json +75 -0
  251. package/node_modules/json-stable-stringify/readme.markdown +130 -0
  252. package/node_modules/json-stable-stringify/test/cmp.js +11 -0
  253. package/node_modules/json-stable-stringify/test/nested.js +35 -0
  254. package/node_modules/json-stable-stringify/test/replacer.js +74 -0
  255. package/node_modules/json-stable-stringify/test/space.js +59 -0
  256. package/node_modules/json-stable-stringify/test/str.js +32 -0
  257. package/node_modules/json-stable-stringify/test/to-json.js +20 -0
  258. package/node_modules/json-stringify-safe/package.json +15 -50
  259. package/node_modules/jsonify/README.markdown +34 -0
  260. package/node_modules/jsonify/index.js +2 -0
  261. package/node_modules/jsonify/lib/parse.js +273 -0
  262. package/node_modules/jsonify/lib/stringify.js +154 -0
  263. package/node_modules/jsonify/package.json +60 -0
  264. package/node_modules/jsonify/test/parse.js +16 -0
  265. package/node_modules/jsonify/test/stringify.js +15 -0
  266. package/node_modules/jsprim/CHANGES.md +4 -0
  267. package/node_modules/jsprim/README.md +55 -0
  268. package/node_modules/jsprim/lib/jsprim.js +248 -1
  269. package/node_modules/jsprim/node_modules/assert-plus/AUTHORS +6 -0
  270. package/node_modules/jsprim/node_modules/assert-plus/CHANGES.md +14 -0
  271. package/node_modules/jsprim/node_modules/assert-plus/README.md +162 -0
  272. package/node_modules/jsprim/node_modules/assert-plus/assert.js +211 -0
  273. package/node_modules/jsprim/node_modules/assert-plus/package.json +83 -0
  274. package/node_modules/jsprim/package.json +22 -57
  275. package/node_modules/mime-db/HISTORY.md +21 -0
  276. package/node_modules/mime-db/db.json +54 -0
  277. package/node_modules/mime-db/package.json +24 -63
  278. package/node_modules/mime-types/HISTORY.md +7 -0
  279. package/node_modules/mime-types/README.md +10 -5
  280. package/node_modules/mime-types/index.js +1 -1
  281. package/node_modules/mime-types/package.json +23 -66
  282. package/node_modules/minimatch/package.json +24 -58
  283. package/node_modules/minimist/package.json +12 -41
  284. package/node_modules/mkdirp/package.json +15 -47
  285. package/node_modules/ms/index.js +50 -23
  286. package/node_modules/{graceful-readlink/LICENSE → ms/license.md} +1 -2
  287. package/node_modules/ms/package.json +49 -61
  288. package/node_modules/ms/readme.md +51 -0
  289. package/node_modules/node-pre-gyp/CHANGELOG.md +15 -0
  290. package/node_modules/node-pre-gyp/README.md +12 -1
  291. package/node_modules/node-pre-gyp/appveyor.yml +1 -6
  292. package/node_modules/node-pre-gyp/cloudformation/travis.template +73 -0
  293. package/node_modules/node-pre-gyp/contributing.md +10 -0
  294. package/node_modules/node-pre-gyp/lib/install.js +5 -47
  295. package/node_modules/node-pre-gyp/lib/testbinary.js +8 -2
  296. package/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +72 -0
  297. package/node_modules/node-pre-gyp/package.json +30 -76
  298. package/node_modules/node-pre-gyp/template-name.diff +12 -0
  299. package/node_modules/nopt/.travis.yml +3 -4
  300. package/node_modules/nopt/CHANGELOG.md +58 -0
  301. package/node_modules/nopt/README.md +28 -26
  302. package/node_modules/nopt/lib/nopt.js +50 -29
  303. package/node_modules/nopt/package.json +22 -59
  304. package/node_modules/nopt/test/basic.js +36 -6
  305. package/node_modules/npmlog/CHANGELOG.md +5 -1
  306. package/node_modules/npmlog/log.js +2 -0
  307. package/node_modules/npmlog/package.json +21 -67
  308. package/node_modules/number-is-nan/package.json +15 -50
  309. package/node_modules/oauth-sign/package.json +15 -56
  310. package/node_modules/object-assign/package.json +15 -58
  311. package/node_modules/once/package.json +15 -49
  312. package/node_modules/os-homedir/index.js +24 -0
  313. package/node_modules/{ansi-styles → os-homedir}/license +0 -0
  314. package/node_modules/os-homedir/package.json +74 -0
  315. package/node_modules/os-homedir/readme.md +31 -0
  316. package/node_modules/os-tmpdir/index.js +25 -0
  317. package/node_modules/{chalk → os-tmpdir}/license +0 -0
  318. package/node_modules/os-tmpdir/package.json +74 -0
  319. package/node_modules/os-tmpdir/readme.md +32 -0
  320. package/node_modules/osenv/.npmignore +13 -0
  321. package/node_modules/osenv/.travis.yml +9 -0
  322. package/node_modules/{tar-pack/node_modules/once → osenv}/LICENSE +0 -0
  323. package/node_modules/osenv/README.md +63 -0
  324. package/node_modules/osenv/osenv.js +72 -0
  325. package/node_modules/osenv/package.json +68 -0
  326. package/node_modules/osenv/test/unix.js +71 -0
  327. package/node_modules/osenv/test/windows.js +74 -0
  328. package/node_modules/osenv/x.tap +39 -0
  329. package/node_modules/path-is-absolute/package.json +15 -50
  330. package/node_modules/performance-now/.npmignore +1 -0
  331. package/node_modules/performance-now/.tm_properties +7 -0
  332. package/node_modules/{generate-function → performance-now}/.travis.yml +1 -0
  333. package/node_modules/performance-now/Makefile +25 -0
  334. package/node_modules/performance-now/README.md +30 -0
  335. package/node_modules/performance-now/lib/performance-now.js +32 -0
  336. package/node_modules/performance-now/license.txt +7 -0
  337. package/node_modules/performance-now/package.json +58 -0
  338. package/node_modules/performance-now/src/performance-now.coffee +15 -0
  339. package/node_modules/performance-now/test/mocha.opts +3 -0
  340. package/node_modules/performance-now/test/performance-now.coffee +38 -0
  341. package/node_modules/process-nextick-args/package.json +15 -51
  342. package/node_modules/punycode/package.json +14 -49
  343. package/node_modules/qs/.eslintrc +4 -5
  344. package/node_modules/qs/.jscs.json +176 -0
  345. package/node_modules/qs/CHANGELOG.md +19 -0
  346. package/node_modules/qs/README.md +10 -1
  347. package/node_modules/qs/dist/qs.js +24 -14
  348. package/node_modules/qs/lib/index.js +0 -0
  349. package/node_modules/qs/lib/parse.js +6 -5
  350. package/node_modules/qs/lib/stringify.js +15 -8
  351. package/node_modules/qs/lib/utils.js +3 -1
  352. package/node_modules/qs/package.json +19 -61
  353. package/node_modules/qs/test/.eslintrc +2 -1
  354. package/node_modules/qs/test/parse.js +37 -2
  355. package/node_modules/qs/test/stringify.js +29 -0
  356. package/node_modules/qs/test/utils.js +0 -0
  357. package/node_modules/rc/lib/utils.js +2 -1
  358. package/node_modules/rc/node_modules/minimist/package.json +15 -46
  359. package/node_modules/rc/package.json +18 -53
  360. package/node_modules/rc/test/nested-env-vars.js +31 -21
  361. package/node_modules/readable-stream/.travis.yml +2 -2
  362. package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  363. package/node_modules/readable-stream/GOVERNANCE.md +136 -0
  364. package/node_modules/readable-stream/LICENSE +29 -0
  365. package/node_modules/readable-stream/README.md +20 -3
  366. package/node_modules/readable-stream/duplex-browser.js +1 -0
  367. package/node_modules/readable-stream/duplex.js +1 -1
  368. package/node_modules/readable-stream/lib/_stream_readable.js +7 -13
  369. package/node_modules/readable-stream/lib/_stream_writable.js +18 -28
  370. package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  371. package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  372. package/node_modules/readable-stream/package.json +25 -67
  373. package/node_modules/readable-stream/passthrough.js +1 -1
  374. package/node_modules/{tar-pack/node_modules/readable-stream/readable.js → readable-stream/readable-browser.js} +1 -10
  375. package/node_modules/readable-stream/readable.js +17 -14
  376. package/node_modules/readable-stream/transform.js +1 -1
  377. package/node_modules/readable-stream/writable-browser.js +1 -0
  378. package/node_modules/readable-stream/writable.js +8 -1
  379. package/node_modules/request/CHANGELOG.md +23 -11
  380. package/node_modules/request/README.md +36 -19
  381. package/node_modules/request/lib/helpers.js +2 -1
  382. package/node_modules/request/lib/multipart.js +2 -1
  383. package/node_modules/request/lib/oauth.js +2 -1
  384. package/node_modules/request/package.json +30 -74
  385. package/node_modules/request/request.js +106 -16
  386. package/node_modules/rimraf/bin.js +13 -3
  387. package/node_modules/rimraf/package.json +19 -55
  388. package/node_modules/rimraf/rimraf.js +22 -2
  389. package/node_modules/safe-buffer/.travis.yml +7 -0
  390. package/node_modules/{is-property → safe-buffer}/LICENSE +1 -2
  391. package/node_modules/safe-buffer/README.md +581 -0
  392. package/node_modules/safe-buffer/browser.js +1 -0
  393. package/node_modules/safe-buffer/index.js +58 -0
  394. package/node_modules/safe-buffer/package.json +64 -0
  395. package/node_modules/safe-buffer/test.js +99 -0
  396. package/node_modules/semver/package.json +15 -54
  397. package/node_modules/set-blocking/package.json +15 -50
  398. package/node_modules/signal-exit/package.json +15 -54
  399. package/node_modules/sntp/package.json +16 -45
  400. package/node_modules/sshpk/README.md +38 -6
  401. package/node_modules/sshpk/lib/certificate.js +88 -2
  402. package/node_modules/sshpk/lib/dhe.js +101 -2
  403. package/node_modules/sshpk/lib/formats/openssh-cert.js +34 -1
  404. package/node_modules/sshpk/lib/formats/x509.js +247 -5
  405. package/node_modules/sshpk/lib/identity.js +1 -1
  406. package/node_modules/sshpk/lib/index.js +1 -0
  407. package/node_modules/sshpk/lib/key.js +6 -2
  408. package/node_modules/sshpk/lib/private-key.js +25 -1
  409. package/node_modules/sshpk/lib/signature.js +76 -8
  410. package/node_modules/sshpk/node_modules/assert-plus/package.json +15 -47
  411. package/node_modules/sshpk/package.json +21 -53
  412. package/node_modules/string-width/package.json +15 -50
  413. package/node_modules/string_decoder/LICENSE +48 -20
  414. package/node_modules/string_decoder/README.md +25 -4
  415. package/node_modules/string_decoder/lib/string_decoder.js +272 -0
  416. package/node_modules/string_decoder/package.json +24 -55
  417. package/node_modules/stringstream/package.json +15 -48
  418. package/node_modules/strip-ansi/package.json +27 -50
  419. package/node_modules/strip-json-comments/package.json +15 -50
  420. package/node_modules/tar/package.json +15 -58
  421. package/node_modules/tar-pack/package.json +28 -79
  422. package/node_modules/tough-cookie/package.json +15 -57
  423. package/node_modules/tunnel-agent/index.js +5 -4
  424. package/node_modules/tunnel-agent/package.json +22 -66
  425. package/node_modules/tweetnacl/package.json +16 -50
  426. package/node_modules/uid-number/package.json +16 -46
  427. package/node_modules/util-deprecate/package.json +15 -48
  428. package/node_modules/uuid/package.json +15 -58
  429. package/node_modules/verror/package.json +12 -41
  430. package/node_modules/wide-align/package.json +25 -51
  431. package/node_modules/wrappy/package.json +15 -54
  432. package/package.json +4 -3
  433. package/node_modules/ansi-styles/index.js +0 -65
  434. package/node_modules/ansi-styles/package.json +0 -114
  435. package/node_modules/ansi-styles/readme.md +0 -86
  436. package/node_modules/are-we-there-yet/.npmignore +0 -5
  437. package/node_modules/are-we-there-yet/test/lib/test-event.js +0 -29
  438. package/node_modules/are-we-there-yet/test/tracker.js +0 -57
  439. package/node_modules/are-we-there-yet/test/trackergroup.js +0 -96
  440. package/node_modules/are-we-there-yet/test/trackerstream.js +0 -51
  441. package/node_modules/chalk/index.js +0 -116
  442. package/node_modules/chalk/package.json +0 -140
  443. package/node_modules/chalk/readme.md +0 -213
  444. package/node_modules/commander/History.md +0 -261
  445. package/node_modules/commander/Readme.md +0 -351
  446. package/node_modules/commander/index.js +0 -1110
  447. package/node_modules/commander/package.json +0 -104
  448. package/node_modules/debug/.jshintrc +0 -3
  449. package/node_modules/debug/History.md +0 -195
  450. package/node_modules/debug/Readme.md +0 -188
  451. package/node_modules/debug/bower.json +0 -28
  452. package/node_modules/escape-string-regexp/index.js +0 -11
  453. package/node_modules/escape-string-regexp/license +0 -21
  454. package/node_modules/escape-string-regexp/package.json +0 -109
  455. package/node_modules/escape-string-regexp/readme.md +0 -27
  456. package/node_modules/generate-function/README.md +0 -72
  457. package/node_modules/generate-function/example.js +0 -27
  458. package/node_modules/generate-function/index.js +0 -61
  459. package/node_modules/generate-function/package.json +0 -87
  460. package/node_modules/generate-function/test.js +0 -33
  461. package/node_modules/generate-object-property/.npmignore +0 -1
  462. package/node_modules/generate-object-property/LICENSE +0 -21
  463. package/node_modules/generate-object-property/README.md +0 -19
  464. package/node_modules/generate-object-property/index.js +0 -12
  465. package/node_modules/generate-object-property/package.json +0 -84
  466. package/node_modules/generate-object-property/test.js +0 -12
  467. package/node_modules/graceful-readlink/.npmignore +0 -3
  468. package/node_modules/graceful-readlink/.travis.yml +0 -5
  469. package/node_modules/graceful-readlink/README.md +0 -17
  470. package/node_modules/graceful-readlink/index.js +0 -12
  471. package/node_modules/graceful-readlink/package.json +0 -83
  472. package/node_modules/har-validator/bin/har-validator +0 -56
  473. package/node_modules/har-validator/lib/async.js +0 -14
  474. package/node_modules/har-validator/lib/error.js +0 -10
  475. package/node_modules/har-validator/lib/index.js +0 -22
  476. package/node_modules/har-validator/lib/runner.js +0 -29
  477. package/node_modules/har-validator/lib/schemas/cache.json +0 -13
  478. package/node_modules/har-validator/lib/schemas/cacheEntry.json +0 -31
  479. package/node_modules/har-validator/lib/schemas/index.js +0 -49
  480. package/node_modules/has-ansi/index.js +0 -4
  481. package/node_modules/has-ansi/license +0 -21
  482. package/node_modules/has-ansi/package.json +0 -118
  483. package/node_modules/has-ansi/readme.md +0 -36
  484. package/node_modules/is-my-json-valid/.npmignore +0 -2
  485. package/node_modules/is-my-json-valid/.travis.yml +0 -3
  486. package/node_modules/is-my-json-valid/README.md +0 -173
  487. package/node_modules/is-my-json-valid/example.js +0 -18
  488. package/node_modules/is-my-json-valid/formats.js +0 -14
  489. package/node_modules/is-my-json-valid/index.js +0 -594
  490. package/node_modules/is-my-json-valid/package.json +0 -116
  491. package/node_modules/is-my-json-valid/require.js +0 -12
  492. package/node_modules/is-my-json-valid/test/fixtures/cosmic.js +0 -84
  493. package/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +0 -82
  494. package/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +0 -88
  495. package/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +0 -112
  496. package/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +0 -68
  497. package/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +0 -107
  498. package/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +0 -49
  499. package/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +0 -32
  500. package/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +0 -113
  501. package/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +0 -72
  502. package/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +0 -143
  503. package/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +0 -46
  504. package/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +0 -28
  505. package/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +0 -28
  506. package/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +0 -28
  507. package/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +0 -42
  508. package/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +0 -28
  509. package/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +0 -28
  510. package/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +0 -28
  511. package/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +0 -42
  512. package/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +0 -96
  513. package/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +0 -96
  514. package/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +0 -18
  515. package/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +0 -18
  516. package/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +0 -68
  517. package/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +0 -23
  518. package/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +0 -110
  519. package/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +0 -92
  520. package/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +0 -128
  521. package/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +0 -74
  522. package/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +0 -39
  523. package/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +0 -330
  524. package/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +0 -79
  525. package/node_modules/is-my-json-valid/test/json-schema.js +0 -23
  526. package/node_modules/is-my-json-valid/test/misc.js +0 -471
  527. package/node_modules/is-property/.npmignore +0 -17
  528. package/node_modules/is-property/README.md +0 -28
  529. package/node_modules/is-property/is-property.js +0 -5
  530. package/node_modules/is-property/package.json +0 -92
  531. package/node_modules/jsonpointer/LICENSE.md +0 -21
  532. package/node_modules/jsonpointer/README.md +0 -39
  533. package/node_modules/jsonpointer/jsonpointer.js +0 -93
  534. package/node_modules/jsonpointer/package.json +0 -112
  535. package/node_modules/ms/.npmignore +0 -5
  536. package/node_modules/ms/History.md +0 -66
  537. package/node_modules/ms/README.md +0 -35
  538. package/node_modules/pinkie/index.js +0 -292
  539. package/node_modules/pinkie/license +0 -21
  540. package/node_modules/pinkie/package.json +0 -100
  541. package/node_modules/pinkie/readme.md +0 -83
  542. package/node_modules/pinkie-promise/index.js +0 -3
  543. package/node_modules/pinkie-promise/license +0 -21
  544. package/node_modules/pinkie-promise/package.json +0 -102
  545. package/node_modules/pinkie-promise/readme.md +0 -28
  546. package/node_modules/string_decoder/index.js +0 -221
  547. package/node_modules/supports-color/index.js +0 -50
  548. package/node_modules/supports-color/license +0 -21
  549. package/node_modules/supports-color/package.json +0 -113
  550. package/node_modules/supports-color/readme.md +0 -36
  551. package/node_modules/tar-pack/node_modules/once/README.md +0 -51
  552. package/node_modules/tar-pack/node_modules/once/once.js +0 -21
  553. package/node_modules/tar-pack/node_modules/once/package.json +0 -96
  554. package/node_modules/tar-pack/node_modules/readable-stream/.npmignore +0 -8
  555. package/node_modules/tar-pack/node_modules/readable-stream/.travis.yml +0 -49
  556. package/node_modules/tar-pack/node_modules/readable-stream/LICENSE +0 -18
  557. package/node_modules/tar-pack/node_modules/readable-stream/README.md +0 -36
  558. package/node_modules/tar-pack/node_modules/readable-stream/doc/stream.md +0 -2015
  559. package/node_modules/tar-pack/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +0 -60
  560. package/node_modules/tar-pack/node_modules/readable-stream/duplex.js +0 -1
  561. package/node_modules/tar-pack/node_modules/readable-stream/lib/_stream_duplex.js +0 -75
  562. package/node_modules/tar-pack/node_modules/readable-stream/lib/_stream_passthrough.js +0 -26
  563. package/node_modules/tar-pack/node_modules/readable-stream/lib/_stream_readable.js +0 -937
  564. package/node_modules/tar-pack/node_modules/readable-stream/lib/_stream_transform.js +0 -180
  565. package/node_modules/tar-pack/node_modules/readable-stream/lib/_stream_writable.js +0 -526
  566. package/node_modules/tar-pack/node_modules/readable-stream/lib/internal/streams/BufferList.js +0 -64
  567. package/node_modules/tar-pack/node_modules/readable-stream/package.json +0 -125
  568. package/node_modules/tar-pack/node_modules/readable-stream/passthrough.js +0 -1
  569. package/node_modules/tar-pack/node_modules/readable-stream/transform.js +0 -1
  570. package/node_modules/tar-pack/node_modules/readable-stream/writable.js +0 -1
  571. package/node_modules/wide-align/.npmignore +0 -5
  572. package/node_modules/wide-align/test/align.js +0 -37
  573. package/node_modules/xtend/.jshintrc +0 -30
  574. package/node_modules/xtend/.npmignore +0 -1
  575. package/node_modules/xtend/LICENCE +0 -19
  576. package/node_modules/xtend/Makefile +0 -4
  577. package/node_modules/xtend/README.md +0 -32
  578. package/node_modules/xtend/immutable.js +0 -19
  579. package/node_modules/xtend/mutable.js +0 -17
  580. package/node_modules/xtend/package.json +0 -117
  581. package/node_modules/xtend/test.js +0 -83
@@ -1,937 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = Readable;
4
-
5
- /*<replacement>*/
6
- var processNextTick = require('process-nextick-args');
7
- /*</replacement>*/
8
-
9
- /*<replacement>*/
10
- var isArray = require('isarray');
11
- /*</replacement>*/
12
-
13
- Readable.ReadableState = ReadableState;
14
-
15
- /*<replacement>*/
16
- var EE = require('events').EventEmitter;
17
-
18
- var EElistenerCount = function (emitter, type) {
19
- return emitter.listeners(type).length;
20
- };
21
- /*</replacement>*/
22
-
23
- /*<replacement>*/
24
- var Stream;
25
- (function () {
26
- try {
27
- Stream = require('st' + 'ream');
28
- } catch (_) {} finally {
29
- if (!Stream) Stream = require('events').EventEmitter;
30
- }
31
- })();
32
- /*</replacement>*/
33
-
34
- var Buffer = require('buffer').Buffer;
35
- /*<replacement>*/
36
- var bufferShim = require('buffer-shims');
37
- /*</replacement>*/
38
-
39
- /*<replacement>*/
40
- var util = require('core-util-is');
41
- util.inherits = require('inherits');
42
- /*</replacement>*/
43
-
44
- /*<replacement>*/
45
- var debugUtil = require('util');
46
- var debug = void 0;
47
- if (debugUtil && debugUtil.debuglog) {
48
- debug = debugUtil.debuglog('stream');
49
- } else {
50
- debug = function () {};
51
- }
52
- /*</replacement>*/
53
-
54
- var BufferList = require('./internal/streams/BufferList');
55
- var StringDecoder;
56
-
57
- util.inherits(Readable, Stream);
58
-
59
- function prependListener(emitter, event, fn) {
60
- if (typeof emitter.prependListener === 'function') {
61
- return emitter.prependListener(event, fn);
62
- } else {
63
- // This is a hack to make sure that our error handler is attached before any
64
- // userland ones. NEVER DO THIS. This is here only because this code needs
65
- // to continue to work with older versions of Node.js that do not include
66
- // the prependListener() method. The goal is to eventually remove this hack.
67
- if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];
68
- }
69
- }
70
-
71
- var Duplex;
72
- function ReadableState(options, stream) {
73
- Duplex = Duplex || require('./_stream_duplex');
74
-
75
- options = options || {};
76
-
77
- // object stream flag. Used to make read(n) ignore n and to
78
- // make all the buffer merging and length checks go away
79
- this.objectMode = !!options.objectMode;
80
-
81
- if (stream instanceof Duplex) this.objectMode = this.objectMode || !!options.readableObjectMode;
82
-
83
- // the point at which it stops calling _read() to fill the buffer
84
- // Note: 0 is a valid value, means "don't call _read preemptively ever"
85
- var hwm = options.highWaterMark;
86
- var defaultHwm = this.objectMode ? 16 : 16 * 1024;
87
- this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm;
88
-
89
- // cast to ints.
90
- this.highWaterMark = ~ ~this.highWaterMark;
91
-
92
- // A linked list is used to store data chunks instead of an array because the
93
- // linked list can remove elements from the beginning faster than
94
- // array.shift()
95
- this.buffer = new BufferList();
96
- this.length = 0;
97
- this.pipes = null;
98
- this.pipesCount = 0;
99
- this.flowing = null;
100
- this.ended = false;
101
- this.endEmitted = false;
102
- this.reading = false;
103
-
104
- // a flag to be able to tell if the onwrite cb is called immediately,
105
- // or on a later tick. We set this to true at first, because any
106
- // actions that shouldn't happen until "later" should generally also
107
- // not happen before the first write call.
108
- this.sync = true;
109
-
110
- // whenever we return null, then we set a flag to say
111
- // that we're awaiting a 'readable' event emission.
112
- this.needReadable = false;
113
- this.emittedReadable = false;
114
- this.readableListening = false;
115
- this.resumeScheduled = false;
116
-
117
- // Crypto is kind of old and crusty. Historically, its default string
118
- // encoding is 'binary' so we have to make this configurable.
119
- // Everything else in the universe uses 'utf8', though.
120
- this.defaultEncoding = options.defaultEncoding || 'utf8';
121
-
122
- // when piping, we only care about 'readable' events that happen
123
- // after read()ing all the bytes and not getting any pushback.
124
- this.ranOut = false;
125
-
126
- // the number of writers that are awaiting a drain event in .pipe()s
127
- this.awaitDrain = 0;
128
-
129
- // if true, a maybeReadMore has been scheduled
130
- this.readingMore = false;
131
-
132
- this.decoder = null;
133
- this.encoding = null;
134
- if (options.encoding) {
135
- if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
136
- this.decoder = new StringDecoder(options.encoding);
137
- this.encoding = options.encoding;
138
- }
139
- }
140
-
141
- var Duplex;
142
- function Readable(options) {
143
- Duplex = Duplex || require('./_stream_duplex');
144
-
145
- if (!(this instanceof Readable)) return new Readable(options);
146
-
147
- this._readableState = new ReadableState(options, this);
148
-
149
- // legacy
150
- this.readable = true;
151
-
152
- if (options && typeof options.read === 'function') this._read = options.read;
153
-
154
- Stream.call(this);
155
- }
156
-
157
- // Manually shove something into the read() buffer.
158
- // This returns true if the highWaterMark has not been hit yet,
159
- // similar to how Writable.write() returns true if you should
160
- // write() some more.
161
- Readable.prototype.push = function (chunk, encoding) {
162
- var state = this._readableState;
163
-
164
- if (!state.objectMode && typeof chunk === 'string') {
165
- encoding = encoding || state.defaultEncoding;
166
- if (encoding !== state.encoding) {
167
- chunk = bufferShim.from(chunk, encoding);
168
- encoding = '';
169
- }
170
- }
171
-
172
- return readableAddChunk(this, state, chunk, encoding, false);
173
- };
174
-
175
- // Unshift should *always* be something directly out of read()
176
- Readable.prototype.unshift = function (chunk) {
177
- var state = this._readableState;
178
- return readableAddChunk(this, state, chunk, '', true);
179
- };
180
-
181
- Readable.prototype.isPaused = function () {
182
- return this._readableState.flowing === false;
183
- };
184
-
185
- function readableAddChunk(stream, state, chunk, encoding, addToFront) {
186
- var er = chunkInvalid(state, chunk);
187
- if (er) {
188
- stream.emit('error', er);
189
- } else if (chunk === null) {
190
- state.reading = false;
191
- onEofChunk(stream, state);
192
- } else if (state.objectMode || chunk && chunk.length > 0) {
193
- if (state.ended && !addToFront) {
194
- var e = new Error('stream.push() after EOF');
195
- stream.emit('error', e);
196
- } else if (state.endEmitted && addToFront) {
197
- var _e = new Error('stream.unshift() after end event');
198
- stream.emit('error', _e);
199
- } else {
200
- var skipAdd;
201
- if (state.decoder && !addToFront && !encoding) {
202
- chunk = state.decoder.write(chunk);
203
- skipAdd = !state.objectMode && chunk.length === 0;
204
- }
205
-
206
- if (!addToFront) state.reading = false;
207
-
208
- // Don't add to the buffer if we've decoded to an empty string chunk and
209
- // we're not in object mode
210
- if (!skipAdd) {
211
- // if we want the data now, just emit it.
212
- if (state.flowing && state.length === 0 && !state.sync) {
213
- stream.emit('data', chunk);
214
- stream.read(0);
215
- } else {
216
- // update the buffer info.
217
- state.length += state.objectMode ? 1 : chunk.length;
218
- if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);
219
-
220
- if (state.needReadable) emitReadable(stream);
221
- }
222
- }
223
-
224
- maybeReadMore(stream, state);
225
- }
226
- } else if (!addToFront) {
227
- state.reading = false;
228
- }
229
-
230
- return needMoreData(state);
231
- }
232
-
233
- // if it's past the high water mark, we can push in some more.
234
- // Also, if we have no data yet, we can stand some
235
- // more bytes. This is to work around cases where hwm=0,
236
- // such as the repl. Also, if the push() triggered a
237
- // readable event, and the user called read(largeNumber) such that
238
- // needReadable was set, then we ought to push more, so that another
239
- // 'readable' event will be triggered.
240
- function needMoreData(state) {
241
- return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0);
242
- }
243
-
244
- // backwards compatibility.
245
- Readable.prototype.setEncoding = function (enc) {
246
- if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
247
- this._readableState.decoder = new StringDecoder(enc);
248
- this._readableState.encoding = enc;
249
- return this;
250
- };
251
-
252
- // Don't raise the hwm > 8MB
253
- var MAX_HWM = 0x800000;
254
- function computeNewHighWaterMark(n) {
255
- if (n >= MAX_HWM) {
256
- n = MAX_HWM;
257
- } else {
258
- // Get the next highest power of 2 to prevent increasing hwm excessively in
259
- // tiny amounts
260
- n--;
261
- n |= n >>> 1;
262
- n |= n >>> 2;
263
- n |= n >>> 4;
264
- n |= n >>> 8;
265
- n |= n >>> 16;
266
- n++;
267
- }
268
- return n;
269
- }
270
-
271
- // This function is designed to be inlinable, so please take care when making
272
- // changes to the function body.
273
- function howMuchToRead(n, state) {
274
- if (n <= 0 || state.length === 0 && state.ended) return 0;
275
- if (state.objectMode) return 1;
276
- if (n !== n) {
277
- // Only flow one buffer at a time
278
- if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
279
- }
280
- // If we're asking for more than the current hwm, then raise the hwm.
281
- if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);
282
- if (n <= state.length) return n;
283
- // Don't have enough
284
- if (!state.ended) {
285
- state.needReadable = true;
286
- return 0;
287
- }
288
- return state.length;
289
- }
290
-
291
- // you can override either this method, or the async _read(n) below.
292
- Readable.prototype.read = function (n) {
293
- debug('read', n);
294
- n = parseInt(n, 10);
295
- var state = this._readableState;
296
- var nOrig = n;
297
-
298
- if (n !== 0) state.emittedReadable = false;
299
-
300
- // if we're doing read(0) to trigger a readable event, but we
301
- // already have a bunch of data in the buffer, then just trigger
302
- // the 'readable' event and move on.
303
- if (n === 0 && state.needReadable && (state.length >= state.highWaterMark || state.ended)) {
304
- debug('read: emitReadable', state.length, state.ended);
305
- if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);
306
- return null;
307
- }
308
-
309
- n = howMuchToRead(n, state);
310
-
311
- // if we've ended, and we're now clear, then finish it up.
312
- if (n === 0 && state.ended) {
313
- if (state.length === 0) endReadable(this);
314
- return null;
315
- }
316
-
317
- // All the actual chunk generation logic needs to be
318
- // *below* the call to _read. The reason is that in certain
319
- // synthetic stream cases, such as passthrough streams, _read
320
- // may be a completely synchronous operation which may change
321
- // the state of the read buffer, providing enough data when
322
- // before there was *not* enough.
323
- //
324
- // So, the steps are:
325
- // 1. Figure out what the state of things will be after we do
326
- // a read from the buffer.
327
- //
328
- // 2. If that resulting state will trigger a _read, then call _read.
329
- // Note that this may be asynchronous, or synchronous. Yes, it is
330
- // deeply ugly to write APIs this way, but that still doesn't mean
331
- // that the Readable class should behave improperly, as streams are
332
- // designed to be sync/async agnostic.
333
- // Take note if the _read call is sync or async (ie, if the read call
334
- // has returned yet), so that we know whether or not it's safe to emit
335
- // 'readable' etc.
336
- //
337
- // 3. Actually pull the requested chunks out of the buffer and return.
338
-
339
- // if we need a readable event, then we need to do some reading.
340
- var doRead = state.needReadable;
341
- debug('need readable', doRead);
342
-
343
- // if we currently have less than the highWaterMark, then also read some
344
- if (state.length === 0 || state.length - n < state.highWaterMark) {
345
- doRead = true;
346
- debug('length less than watermark', doRead);
347
- }
348
-
349
- // however, if we've ended, then there's no point, and if we're already
350
- // reading, then it's unnecessary.
351
- if (state.ended || state.reading) {
352
- doRead = false;
353
- debug('reading or ended', doRead);
354
- } else if (doRead) {
355
- debug('do read');
356
- state.reading = true;
357
- state.sync = true;
358
- // if the length is currently zero, then we *need* a readable event.
359
- if (state.length === 0) state.needReadable = true;
360
- // call internal read method
361
- this._read(state.highWaterMark);
362
- state.sync = false;
363
- // If _read pushed data synchronously, then `reading` will be false,
364
- // and we need to re-evaluate how much data we can return to the user.
365
- if (!state.reading) n = howMuchToRead(nOrig, state);
366
- }
367
-
368
- var ret;
369
- if (n > 0) ret = fromList(n, state);else ret = null;
370
-
371
- if (ret === null) {
372
- state.needReadable = true;
373
- n = 0;
374
- } else {
375
- state.length -= n;
376
- }
377
-
378
- if (state.length === 0) {
379
- // If we have nothing in the buffer, then we want to know
380
- // as soon as we *do* get something into the buffer.
381
- if (!state.ended) state.needReadable = true;
382
-
383
- // If we tried to read() past the EOF, then emit end on the next tick.
384
- if (nOrig !== n && state.ended) endReadable(this);
385
- }
386
-
387
- if (ret !== null) this.emit('data', ret);
388
-
389
- return ret;
390
- };
391
-
392
- function chunkInvalid(state, chunk) {
393
- var er = null;
394
- if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== null && chunk !== undefined && !state.objectMode) {
395
- er = new TypeError('Invalid non-string/buffer chunk');
396
- }
397
- return er;
398
- }
399
-
400
- function onEofChunk(stream, state) {
401
- if (state.ended) return;
402
- if (state.decoder) {
403
- var chunk = state.decoder.end();
404
- if (chunk && chunk.length) {
405
- state.buffer.push(chunk);
406
- state.length += state.objectMode ? 1 : chunk.length;
407
- }
408
- }
409
- state.ended = true;
410
-
411
- // emit 'readable' now to make sure it gets picked up.
412
- emitReadable(stream);
413
- }
414
-
415
- // Don't emit readable right away in sync mode, because this can trigger
416
- // another read() call => stack overflow. This way, it might trigger
417
- // a nextTick recursion warning, but that's not so bad.
418
- function emitReadable(stream) {
419
- var state = stream._readableState;
420
- state.needReadable = false;
421
- if (!state.emittedReadable) {
422
- debug('emitReadable', state.flowing);
423
- state.emittedReadable = true;
424
- if (state.sync) processNextTick(emitReadable_, stream);else emitReadable_(stream);
425
- }
426
- }
427
-
428
- function emitReadable_(stream) {
429
- debug('emit readable');
430
- stream.emit('readable');
431
- flow(stream);
432
- }
433
-
434
- // at this point, the user has presumably seen the 'readable' event,
435
- // and called read() to consume some data. that may have triggered
436
- // in turn another _read(n) call, in which case reading = true if
437
- // it's in progress.
438
- // However, if we're not ended, or reading, and the length < hwm,
439
- // then go ahead and try to read some more preemptively.
440
- function maybeReadMore(stream, state) {
441
- if (!state.readingMore) {
442
- state.readingMore = true;
443
- processNextTick(maybeReadMore_, stream, state);
444
- }
445
- }
446
-
447
- function maybeReadMore_(stream, state) {
448
- var len = state.length;
449
- while (!state.reading && !state.flowing && !state.ended && state.length < state.highWaterMark) {
450
- debug('maybeReadMore read 0');
451
- stream.read(0);
452
- if (len === state.length)
453
- // didn't get any data, stop spinning.
454
- break;else len = state.length;
455
- }
456
- state.readingMore = false;
457
- }
458
-
459
- // abstract method. to be overridden in specific implementation classes.
460
- // call cb(er, data) where data is <= n in length.
461
- // for virtual (non-string, non-buffer) streams, "length" is somewhat
462
- // arbitrary, and perhaps not very meaningful.
463
- Readable.prototype._read = function (n) {
464
- this.emit('error', new Error('not implemented'));
465
- };
466
-
467
- Readable.prototype.pipe = function (dest, pipeOpts) {
468
- var src = this;
469
- var state = this._readableState;
470
-
471
- switch (state.pipesCount) {
472
- case 0:
473
- state.pipes = dest;
474
- break;
475
- case 1:
476
- state.pipes = [state.pipes, dest];
477
- break;
478
- default:
479
- state.pipes.push(dest);
480
- break;
481
- }
482
- state.pipesCount += 1;
483
- debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);
484
-
485
- var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;
486
-
487
- var endFn = doEnd ? onend : cleanup;
488
- if (state.endEmitted) processNextTick(endFn);else src.once('end', endFn);
489
-
490
- dest.on('unpipe', onunpipe);
491
- function onunpipe(readable) {
492
- debug('onunpipe');
493
- if (readable === src) {
494
- cleanup();
495
- }
496
- }
497
-
498
- function onend() {
499
- debug('onend');
500
- dest.end();
501
- }
502
-
503
- // when the dest drains, it reduces the awaitDrain counter
504
- // on the source. This would be more elegant with a .once()
505
- // handler in flow(), but adding and removing repeatedly is
506
- // too slow.
507
- var ondrain = pipeOnDrain(src);
508
- dest.on('drain', ondrain);
509
-
510
- var cleanedUp = false;
511
- function cleanup() {
512
- debug('cleanup');
513
- // cleanup event handlers once the pipe is broken
514
- dest.removeListener('close', onclose);
515
- dest.removeListener('finish', onfinish);
516
- dest.removeListener('drain', ondrain);
517
- dest.removeListener('error', onerror);
518
- dest.removeListener('unpipe', onunpipe);
519
- src.removeListener('end', onend);
520
- src.removeListener('end', cleanup);
521
- src.removeListener('data', ondata);
522
-
523
- cleanedUp = true;
524
-
525
- // if the reader is waiting for a drain event from this
526
- // specific writer, then it would cause it to never start
527
- // flowing again.
528
- // So, if this is awaiting a drain, then we just call it now.
529
- // If we don't know, then assume that we are waiting for one.
530
- if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();
531
- }
532
-
533
- // If the user pushes more data while we're writing to dest then we'll end up
534
- // in ondata again. However, we only want to increase awaitDrain once because
535
- // dest will only emit one 'drain' event for the multiple writes.
536
- // => Introduce a guard on increasing awaitDrain.
537
- var increasedAwaitDrain = false;
538
- src.on('data', ondata);
539
- function ondata(chunk) {
540
- debug('ondata');
541
- increasedAwaitDrain = false;
542
- var ret = dest.write(chunk);
543
- if (false === ret && !increasedAwaitDrain) {
544
- // If the user unpiped during `dest.write()`, it is possible
545
- // to get stuck in a permanently paused state if that write
546
- // also returned false.
547
- // => Check whether `dest` is still a piping destination.
548
- if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
549
- debug('false write response, pause', src._readableState.awaitDrain);
550
- src._readableState.awaitDrain++;
551
- increasedAwaitDrain = true;
552
- }
553
- src.pause();
554
- }
555
- }
556
-
557
- // if the dest has an error, then stop piping into it.
558
- // however, don't suppress the throwing behavior for this.
559
- function onerror(er) {
560
- debug('onerror', er);
561
- unpipe();
562
- dest.removeListener('error', onerror);
563
- if (EElistenerCount(dest, 'error') === 0) dest.emit('error', er);
564
- }
565
-
566
- // Make sure our error handler is attached before userland ones.
567
- prependListener(dest, 'error', onerror);
568
-
569
- // Both close and finish should trigger unpipe, but only once.
570
- function onclose() {
571
- dest.removeListener('finish', onfinish);
572
- unpipe();
573
- }
574
- dest.once('close', onclose);
575
- function onfinish() {
576
- debug('onfinish');
577
- dest.removeListener('close', onclose);
578
- unpipe();
579
- }
580
- dest.once('finish', onfinish);
581
-
582
- function unpipe() {
583
- debug('unpipe');
584
- src.unpipe(dest);
585
- }
586
-
587
- // tell the dest that it's being piped to
588
- dest.emit('pipe', src);
589
-
590
- // start the flow if it hasn't been started already.
591
- if (!state.flowing) {
592
- debug('pipe resume');
593
- src.resume();
594
- }
595
-
596
- return dest;
597
- };
598
-
599
- function pipeOnDrain(src) {
600
- return function () {
601
- var state = src._readableState;
602
- debug('pipeOnDrain', state.awaitDrain);
603
- if (state.awaitDrain) state.awaitDrain--;
604
- if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {
605
- state.flowing = true;
606
- flow(src);
607
- }
608
- };
609
- }
610
-
611
- Readable.prototype.unpipe = function (dest) {
612
- var state = this._readableState;
613
-
614
- // if we're not piping anywhere, then do nothing.
615
- if (state.pipesCount === 0) return this;
616
-
617
- // just one destination. most common case.
618
- if (state.pipesCount === 1) {
619
- // passed in one, but it's not the right one.
620
- if (dest && dest !== state.pipes) return this;
621
-
622
- if (!dest) dest = state.pipes;
623
-
624
- // got a match.
625
- state.pipes = null;
626
- state.pipesCount = 0;
627
- state.flowing = false;
628
- if (dest) dest.emit('unpipe', this);
629
- return this;
630
- }
631
-
632
- // slow case. multiple pipe destinations.
633
-
634
- if (!dest) {
635
- // remove all.
636
- var dests = state.pipes;
637
- var len = state.pipesCount;
638
- state.pipes = null;
639
- state.pipesCount = 0;
640
- state.flowing = false;
641
-
642
- for (var _i = 0; _i < len; _i++) {
643
- dests[_i].emit('unpipe', this);
644
- }return this;
645
- }
646
-
647
- // try to find the right one.
648
- var i = indexOf(state.pipes, dest);
649
- if (i === -1) return this;
650
-
651
- state.pipes.splice(i, 1);
652
- state.pipesCount -= 1;
653
- if (state.pipesCount === 1) state.pipes = state.pipes[0];
654
-
655
- dest.emit('unpipe', this);
656
-
657
- return this;
658
- };
659
-
660
- // set up data events if they are asked for
661
- // Ensure readable listeners eventually get something
662
- Readable.prototype.on = function (ev, fn) {
663
- var res = Stream.prototype.on.call(this, ev, fn);
664
-
665
- if (ev === 'data') {
666
- // Start flowing on next tick if stream isn't explicitly paused
667
- if (this._readableState.flowing !== false) this.resume();
668
- } else if (ev === 'readable') {
669
- var state = this._readableState;
670
- if (!state.endEmitted && !state.readableListening) {
671
- state.readableListening = state.needReadable = true;
672
- state.emittedReadable = false;
673
- if (!state.reading) {
674
- processNextTick(nReadingNextTick, this);
675
- } else if (state.length) {
676
- emitReadable(this, state);
677
- }
678
- }
679
- }
680
-
681
- return res;
682
- };
683
- Readable.prototype.addListener = Readable.prototype.on;
684
-
685
- function nReadingNextTick(self) {
686
- debug('readable nexttick read 0');
687
- self.read(0);
688
- }
689
-
690
- // pause() and resume() are remnants of the legacy readable stream API
691
- // If the user uses them, then switch into old mode.
692
- Readable.prototype.resume = function () {
693
- var state = this._readableState;
694
- if (!state.flowing) {
695
- debug('resume');
696
- state.flowing = true;
697
- resume(this, state);
698
- }
699
- return this;
700
- };
701
-
702
- function resume(stream, state) {
703
- if (!state.resumeScheduled) {
704
- state.resumeScheduled = true;
705
- processNextTick(resume_, stream, state);
706
- }
707
- }
708
-
709
- function resume_(stream, state) {
710
- if (!state.reading) {
711
- debug('resume read 0');
712
- stream.read(0);
713
- }
714
-
715
- state.resumeScheduled = false;
716
- state.awaitDrain = 0;
717
- stream.emit('resume');
718
- flow(stream);
719
- if (state.flowing && !state.reading) stream.read(0);
720
- }
721
-
722
- Readable.prototype.pause = function () {
723
- debug('call pause flowing=%j', this._readableState.flowing);
724
- if (false !== this._readableState.flowing) {
725
- debug('pause');
726
- this._readableState.flowing = false;
727
- this.emit('pause');
728
- }
729
- return this;
730
- };
731
-
732
- function flow(stream) {
733
- var state = stream._readableState;
734
- debug('flow', state.flowing);
735
- while (state.flowing && stream.read() !== null) {}
736
- }
737
-
738
- // wrap an old-style stream as the async data source.
739
- // This is *not* part of the readable stream interface.
740
- // It is an ugly unfortunate mess of history.
741
- Readable.prototype.wrap = function (stream) {
742
- var state = this._readableState;
743
- var paused = false;
744
-
745
- var self = this;
746
- stream.on('end', function () {
747
- debug('wrapped end');
748
- if (state.decoder && !state.ended) {
749
- var chunk = state.decoder.end();
750
- if (chunk && chunk.length) self.push(chunk);
751
- }
752
-
753
- self.push(null);
754
- });
755
-
756
- stream.on('data', function (chunk) {
757
- debug('wrapped data');
758
- if (state.decoder) chunk = state.decoder.write(chunk);
759
-
760
- // don't skip over falsy values in objectMode
761
- if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;
762
-
763
- var ret = self.push(chunk);
764
- if (!ret) {
765
- paused = true;
766
- stream.pause();
767
- }
768
- });
769
-
770
- // proxy all the other methods.
771
- // important when wrapping filters and duplexes.
772
- for (var i in stream) {
773
- if (this[i] === undefined && typeof stream[i] === 'function') {
774
- this[i] = function (method) {
775
- return function () {
776
- return stream[method].apply(stream, arguments);
777
- };
778
- }(i);
779
- }
780
- }
781
-
782
- // proxy certain important events.
783
- var events = ['error', 'close', 'destroy', 'pause', 'resume'];
784
- forEach(events, function (ev) {
785
- stream.on(ev, self.emit.bind(self, ev));
786
- });
787
-
788
- // when we try to consume some more bytes, simply unpause the
789
- // underlying stream.
790
- self._read = function (n) {
791
- debug('wrapped _read', n);
792
- if (paused) {
793
- paused = false;
794
- stream.resume();
795
- }
796
- };
797
-
798
- return self;
799
- };
800
-
801
- // exposed for testing purposes only.
802
- Readable._fromList = fromList;
803
-
804
- // Pluck off n bytes from an array of buffers.
805
- // Length is the combined lengths of all the buffers in the list.
806
- // This function is designed to be inlinable, so please take care when making
807
- // changes to the function body.
808
- function fromList(n, state) {
809
- // nothing buffered
810
- if (state.length === 0) return null;
811
-
812
- var ret;
813
- if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {
814
- // read it all, truncate the list
815
- if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.head.data;else ret = state.buffer.concat(state.length);
816
- state.buffer.clear();
817
- } else {
818
- // read part of list
819
- ret = fromListPartial(n, state.buffer, state.decoder);
820
- }
821
-
822
- return ret;
823
- }
824
-
825
- // Extracts only enough buffered data to satisfy the amount requested.
826
- // This function is designed to be inlinable, so please take care when making
827
- // changes to the function body.
828
- function fromListPartial(n, list, hasStrings) {
829
- var ret;
830
- if (n < list.head.data.length) {
831
- // slice is the same for buffers and strings
832
- ret = list.head.data.slice(0, n);
833
- list.head.data = list.head.data.slice(n);
834
- } else if (n === list.head.data.length) {
835
- // first chunk is a perfect match
836
- ret = list.shift();
837
- } else {
838
- // result spans more than one buffer
839
- ret = hasStrings ? copyFromBufferString(n, list) : copyFromBuffer(n, list);
840
- }
841
- return ret;
842
- }
843
-
844
- // Copies a specified amount of characters from the list of buffered data
845
- // chunks.
846
- // This function is designed to be inlinable, so please take care when making
847
- // changes to the function body.
848
- function copyFromBufferString(n, list) {
849
- var p = list.head;
850
- var c = 1;
851
- var ret = p.data;
852
- n -= ret.length;
853
- while (p = p.next) {
854
- var str = p.data;
855
- var nb = n > str.length ? str.length : n;
856
- if (nb === str.length) ret += str;else ret += str.slice(0, n);
857
- n -= nb;
858
- if (n === 0) {
859
- if (nb === str.length) {
860
- ++c;
861
- if (p.next) list.head = p.next;else list.head = list.tail = null;
862
- } else {
863
- list.head = p;
864
- p.data = str.slice(nb);
865
- }
866
- break;
867
- }
868
- ++c;
869
- }
870
- list.length -= c;
871
- return ret;
872
- }
873
-
874
- // Copies a specified amount of bytes from the list of buffered data chunks.
875
- // This function is designed to be inlinable, so please take care when making
876
- // changes to the function body.
877
- function copyFromBuffer(n, list) {
878
- var ret = bufferShim.allocUnsafe(n);
879
- var p = list.head;
880
- var c = 1;
881
- p.data.copy(ret);
882
- n -= p.data.length;
883
- while (p = p.next) {
884
- var buf = p.data;
885
- var nb = n > buf.length ? buf.length : n;
886
- buf.copy(ret, ret.length - n, 0, nb);
887
- n -= nb;
888
- if (n === 0) {
889
- if (nb === buf.length) {
890
- ++c;
891
- if (p.next) list.head = p.next;else list.head = list.tail = null;
892
- } else {
893
- list.head = p;
894
- p.data = buf.slice(nb);
895
- }
896
- break;
897
- }
898
- ++c;
899
- }
900
- list.length -= c;
901
- return ret;
902
- }
903
-
904
- function endReadable(stream) {
905
- var state = stream._readableState;
906
-
907
- // If we get here before consuming all the bytes, then that is a
908
- // bug in node. Should never happen.
909
- if (state.length > 0) throw new Error('"endReadable()" called on non-empty stream');
910
-
911
- if (!state.endEmitted) {
912
- state.ended = true;
913
- processNextTick(endReadableNT, state, stream);
914
- }
915
- }
916
-
917
- function endReadableNT(state, stream) {
918
- // Check that we didn't get one last unshift.
919
- if (!state.endEmitted && state.length === 0) {
920
- state.endEmitted = true;
921
- stream.readable = false;
922
- stream.emit('end');
923
- }
924
- }
925
-
926
- function forEach(xs, f) {
927
- for (var i = 0, l = xs.length; i < l; i++) {
928
- f(xs[i], i);
929
- }
930
- }
931
-
932
- function indexOf(xs, x) {
933
- for (var i = 0, l = xs.length; i < l; i++) {
934
- if (xs[i] === x) return i;
935
- }
936
- return -1;
937
- }