export function isCoordinates()

in src/utils.ts [5:11]


export function isCoordinates(array: unknown): array is Coordinates {
  return (
    Array.isArray(array) &&
    typeof array[0] === "number" &&
    typeof array[1] === "number"
  );
}