UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

11 lines (7 loc) 286 B
var arrayWithHoles = require("./arrayWithHoles"); var iterableToArray = require("./iterableToArray"); var nonIterableRest = require("./nonIterableRest"); function _toArray(arr) { return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest(); } module.exports = _toArray;