UNPKG

@react-navigation/core

Version:

Core utilities for building navigators

12 lines (11 loc) 313 B
"use strict"; /** * Compare two arrays to check if the first array starts with the second array. */ export function arrayStartsWith(array, start) { if (start.length > array.length) { return false; } return start.every((it, index) => it === array[index]); } //# sourceMappingURL=arrayStartsWith.js.map