UNPKG

dynatrace-cordova-outsystems-plugin

Version:

This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent and the Javascript Bridge. The Mobile Agent will give you all device specific values con

10 lines (8 loc) 216 B
module.exports = function equal(arr1, arr2) { var length = arr1.length if (length !== arr2.length) return false for (var i = 0; i < length; i++) if (arr1[i] !== arr2[i]) return false return true }