mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-09 05:26:33 +00:00
committed by
GitHub
parent
20d2b4f98d
commit
e4f3964f67
6
node_modules/underscore/modules/_setup.js
generated
vendored
6
node_modules/underscore/modules/_setup.js
generated
vendored
@ -1,11 +1,11 @@
|
||||
// Current version.
|
||||
export var VERSION = '1.13.2';
|
||||
export var VERSION = '1.13.4';
|
||||
|
||||
// Establish the root object, `window` (`self`) in the browser, `global`
|
||||
// on the server, or `this` in some virtual machines. We use `self`
|
||||
// instead of `window` for `WebWorker` support.
|
||||
export var root = typeof self == 'object' && self.self === self && self ||
|
||||
typeof global == 'object' && global.global === global && global ||
|
||||
export var root = (typeof self == 'object' && self.self === self && self) ||
|
||||
(typeof global == 'object' && global.global === global && global) ||
|
||||
Function('return this')() ||
|
||||
{};
|
||||
|
||||
|
Reference in New Issue
Block a user