mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2026-03-02 03:49:24 +00:00
Avoid Content Security Policy unsafe-eval issue
This commit is contained in:
@@ -4814,8 +4814,7 @@
|
|||||||
// Browser.
|
// Browser.
|
||||||
} else {
|
} else {
|
||||||
if (!globalScope) {
|
if (!globalScope) {
|
||||||
globalScope = typeof self != 'undefined' && self && self.self == self
|
globalScope = typeof self != 'undefined' && self && self.self == self ? self : window;
|
||||||
? self : Function('return this')();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
noConflict = globalScope.Decimal;
|
noConflict = globalScope.Decimal;
|
||||||
|
|||||||
Reference in New Issue
Block a user