UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

6 lines 236 B
// A version of Array.isArray that works better with readonly arrays. export var isArray = Array.isArray; export function isNonEmptyArray(value) { return Array.isArray(value) && value.length > 0; } //# sourceMappingURL=arrays.js.map