This repository has been archived on 2026-02-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
babel/test/fixtures/transformation/es6-spread/array-literal-multiple/expected.js
2015-01-26 11:48:35 +11:00

5 lines
155 B
JavaScript

"use strict";
var _toArray = function (arr) { return Array.isArray(arr) ? arr : Array.from(arr); };
var a = [b].concat(_toArray(c), [d, e], _toArray(f));