]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/object/validate-array-like.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / object / validate-array-like.js
1 'use strict';
2
3 var isArrayLike = require('./is-array-like');
4
5 module.exports = function (obj) {
6         if (isArrayLike(obj)) return obj;
7         throw new TypeError(obj + " is not array-like value");
8 };