mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-26 05:49:24 +00:00
7 lines
243 B
JavaScript
7 lines
243 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
function isNonEmptyArray(value) {
|
||
|
return Array.isArray(value) && value.length > 0;
|
||
|
}
|
||
|
exports.isNonEmptyArray = isNonEmptyArray;
|
||
|
//# sourceMappingURL=arrays.js.map
|