UNPKG

google-map-react

Version:

isomorphic google map react component, allows render react components on the google map

15 lines (14 loc) 326 B
"use strict"; exports.__esModule = true; exports.default = isArraysEqualEps; function isArraysEqualEps(arrayA, arrayB, eps) { if (arrayA && arrayB) { for (var i = 0; i !== arrayA.length; ++i) { if (Math.abs(arrayA[i] - arrayB[i]) > eps) { return false; } } return true; } return false; }