@asgardeo/browser 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1796,7 +1796,7 @@ var require_buffer = __commonJS({
|
|
|
1796
1796
|
function numberIsNaN(obj) {
|
|
1797
1797
|
return obj !== obj;
|
|
1798
1798
|
}
|
|
1799
|
-
var hexSliceLookupTable = function() {
|
|
1799
|
+
var hexSliceLookupTable = (function() {
|
|
1800
1800
|
const alphabet = "0123456789abcdef";
|
|
1801
1801
|
const table = new Array(256);
|
|
1802
1802
|
for (let i = 0; i < 16; ++i) {
|
|
@@ -1806,7 +1806,7 @@ var require_buffer = __commonJS({
|
|
|
1806
1806
|
}
|
|
1807
1807
|
}
|
|
1808
1808
|
return table;
|
|
1809
|
-
}();
|
|
1809
|
+
})();
|
|
1810
1810
|
function defineBigIntMethod(fn) {
|
|
1811
1811
|
return typeof BigInt === "undefined" ? BufferBigIntNotDefined : fn;
|
|
1812
1812
|
}
|