]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/array/to-array.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / array / to-array.js
1 'use strict';
2
3 var from = require('./from')
4
5   , isArray = Array.isArray;
6
7 module.exports = function (arrayLike) {
8         return isArray(arrayLike) ? arrayLike : from(arrayLike);
9 };