UNPKG

2.38 kBJavaScriptView Raw
1"use strict";
2
3var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
4
5function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
6
7function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
8
9function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
10
11var Transform = require("stream").Transform;
12
13var UploadStream = function (_Transform) {
14 _inherits(UploadStream, _Transform);
15
16 function UploadStream(options) {
17 _classCallCheck(this, UploadStream);
18
19 var _this = _possibleConstructorReturn(this, (UploadStream.__proto__ || Object.getPrototypeOf(UploadStream)).call(this));
20
21 _this.boundary = options.boundary;
22 return _this;
23 }
24
25 _createClass(UploadStream, [{
26 key: "_transform",
27 value: function _transform(data, encoding, next) {
28 var buffer = Buffer.isBuffer(data) ? data : Buffer.from(data, encoding);
29 this.push(buffer);
30 next();
31 }
32 }, {
33 key: "_flush",
34 value: function _flush(next) {
35 this.push(Buffer.from("\r\n", 'ascii'));
36 this.push(Buffer.from("--" + this.boundary + "--", 'ascii'));
37 return next();
38 }
39 }]);
40
41 return UploadStream;
42}(Transform);
43
44module.exports = UploadStream;
\No newline at end of file