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/lib/6to5/templates/to-array.js
2014-11-23 11:59:18 +11:00

4 lines
75 B
JavaScript

(function (arr) {
return Array.isArray(arr) ? arr : Array.from(arr);
});