1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-09-28 14:30:49 +00:00

Avoid Content Security Policy unsafe-eval issue

This commit is contained in:
Michael Mclaughlin 2018-04-26 17:54:17 +01:00
parent 2e75623cc3
commit 903b98877d

View File

@ -4814,8 +4814,7 @@
// Browser.
} else {
if (!globalScope) {
globalScope = typeof self != 'undefined' && self && self.self == self
? self : Function('return this')();
globalScope = typeof self != 'undefined' && self && self.self == self ? self : window;
}
noConflict = globalScope.Decimal;