formdata-node
Version:
FormData implementation for Node.js. Built over Readable stream and async generators. Can be used to communicate between servers with multipart/form-data format.
20 lines (17 loc) • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* Concap multiple strings into the one
*
* @param {string[]} strings
*
* @return {sting}
*
* @api private
*/
const concat = strings => Array.prototype.join.call(strings, "");
var _default = concat;
exports.default = _default;