Skip to content

Commit 88a77b8

Browse files
rbucktonorta
andauthoredDec 18, 2020
Update tslib to support new __spreadArray helper (#133)
* Update tslib to support new __spreadArray helper * Ensure that the modules exports are validated in tests * Adds spreadArray to the module exports Co-authored-by: Orta <git@orta.io>
1 parent cff487d commit 88a77b8

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-8
lines changed
 

‎.github/workflows/CI.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ jobs:
2121
- name: Run tests
2222
run: node ./test/runTests.js
2323

24+
- name: Run tests
25+
run: node ./test/validateModuleExportsMatchCommonJS/index.js
26+
if: matrix.node-version == '14.x'

‎modules/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const {
1414
__read,
1515
__spread,
1616
__spreadArrays,
17+
__spreadArray,
1718
__await,
1819
__asyncGenerator,
1920
__asyncDelegator,
@@ -39,6 +40,7 @@ export {
3940
__read,
4041
__spread,
4142
__spreadArrays,
43+
__spreadArray,
4244
__await,
4345
__asyncGenerator,
4446
__asyncDelegator,

‎test/validateModuleExportsMatchCommonJS/index.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
// When on node 14, it validates that all of the commonjs exports
1+
// This file can only run on node 14+, it validates that all of the commonjs exports
22
// are correctly re-exported for es modules importers.
33

4-
const nodeMajor = Number(process.version.split(".")[0].slice(1))
5-
if (nodeMajor < 14) {
6-
console.log("Skipping because node does not support module exports.")
7-
process.exit(0)
8-
}
9-
104
// ES Modules import via the ./modules folder
115
import * as esTSLib from "../../modules/index.js"
126

‎tslib.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ export declare function __generator(thisArg: any, body: Function): any;
2323
export declare function __exportStar(m: any, o: any): void;
2424
export declare function __values(o: any): any;
2525
export declare function __read(o: any, n?: number): any[];
26+
/** @deprecated since TypeScript 4.2 */
2627
export declare function __spread(...args: any[][]): any[];
28+
/** @deprecated since TypeScript 4.2 */
2729
export declare function __spreadArrays(...args: any[][]): any[];
30+
export declare function __spreadArray(to: any[], from: any[]): any[];
2831
export declare function __await(v: any): any;
2932
export declare function __asyncGenerator(thisArg: any, _arguments: any, generator: Function): any;
3033
export declare function __asyncDelegator(o: any): any;

‎tslib.es6.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -146,19 +146,27 @@ export function __read(o, n) {
146146
return ar;
147147
}
148148

149+
/** @deprecated */
149150
export function __spread() {
150151
for (var ar = [], i = 0; i < arguments.length; i++)
151152
ar = ar.concat(__read(arguments[i]));
152153
return ar;
153154
}
154155

156+
/** @deprecated */
155157
export function __spreadArrays() {
156158
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
157159
for (var r = Array(s), k = 0, i = 0; i < il; i++)
158160
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
159161
r[k] = a[j];
160162
return r;
161-
};
163+
}
164+
165+
export function __spreadArray(to, from) {
166+
for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
167+
to[j] = from[i];
168+
return to;
169+
}
162170

163171
export function __await(v) {
164172
return this instanceof __await ? (this.v = v, this) : new __await(v);

‎tslib.js

+10
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var __values;
2626
var __read;
2727
var __spread;
2828
var __spreadArrays;
29+
var __spreadArray;
2930
var __await;
3031
var __asyncGenerator;
3132
var __asyncDelegator;
@@ -186,12 +187,14 @@ var __createBinding;
186187
return ar;
187188
};
188189

190+
/** @deprecated */
189191
__spread = function () {
190192
for (var ar = [], i = 0; i < arguments.length; i++)
191193
ar = ar.concat(__read(arguments[i]));
192194
return ar;
193195
};
194196

197+
/** @deprecated */
195198
__spreadArrays = function () {
196199
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
197200
for (var r = Array(s), k = 0, i = 0; i < il; i++)
@@ -200,6 +203,12 @@ var __createBinding;
200203
return r;
201204
};
202205

206+
__spreadArray = function (to, from) {
207+
for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
208+
to[j] = from[i];
209+
return to;
210+
};
211+
203212
__await = function (v) {
204213
return this instanceof __await ? (this.v = v, this) : new __await(v);
205214
};
@@ -282,6 +291,7 @@ var __createBinding;
282291
exporter("__read", __read);
283292
exporter("__spread", __spread);
284293
exporter("__spreadArrays", __spreadArrays);
294+
exporter("__spreadArray", __spreadArray);
285295
exporter("__await", __await);
286296
exporter("__asyncGenerator", __asyncGenerator);
287297
exporter("__asyncDelegator", __asyncDelegator);

0 commit comments

Comments
 (0)
Please sign in to comment.