@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/cjs/index.js
CHANGED
|
@@ -1802,7 +1802,7 @@ var require_buffer = __commonJS({
|
|
|
1802
1802
|
function numberIsNaN(obj) {
|
|
1803
1803
|
return obj !== obj;
|
|
1804
1804
|
}
|
|
1805
|
-
var hexSliceLookupTable = function() {
|
|
1805
|
+
var hexSliceLookupTable = (function() {
|
|
1806
1806
|
const alphabet = "0123456789abcdef";
|
|
1807
1807
|
const table = new Array(256);
|
|
1808
1808
|
for (let i = 0; i < 16; ++i) {
|
|
@@ -1812,7 +1812,7 @@ var require_buffer = __commonJS({
|
|
|
1812
1812
|
}
|
|
1813
1813
|
}
|
|
1814
1814
|
return table;
|
|
1815
|
-
}();
|
|
1815
|
+
})();
|
|
1816
1816
|
function defineBigIntMethod(fn) {
|
|
1817
1817
|
return typeof BigInt === "undefined" ? BufferBigIntNotDefined : fn;
|
|
1818
1818
|
}
|