mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
6 lines
202 B
JavaScript
6 lines
202 B
JavaScript
import { isArray } from './isArray.js';
|
|
/** Returns whether the payload is a an array with at least 1 item */
|
|
export function isFullArray(payload) {
|
|
return isArray(payload) && payload.length > 0;
|
|
}
|