mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
// @target: es5
|
|
// @lib: es2015
|
|
// @downlevelIteration: true
|
|
// @noEmitHelpers: true
|
|
|
|
// https://github.com/Microsoft/TypeScript/issues/30653
|
|
function * mergeStringLists(...strings: string[]) {
|
|
for (var str of strings);
|
|
} |