d86a8f5f242b27a19981dd1751ec4ca9985f0c34
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var isArray = Array.isArray;
4
5 module.exports = function (value) {
6         if (isArray(value)) return value;
7         throw new TypeError(value + " is not an array");
8 };