10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function isArray(value) {
|
|
return Array.isArray(value);
|
|
}
|
|
|
|
exports.isArray = isArray;
|