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

24 lines (19 loc) 579 B
"use strict"; const { percentDecode } = require("whatwg-url"); const { atob } = require("abab"); exports.stripLeadingAndTrailingASCIIWhitespace = string => { return string.replace(/^[ \t\n\f\r]+/, "").replace(/[ \t\n\f\r]+$/, ""); }; exports.stringPercentDecode = input => { return percentDecode(Buffer.from(input, "utf-8")); }; exports.isomorphicDecode = input => { return input.toString("binary"); }; exports.forgivingBase64Decode = data => { const asString = atob(data); if (asString === null) { return null; } return Buffer.from(asString, "binary"); };