@google/earthengine 1.3.1 → 1.4.1
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/build/browser.js +265 -267
- package/build/ee_api_js.js +621 -621
- package/build/ee_api_js_debug.js +242 -244
- package/build/ee_api_js_npm.js +265 -267
- package/build/main.js +265 -267
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/featureviewtilesource.js +2 -2
package/build/main.js
CHANGED
|
@@ -14,7 +14,6 @@ $jscomp.arrayIterator = function(array) {
|
|
|
14
14
|
$jscomp.ASSUME_ES5 = !1;
|
|
15
15
|
$jscomp.ASSUME_NO_NATIVE_MAP = !1;
|
|
16
16
|
$jscomp.ASSUME_NO_NATIVE_SET = !1;
|
|
17
|
-
$jscomp.SIMPLE_FROUND_POLYFILL = !1;
|
|
18
17
|
$jscomp.ISOLATE_POLYFILLS = !1;
|
|
19
18
|
$jscomp.FORCE_POLYFILL_PROMISE = !1;
|
|
20
19
|
$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
|
|
@@ -130,50 +129,6 @@ $jscomp.iteratorPrototype = function(next) {
|
|
|
130
129
|
};
|
|
131
130
|
return iterator;
|
|
132
131
|
};
|
|
133
|
-
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
134
|
-
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
135
|
-
};
|
|
136
|
-
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
137
|
-
arrayStrings.raw = rawArrayStrings;
|
|
138
|
-
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
139
|
-
return arrayStrings;
|
|
140
|
-
};
|
|
141
|
-
$jscomp.makeIterator = function(iterable) {
|
|
142
|
-
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
143
|
-
if (iteratorFunction) {
|
|
144
|
-
return iteratorFunction.call(iterable);
|
|
145
|
-
}
|
|
146
|
-
if (typeof iterable.length == "number") {
|
|
147
|
-
return $jscomp.arrayIterator(iterable);
|
|
148
|
-
}
|
|
149
|
-
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
150
|
-
};
|
|
151
|
-
$jscomp.arrayFromIterator = function(iterator) {
|
|
152
|
-
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
153
|
-
arr.push(i.value);
|
|
154
|
-
}
|
|
155
|
-
return arr;
|
|
156
|
-
};
|
|
157
|
-
$jscomp.arrayFromIterable = function(iterable) {
|
|
158
|
-
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
159
|
-
};
|
|
160
|
-
$jscomp.owns = function(obj, prop) {
|
|
161
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
162
|
-
};
|
|
163
|
-
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
164
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
165
|
-
var source = arguments[i];
|
|
166
|
-
if (source) {
|
|
167
|
-
for (var key in source) {
|
|
168
|
-
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
return target;
|
|
173
|
-
};
|
|
174
|
-
$jscomp.polyfill("Object.assign", function(orig) {
|
|
175
|
-
return orig || $jscomp.assign;
|
|
176
|
-
}, "es6", "es3");
|
|
177
132
|
$jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
|
|
178
133
|
var ctor = function() {
|
|
179
134
|
};
|
|
@@ -242,6 +197,50 @@ $jscomp.inherits = function(childCtor, parentCtor) {
|
|
|
242
197
|
}
|
|
243
198
|
childCtor.superClass_ = parentCtor.prototype;
|
|
244
199
|
};
|
|
200
|
+
$jscomp.makeIterator = function(iterable) {
|
|
201
|
+
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
202
|
+
if (iteratorFunction) {
|
|
203
|
+
return iteratorFunction.call(iterable);
|
|
204
|
+
}
|
|
205
|
+
if (typeof iterable.length == "number") {
|
|
206
|
+
return $jscomp.arrayIterator(iterable);
|
|
207
|
+
}
|
|
208
|
+
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
209
|
+
};
|
|
210
|
+
$jscomp.arrayFromIterator = function(iterator) {
|
|
211
|
+
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
212
|
+
arr.push(i.value);
|
|
213
|
+
}
|
|
214
|
+
return arr;
|
|
215
|
+
};
|
|
216
|
+
$jscomp.arrayFromIterable = function(iterable) {
|
|
217
|
+
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
218
|
+
};
|
|
219
|
+
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
220
|
+
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
221
|
+
};
|
|
222
|
+
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
223
|
+
arrayStrings.raw = rawArrayStrings;
|
|
224
|
+
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
225
|
+
return arrayStrings;
|
|
226
|
+
};
|
|
227
|
+
$jscomp.owns = function(obj, prop) {
|
|
228
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
229
|
+
};
|
|
230
|
+
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
231
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
232
|
+
var source = arguments[i];
|
|
233
|
+
if (source) {
|
|
234
|
+
for (var key in source) {
|
|
235
|
+
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
return target;
|
|
240
|
+
};
|
|
241
|
+
$jscomp.polyfill("Object.assign", function(orig) {
|
|
242
|
+
return orig || $jscomp.assign;
|
|
243
|
+
}, "es6", "es3");
|
|
245
244
|
$jscomp.generator = {};
|
|
246
245
|
$jscomp.generator.ensureIteratorResultIsObject_ = function(result) {
|
|
247
246
|
if (!(result instanceof Object)) {
|
|
@@ -1255,8 +1254,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1255
1254
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1256
1255
|
};
|
|
1257
1256
|
}, "es8", "es3");
|
|
1258
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable:!1,
|
|
1259
|
-
|
|
1257
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable:!1, GoogFlags__jspb_ignore_implicit_extension_deps__disable:!1, GoogFlags__jspb_readonly_repeated_fields__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1,
|
|
1258
|
+
GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1260
1259
|
/*
|
|
1261
1260
|
|
|
1262
1261
|
Copyright The Closure Library Authors.
|
|
@@ -1681,6 +1680,11 @@ goog.createTrustedTypesPolicy = function(name) {
|
|
|
1681
1680
|
}
|
|
1682
1681
|
return policy;
|
|
1683
1682
|
};
|
|
1683
|
+
goog.CodeLocation = {};
|
|
1684
|
+
goog.callerLocation = function() {
|
|
1685
|
+
var stack;
|
|
1686
|
+
return "";
|
|
1687
|
+
};
|
|
1684
1688
|
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf || function(d, b) {
|
|
1685
1689
|
for (var p in b) {
|
|
1686
1690
|
Object.prototype.hasOwnProperty.call(b, p) && (d[p] = b[p]);
|
|
@@ -2081,6 +2085,12 @@ module$exports$tslib.__disposeResources = function(env) {
|
|
|
2081
2085
|
};
|
|
2082
2086
|
var module$exports$enable_goog_asserts = {}, module$contents$enable_goog_asserts_module = module$contents$enable_goog_asserts_module || {id:"javascript/common/asserts/enable_goog_asserts.closure.js"};
|
|
2083
2087
|
module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
|
|
2088
|
+
var module$exports$common$async$context$propagate = {}, module$contents$common$async$context$propagate_module = module$contents$common$async$context$propagate_module || {id:"javascript/common/async/context/propagate.closure.js"};
|
|
2089
|
+
module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
|
|
2090
|
+
return fn && AsyncContext.Snapshot.wrap(fn);
|
|
2091
|
+
} : function(fn) {
|
|
2092
|
+
return fn;
|
|
2093
|
+
};
|
|
2084
2094
|
var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
|
|
2085
2095
|
module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
|
|
2086
2096
|
};
|
|
@@ -2154,9 +2164,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2154
2164
|
};
|
|
2155
2165
|
var module$contents$eeapiclient$domain_object_CopyValueGetter, module$contents$eeapiclient$domain_object_CopyValueSetter, module$contents$eeapiclient$domain_object_CopyConstructor, module$contents$eeapiclient$domain_object_CopyInstanciator;
|
|
2156
2166
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2157
|
-
for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$
|
|
2158
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2159
|
-
var key = $jscomp$key$
|
|
2167
|
+
for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$m192531680$40$key = $jscomp$iter$19.next(), $jscomp$loop$m192531680$44 = {}; !$jscomp$key$m192531680$40$key.done; $jscomp$loop$m192531680$44 =
|
|
2168
|
+
{mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
|
|
2169
|
+
var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
|
|
2160
2170
|
if (value != null) {
|
|
2161
2171
|
var copy = void 0;
|
|
2162
2172
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2167,11 +2177,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2167
2177
|
} else if (objects.hasOwnProperty(key)) {
|
|
2168
2178
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2169
2179
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2170
|
-
$jscomp$loop$
|
|
2180
|
+
$jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
|
|
2171
2181
|
return function(v) {
|
|
2172
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2182
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2173
2183
|
};
|
|
2174
|
-
}($jscomp$loop$
|
|
2184
|
+
}($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2175
2185
|
} else if (Array.isArray(value)) {
|
|
2176
2186
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2177
2187
|
continue;
|
|
@@ -2186,8 +2196,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2186
2196
|
return target;
|
|
2187
2197
|
}
|
|
2188
2198
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2189
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2190
|
-
var mapKey = $jscomp$key$
|
|
2199
|
+
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next(); !$jscomp$key$m192531680$41$mapKey.done; $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next()) {
|
|
2200
|
+
var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
|
|
2191
2201
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2192
2202
|
}
|
|
2193
2203
|
return objMap;
|
|
@@ -2217,39 +2227,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2217
2227
|
if (!(module$contents$eeapiclient$domain_object_sameKeys(keys1, metadata2.keys || []) && module$contents$eeapiclient$domain_object_sameKeys(arrays1, arrays2) && module$contents$eeapiclient$domain_object_sameKeys(objects1, objects2) && module$contents$eeapiclient$domain_object_sameKeys(objectMaps1, objectMaps2))) {
|
|
2218
2228
|
return !1;
|
|
2219
2229
|
}
|
|
2220
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2221
|
-
var key = $jscomp$key$
|
|
2230
|
+
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$m192531680$42$key = $jscomp$iter$21.next(), $jscomp$loop$m192531680$45 = {}; !$jscomp$key$m192531680$42$key.done; $jscomp$loop$m192531680$45 = {value2$jscomp$7:void 0, mapMetadata$jscomp$2:void 0}, $jscomp$key$m192531680$42$key = $jscomp$iter$21.next()) {
|
|
2231
|
+
var key = $jscomp$key$m192531680$42$key.value, has1 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable1, key, metadata1), has2 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable2, key, metadata2);
|
|
2222
2232
|
if (has1 !== has2) {
|
|
2223
2233
|
return !1;
|
|
2224
2234
|
}
|
|
2225
2235
|
if (has1) {
|
|
2226
2236
|
var value1 = serializable1.Serializable$get(key);
|
|
2227
|
-
$jscomp$loop$
|
|
2237
|
+
$jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2228
2238
|
if (arrays1.hasOwnProperty(key)) {
|
|
2229
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2239
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
|
|
2230
2240
|
return !1;
|
|
2231
2241
|
}
|
|
2232
2242
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2233
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2243
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
|
|
2234
2244
|
return !1;
|
|
2235
2245
|
}
|
|
2236
2246
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2237
|
-
if ($jscomp$loop$
|
|
2238
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2247
|
+
if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2248
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
|
|
2239
2249
|
return function(v1, i) {
|
|
2240
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2250
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
|
|
2241
2251
|
};
|
|
2242
|
-
}($jscomp$loop$
|
|
2252
|
+
}($jscomp$loop$m192531680$45))) {
|
|
2243
2253
|
return !1;
|
|
2244
2254
|
}
|
|
2245
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2255
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
|
|
2246
2256
|
return !1;
|
|
2247
2257
|
}
|
|
2248
2258
|
} else if (Array.isArray(value1)) {
|
|
2249
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2259
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
|
|
2250
2260
|
return !1;
|
|
2251
2261
|
}
|
|
2252
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2262
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
|
|
2253
2263
|
return !1;
|
|
2254
2264
|
}
|
|
2255
2265
|
}
|
|
@@ -2271,8 +2281,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2271
2281
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2272
2282
|
return !1;
|
|
2273
2283
|
}
|
|
2274
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2275
|
-
var mapKey = $jscomp$key$
|
|
2284
|
+
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next(); !$jscomp$key$m192531680$43$mapKey.done; $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next()) {
|
|
2285
|
+
var mapKey = $jscomp$key$m192531680$43$mapKey.value;
|
|
2276
2286
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2277
2287
|
return !1;
|
|
2278
2288
|
}
|
|
@@ -2353,15 +2363,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2353
2363
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2354
2364
|
};
|
|
2355
2365
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2356
|
-
var $jscomp$this$
|
|
2366
|
+
var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2357
2367
|
payload += this._metadataPayload;
|
|
2358
2368
|
return Promise.all(this.files.map(function(f) {
|
|
2359
|
-
return $jscomp$this$
|
|
2369
|
+
return $jscomp$this$m667091202$6.encodeFile(f);
|
|
2360
2370
|
})).then(function(filePayloads) {
|
|
2361
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2362
|
-
payload += $jscomp$key$
|
|
2371
|
+
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next(); !$jscomp$key$m667091202$9$filePayload.done; $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next()) {
|
|
2372
|
+
payload += $jscomp$key$m667091202$9$filePayload.value;
|
|
2363
2373
|
}
|
|
2364
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2374
|
+
return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
|
|
2365
2375
|
});
|
|
2366
2376
|
};
|
|
2367
2377
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2866,8 +2876,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2866
2876
|
throw Error(message);
|
|
2867
2877
|
}
|
|
2868
2878
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2869
|
-
var $jscomp$templatelit$
|
|
2870
|
-
["\\0"]), $jscomp$templatelit$
|
|
2879
|
+
var $jscomp$templatelit$1274514361$5 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$6 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\0"]), $jscomp$templatelit$1274514361$7 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$8 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), $jscomp$templatelit$1274514361$9 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$10 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"],
|
|
2880
|
+
["\\0"]), $jscomp$templatelit$1274514361$11 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$12 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), module$contents$safevalues$internals$string_literal_module = module$contents$safevalues$internals$string_literal_module || {id:"third_party/javascript/safevalues/internals/string_literal.closure.js"};
|
|
2871
2881
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2872
2882
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2873
2883
|
throw new TypeError("\n ############################## ERROR ##############################\n\n It looks like you are trying to call a template tag function (fn`...`)\n using the normal function syntax (fn(...)), which is not supported.\n\n The functions in the safevalues library are not designed to be called\n like normal functions, and doing so invalidates the security guarantees\n that safevalues provides.\n\n If you are stuck and not sure how to proceed, please reach out to us\n instead through:\n - go/ise-hardening-yaqs (preferred) // LINE-INTERNAL\n - g/ise-hardening // LINE-INTERNAL\n - https://github.com/google/safevalues/issues\n\n ############################## ERROR ##############################");
|
|
@@ -2881,14 +2891,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
2881
2891
|
return fn.toString().indexOf("`") === -1;
|
|
2882
2892
|
}
|
|
2883
2893
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2884
|
-
return tag($jscomp$templatelit$
|
|
2894
|
+
return tag($jscomp$templatelit$1274514361$5);
|
|
2885
2895
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2886
|
-
return tag($jscomp$templatelit$
|
|
2896
|
+
return tag($jscomp$templatelit$1274514361$6);
|
|
2887
2897
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2888
|
-
return tag($jscomp$templatelit$
|
|
2898
|
+
return tag($jscomp$templatelit$1274514361$7);
|
|
2889
2899
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2890
|
-
return tag($jscomp$templatelit$
|
|
2891
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
2900
|
+
return tag($jscomp$templatelit$1274514361$8);
|
|
2901
|
+
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$9) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$10) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$11) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$12);
|
|
2892
2902
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
2893
2903
|
return Array.isArray(templateObj) && Array.isArray(templateObj.raw) && templateObj.length === templateObj.raw.length && (module$contents$safevalues$internals$string_literal_isTranspiled || templateObj !== templateObj.raw) && (module$contents$safevalues$internals$string_literal_isTranspiled && !module$contents$safevalues$internals$string_literal_frozenTSA || module$contents$safevalues$internals$string_literal_checkFrozen(templateObj)) ?
|
|
2894
2904
|
!0 : !1;
|
|
@@ -3110,16 +3120,16 @@ module$exports$safevalues$dom$elements$anchor.setHref = function(anchor, url) {
|
|
|
3110
3120
|
module$exports$safevalues$dom$elements$anchor.setHrefLite = function(anchor, url) {
|
|
3111
3121
|
module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (anchor.href = url);
|
|
3112
3122
|
};
|
|
3113
|
-
var module$
|
|
3114
|
-
module$
|
|
3123
|
+
var module$contents$safevalues$dom$elements$area_module = module$contents$safevalues$dom$elements$area_module || {id:"third_party/javascript/safevalues/dom/elements/area.closure.js"};
|
|
3124
|
+
function module$contents$safevalues$dom$elements$area_setHref(area, url) {
|
|
3115
3125
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3116
3126
|
sanitizedUrl !== void 0 && (area.href = sanitizedUrl);
|
|
3117
|
-
}
|
|
3118
|
-
var module$
|
|
3119
|
-
module$
|
|
3127
|
+
}
|
|
3128
|
+
;var module$contents$safevalues$dom$elements$base_module = module$contents$safevalues$dom$elements$base_module || {id:"third_party/javascript/safevalues/dom/elements/base.closure.js"};
|
|
3129
|
+
function module$contents$safevalues$dom$elements$base_setHref(baseEl, url) {
|
|
3120
3130
|
baseEl.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3121
|
-
}
|
|
3122
|
-
var module$exports$safevalues$dom$elements$button = {}, module$contents$safevalues$dom$elements$button_module = module$contents$safevalues$dom$elements$button_module || {id:"third_party/javascript/safevalues/dom/elements/button.closure.js"};
|
|
3131
|
+
}
|
|
3132
|
+
;var module$exports$safevalues$dom$elements$button = {}, module$contents$safevalues$dom$elements$button_module = module$contents$safevalues$dom$elements$button_module || {id:"third_party/javascript/safevalues/dom/elements/button.closure.js"};
|
|
3123
3133
|
module$exports$safevalues$dom$elements$button.setFormaction = function(button, url) {
|
|
3124
3134
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3125
3135
|
sanitizedUrl !== void 0 && (button.formAction = sanitizedUrl);
|
|
@@ -3244,11 +3254,11 @@ function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(el
|
|
|
3244
3254
|
function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
|
|
3245
3255
|
return elOrRoot.nodeType === 1;
|
|
3246
3256
|
}
|
|
3247
|
-
;var module$
|
|
3248
|
-
module$
|
|
3257
|
+
;var module$contents$safevalues$dom$elements$embed_module = module$contents$safevalues$dom$elements$embed_module || {id:"third_party/javascript/safevalues/dom/elements/embed.closure.js"};
|
|
3258
|
+
function module$contents$safevalues$dom$elements$embed_setSrc(embedEl, url) {
|
|
3249
3259
|
embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3250
|
-
}
|
|
3251
|
-
var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
|
|
3260
|
+
}
|
|
3261
|
+
;var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
|
|
3252
3262
|
module$exports$safevalues$dom$elements$form.setAction = function(form, url) {
|
|
3253
3263
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3254
3264
|
sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
|
|
@@ -3290,9 +3300,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3290
3300
|
}
|
|
3291
3301
|
}
|
|
3292
3302
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError = function(type, intent) {
|
|
3293
|
-
var $jscomp$tmp$error$
|
|
3294
|
-
this.message = $jscomp$tmp$error$
|
|
3295
|
-
"stack" in $jscomp$tmp$error$
|
|
3303
|
+
var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
|
|
3304
|
+
this.message = $jscomp$tmp$error$240424914$1.message;
|
|
3305
|
+
"stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
|
|
3296
3306
|
this.type = type;
|
|
3297
3307
|
this.intent = intent;
|
|
3298
3308
|
this.name = "TypeCannotBeUsedWithIntentError";
|
|
@@ -3400,7 +3410,7 @@ module$exports$safevalues$dom$globals$window.getStyleNonce = function(documentOr
|
|
|
3400
3410
|
};
|
|
3401
3411
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, documentOrWindow) {
|
|
3402
3412
|
documentOrWindow = documentOrWindow === void 0 ? document : documentOrWindow;
|
|
3403
|
-
var $jscomp$optchain$
|
|
3413
|
+
var $jscomp$optchain$tmp220578679$0, $jscomp$optchain$tmp220578679$1, el = ($jscomp$optchain$tmp220578679$1 = ($jscomp$optchain$tmp220578679$0 = "document" in documentOrWindow ? documentOrWindow.document : documentOrWindow).querySelector) == null ? void 0 : $jscomp$optchain$tmp220578679$1.call($jscomp$optchain$tmp220578679$0, elementName + "[nonce]");
|
|
3404
3414
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3405
3415
|
}
|
|
3406
3416
|
;var module$exports$safevalues$internals$script_impl = {}, module$contents$safevalues$internals$script_impl_module = module$contents$safevalues$internals$script_impl_module || {id:"third_party/javascript/safevalues/internals/script_impl.closure.js"};
|
|
@@ -3479,8 +3489,8 @@ var module$exports$safevalues$dom$elements$style = {}, module$contents$safevalue
|
|
|
3479
3489
|
module$exports$safevalues$dom$elements$style.setTextContent = function(elem, safeStyleSheet) {
|
|
3480
3490
|
elem.textContent = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet(safeStyleSheet);
|
|
3481
3491
|
};
|
|
3482
|
-
var module$
|
|
3483
|
-
module$
|
|
3492
|
+
var module$contents$safevalues$dom$elements$svg_module = module$contents$safevalues$dom$elements$svg_module || {id:"third_party/javascript/safevalues/dom/elements/svg.closure.js"}, module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES = ["href", "xlink:href"];
|
|
3493
|
+
function module$contents$safevalues$dom$elements$svg_setAttribute(svg, attr, value) {
|
|
3484
3494
|
var attrLower = attr.toLowerCase();
|
|
3485
3495
|
if (module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES.indexOf(attrLower) !== -1 || attrLower.indexOf("on") === 0) {
|
|
3486
3496
|
var msg = "";
|
|
@@ -3488,8 +3498,8 @@ module$exports$safevalues$dom$elements$svg.setAttribute = function(svg, attr, va
|
|
|
3488
3498
|
throw Error(msg);
|
|
3489
3499
|
}
|
|
3490
3500
|
svg.setAttribute(attr, value);
|
|
3491
|
-
}
|
|
3492
|
-
goog.debug = {};
|
|
3501
|
+
}
|
|
3502
|
+
;goog.debug = {};
|
|
3493
3503
|
function module$contents$goog$debug$Error_DebugError(msg, cause) {
|
|
3494
3504
|
if (Error.captureStackTrace) {
|
|
3495
3505
|
Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
|
|
@@ -4634,8 +4644,8 @@ goog.log.info = function(logger, msg, exception) {
|
|
|
4634
4644
|
goog.log.fine = function(logger, msg, exception) {
|
|
4635
4645
|
goog.log.ENABLED && logger && goog.log.log(logger, goog.log.Level.FINE, msg, exception);
|
|
4636
4646
|
};
|
|
4637
|
-
var module$
|
|
4638
|
-
module$
|
|
4647
|
+
var module$contents$safevalues$dom$elements$svg_use_module = module$contents$safevalues$dom$elements$svg_use_module || {id:"third_party/javascript/safevalues/dom/elements/svg_use.closure.js"};
|
|
4648
|
+
function module$contents$safevalues$dom$elements$svg_use_setHref(useEl, url) {
|
|
4639
4649
|
var scheme = module$contents$safevalues$builders$url_builders_extractScheme(url);
|
|
4640
4650
|
if (scheme === "javascript:" || scheme === "data:") {
|
|
4641
4651
|
if (goog.DEBUG) {
|
|
@@ -4645,20 +4655,23 @@ module$exports$safevalues$dom$elements$svg_use.setHref = function(useEl, url) {
|
|
|
4645
4655
|
} else {
|
|
4646
4656
|
useEl.setAttribute("href", url);
|
|
4647
4657
|
}
|
|
4648
|
-
}
|
|
4649
|
-
var module$exports$safevalues$dom$globals$document = {}, module$contents$safevalues$dom$globals$document_module = module$contents$safevalues$dom$globals$document_module || {id:"third_party/javascript/safevalues/dom/globals/document.closure.js"};
|
|
4650
|
-
module$
|
|
4658
|
+
}
|
|
4659
|
+
;var module$exports$safevalues$dom$globals$document = {}, module$contents$safevalues$dom$globals$document_module = module$contents$safevalues$dom$globals$document_module || {id:"third_party/javascript/safevalues/dom/globals/document.closure.js"};
|
|
4660
|
+
function module$contents$safevalues$dom$globals$document_write(doc, text) {
|
|
4651
4661
|
doc.write((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(text));
|
|
4652
|
-
}
|
|
4662
|
+
}
|
|
4663
|
+
module$exports$safevalues$dom$globals$document.write = module$contents$safevalues$dom$globals$document_write;
|
|
4653
4664
|
var module$contents$safevalues$dom$globals$document_ValueType;
|
|
4654
|
-
module$
|
|
4665
|
+
function module$contents$safevalues$dom$globals$document_execCommand(doc, command, value) {
|
|
4655
4666
|
var commandString = String(command), valueArgument = value;
|
|
4656
4667
|
commandString.toLowerCase() === "inserthtml" && (valueArgument = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(value));
|
|
4657
4668
|
return doc.execCommand(commandString, !1, valueArgument);
|
|
4658
|
-
}
|
|
4659
|
-
module$exports$safevalues$dom$globals$document.
|
|
4669
|
+
}
|
|
4670
|
+
module$exports$safevalues$dom$globals$document.execCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4671
|
+
function module$contents$safevalues$dom$globals$document_execCommandInsertHtml(doc, html) {
|
|
4660
4672
|
return doc.execCommand("insertHTML", !1, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4661
|
-
}
|
|
4673
|
+
}
|
|
4674
|
+
module$exports$safevalues$dom$globals$document.execCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4662
4675
|
var module$exports$safevalues$dom$globals$dom_parser = {}, module$contents$safevalues$dom$globals$dom_parser_module = module$contents$safevalues$dom$globals$dom_parser_module || {id:"third_party/javascript/safevalues/dom/globals/dom_parser.closure.js"};
|
|
4663
4676
|
module$exports$safevalues$dom$globals$dom_parser.parseHtml = function(parser, html) {
|
|
4664
4677
|
return module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, html, "text/html");
|
|
@@ -4683,9 +4696,9 @@ function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parse
|
|
|
4683
4696
|
module$exports$safevalues$dom$globals$dom_parser.parseFromString = module$contents$safevalues$dom$globals$dom_parser_parseFromString;
|
|
4684
4697
|
var module$exports$safevalues$dom$globals$fetch = {}, module$contents$safevalues$dom$globals$fetch_module = module$contents$safevalues$dom$globals$fetch_module || {id:"third_party/javascript/safevalues/dom/globals/fetch.closure.js"};
|
|
4685
4698
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4686
|
-
var $jscomp$tmp$error$
|
|
4687
|
-
this.message = $jscomp$tmp$error$
|
|
4688
|
-
"stack" in $jscomp$tmp$error$
|
|
4699
|
+
var $jscomp$tmp$error$m991617773$25 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
|
|
4700
|
+
this.message = $jscomp$tmp$error$m991617773$25.message;
|
|
4701
|
+
"stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
|
|
4689
4702
|
this.url = url;
|
|
4690
4703
|
this.typeName = typeName;
|
|
4691
4704
|
this.contentType = contentType;
|
|
@@ -4697,48 +4710,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4697
4710
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4698
4711
|
}
|
|
4699
4712
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4700
|
-
var response, $jscomp$optchain$
|
|
4701
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4702
|
-
if ($jscomp$generator$context$
|
|
4703
|
-
return $jscomp$generator$context$
|
|
4704
|
-
}
|
|
4705
|
-
response = $jscomp$generator$context$
|
|
4706
|
-
mimeType = ($jscomp$optchain$
|
|
4707
|
-
return $jscomp$generator$context$
|
|
4713
|
+
var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
|
|
4714
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
|
|
4715
|
+
if ($jscomp$generator$context$m991617773$29.nextAddress == 1) {
|
|
4716
|
+
return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4717
|
+
}
|
|
4718
|
+
response = $jscomp$generator$context$m991617773$29.yieldResult;
|
|
4719
|
+
mimeType = ($jscomp$optchain$tmpm991617773$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmpm991617773$1 = $jscomp$optchain$tmpm991617773$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmpm991617773$2 = $jscomp$optchain$tmpm991617773$1[0]) == null ? void 0 : $jscomp$optchain$tmpm991617773$2.toLowerCase();
|
|
4720
|
+
return $jscomp$generator$context$m991617773$29.return({html:function() {
|
|
4708
4721
|
var text;
|
|
4709
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4710
|
-
if ($jscomp$generator$context$
|
|
4722
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
|
|
4723
|
+
if ($jscomp$generator$context$m991617773$26.nextAddress == 1) {
|
|
4711
4724
|
if (mimeType !== "text/html") {
|
|
4712
4725
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4713
4726
|
}
|
|
4714
|
-
return $jscomp$generator$context$
|
|
4727
|
+
return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
|
|
4715
4728
|
}
|
|
4716
|
-
text = $jscomp$generator$context$
|
|
4717
|
-
return $jscomp$generator$context$
|
|
4729
|
+
text = $jscomp$generator$context$m991617773$26.yieldResult;
|
|
4730
|
+
return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4718
4731
|
});
|
|
4719
4732
|
}, script:function() {
|
|
4720
4733
|
var text;
|
|
4721
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4722
|
-
if ($jscomp$generator$context$
|
|
4734
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
|
|
4735
|
+
if ($jscomp$generator$context$m991617773$27.nextAddress == 1) {
|
|
4723
4736
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4724
4737
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4725
4738
|
}
|
|
4726
|
-
return $jscomp$generator$context$
|
|
4739
|
+
return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
|
|
4727
4740
|
}
|
|
4728
|
-
text = $jscomp$generator$context$
|
|
4729
|
-
return $jscomp$generator$context$
|
|
4741
|
+
text = $jscomp$generator$context$m991617773$27.yieldResult;
|
|
4742
|
+
return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4730
4743
|
});
|
|
4731
4744
|
}, styleSheet:function() {
|
|
4732
4745
|
var text;
|
|
4733
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4734
|
-
if ($jscomp$generator$context$
|
|
4746
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
|
|
4747
|
+
if ($jscomp$generator$context$m991617773$28.nextAddress == 1) {
|
|
4735
4748
|
if (mimeType !== "text/css") {
|
|
4736
4749
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4737
4750
|
}
|
|
4738
|
-
return $jscomp$generator$context$
|
|
4751
|
+
return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
|
|
4739
4752
|
}
|
|
4740
|
-
text = $jscomp$generator$context$
|
|
4741
|
-
return $jscomp$generator$context$
|
|
4753
|
+
text = $jscomp$generator$context$m991617773$28.yieldResult;
|
|
4754
|
+
return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4742
4755
|
});
|
|
4743
4756
|
}});
|
|
4744
4757
|
});
|
|
@@ -4746,11 +4759,12 @@ function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init)
|
|
|
4746
4759
|
module$exports$safevalues$dom$globals$fetch.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4747
4760
|
var module$exports$safevalues$dom$globals$global = {}, module$contents$safevalues$dom$globals$global_module = module$contents$safevalues$dom$globals$global_module || {id:"third_party/javascript/safevalues/dom/globals/global.closure.js"};
|
|
4748
4761
|
module$exports$safevalues$dom$globals$global.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4749
|
-
module$
|
|
4762
|
+
function module$contents$safevalues$dom$globals$global_globalEval(win, script) {
|
|
4750
4763
|
var trustedScript = module$contents$safevalues$internals$script_impl_unwrapScript(script), result = win.eval(trustedScript);
|
|
4751
4764
|
result === trustedScript && (result = win.eval(trustedScript.toString()));
|
|
4752
4765
|
return result;
|
|
4753
|
-
}
|
|
4766
|
+
}
|
|
4767
|
+
module$exports$safevalues$dom$globals$global.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4754
4768
|
var module$exports$safevalues$dom$globals$location = {}, module$contents$safevalues$dom$globals$location_module = module$contents$safevalues$dom$globals$location_module || {id:"third_party/javascript/safevalues/dom/globals/location.closure.js"};
|
|
4755
4769
|
module$exports$safevalues$dom$globals$location.setHref = function(loc, url) {
|
|
4756
4770
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
@@ -4771,11 +4785,11 @@ module$exports$safevalues$dom$globals$location.mockableLocation = {setHref:funct
|
|
|
4771
4785
|
}, assign:function(loc, url) {
|
|
4772
4786
|
loc.assign(url);
|
|
4773
4787
|
}};
|
|
4774
|
-
var module$
|
|
4775
|
-
module$
|
|
4788
|
+
var module$contents$safevalues$dom$globals$range_module = module$contents$safevalues$dom$globals$range_module || {id:"third_party/javascript/safevalues/dom/globals/range.closure.js"};
|
|
4789
|
+
function module$contents$safevalues$dom$globals$range_createContextualFragment(range, html) {
|
|
4776
4790
|
return range.createContextualFragment((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4777
|
-
}
|
|
4778
|
-
var module$exports$safevalues$dom$globals$service_worker_container = {}, module$contents$safevalues$dom$globals$service_worker_container_module = module$contents$safevalues$dom$globals$service_worker_container_module || {id:"third_party/javascript/safevalues/dom/globals/service_worker_container.closure.js"};
|
|
4791
|
+
}
|
|
4792
|
+
;var module$exports$safevalues$dom$globals$service_worker_container = {}, module$contents$safevalues$dom$globals$service_worker_container_module = module$contents$safevalues$dom$globals$service_worker_container_module || {id:"third_party/javascript/safevalues/dom/globals/service_worker_container.closure.js"};
|
|
4779
4793
|
module$exports$safevalues$dom$globals$service_worker_container.register = function(container, scriptURL, options) {
|
|
4780
4794
|
return container.register(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(scriptURL), options);
|
|
4781
4795
|
};
|
|
@@ -4799,11 +4813,8 @@ module$exports$safevalues$dom$globals$worker.importScripts = function(scope) {
|
|
|
4799
4813
|
};
|
|
4800
4814
|
var module$exports$safevalues$dom$index = {}, module$contents$safevalues$dom$index_module = module$contents$safevalues$dom$index_module || {id:"third_party/javascript/safevalues/dom/index.closure.js"};
|
|
4801
4815
|
module$exports$safevalues$dom$index.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4802
|
-
module$exports$safevalues$dom$index.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4803
|
-
module$exports$safevalues$dom$index.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4804
4816
|
module$exports$safevalues$dom$index.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4805
4817
|
module$exports$safevalues$dom$index.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4806
|
-
module$exports$safevalues$dom$index.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4807
4818
|
module$exports$safevalues$dom$index.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4808
4819
|
module$exports$safevalues$dom$index.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4809
4820
|
module$exports$safevalues$dom$index.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
@@ -4811,21 +4822,16 @@ module$exports$safevalues$dom$index.safeLinkEl = module$exports$safevalues$dom$e
|
|
|
4811
4822
|
module$exports$safevalues$dom$index.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4812
4823
|
module$exports$safevalues$dom$index.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4813
4824
|
module$exports$safevalues$dom$index.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4814
|
-
module$exports$safevalues$dom$index.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4815
|
-
module$exports$safevalues$dom$index.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4816
|
-
module$exports$safevalues$dom$index.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4817
4825
|
module$exports$safevalues$dom$index.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4818
|
-
module$exports$safevalues$dom$index.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4819
4826
|
module$exports$safevalues$dom$index.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4820
|
-
module$exports$safevalues$dom$index.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4821
4827
|
module$exports$safevalues$dom$index.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4822
4828
|
module$exports$safevalues$dom$index.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4823
4829
|
module$exports$safevalues$dom$index.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4824
4830
|
module$exports$safevalues$dom$index.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4825
4831
|
module$exports$safevalues$dom$index.setAnchorHref = module$exports$safevalues$dom$elements$anchor.setHref;
|
|
4826
4832
|
module$exports$safevalues$dom$index.setAnchorHrefLite = module$exports$safevalues$dom$elements$anchor.setHrefLite;
|
|
4827
|
-
module$exports$safevalues$dom$index.setAreaHref = module$
|
|
4828
|
-
module$exports$safevalues$dom$index.setBaseHref = module$
|
|
4833
|
+
module$exports$safevalues$dom$index.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4834
|
+
module$exports$safevalues$dom$index.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4829
4835
|
module$exports$safevalues$dom$index.setButtonFormaction = module$exports$safevalues$dom$elements$button.setFormaction;
|
|
4830
4836
|
module$exports$safevalues$dom$index.buildPrefixedAttributeSetter = module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter;
|
|
4831
4837
|
module$exports$safevalues$dom$index.elementInsertAdjacentHtml = module$exports$safevalues$dom$elements$element.insertAdjacentHtml;
|
|
@@ -4833,8 +4839,9 @@ module$exports$safevalues$dom$index.setElementCssText = module$exports$safevalue
|
|
|
4833
4839
|
module$exports$safevalues$dom$index.setElementInnerHtml = module$exports$safevalues$dom$elements$element.setInnerHtml;
|
|
4834
4840
|
module$exports$safevalues$dom$index.setElementOuterHtml = module$exports$safevalues$dom$elements$element.setOuterHtml;
|
|
4835
4841
|
module$exports$safevalues$dom$index.setElementPrefixedAttribute = module$exports$safevalues$dom$elements$element.setPrefixedAttribute;
|
|
4836
|
-
module$exports$safevalues$dom$index.setEmbedSrc = module$
|
|
4842
|
+
module$exports$safevalues$dom$index.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4837
4843
|
module$exports$safevalues$dom$index.setFormAction = module$exports$safevalues$dom$elements$form.setAction;
|
|
4844
|
+
module$exports$safevalues$dom$index.setFormActionLite = module$exports$safevalues$dom$elements$form.setActionLite;
|
|
4838
4845
|
module$exports$safevalues$dom$index.IframeIntent = module$exports$safevalues$dom$elements$iframe.Intent;
|
|
4839
4846
|
module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError;
|
|
4840
4847
|
module$exports$safevalues$dom$index.setIframeSrc = module$exports$safevalues$dom$elements$iframe.setSrc;
|
|
@@ -4848,20 +4855,20 @@ module$exports$safevalues$dom$index.setObjectData = module$exports$safevalues$do
|
|
|
4848
4855
|
module$exports$safevalues$dom$index.setScriptSrc = module$exports$safevalues$dom$elements$script.setSrc;
|
|
4849
4856
|
module$exports$safevalues$dom$index.setScriptTextContent = module$exports$safevalues$dom$elements$script.setTextContent;
|
|
4850
4857
|
module$exports$safevalues$dom$index.setStyleTextContent = module$exports$safevalues$dom$elements$style.setTextContent;
|
|
4851
|
-
module$exports$safevalues$dom$index.setSvgAttribute = module$
|
|
4852
|
-
module$exports$safevalues$dom$index.setSvgUseHref = module$
|
|
4853
|
-
module$exports$safevalues$dom$index.documentExecCommand = module$
|
|
4854
|
-
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$
|
|
4855
|
-
module$exports$safevalues$dom$index.documentWrite = module$
|
|
4858
|
+
module$exports$safevalues$dom$index.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4859
|
+
module$exports$safevalues$dom$index.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4860
|
+
module$exports$safevalues$dom$index.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4861
|
+
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4862
|
+
module$exports$safevalues$dom$index.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4856
4863
|
module$exports$safevalues$dom$index.domParserParseFromString = module$exports$safevalues$dom$globals$dom_parser.parseFromString;
|
|
4857
4864
|
module$exports$safevalues$dom$index.domParserParseHtml = module$exports$safevalues$dom$globals$dom_parser.parseHtml;
|
|
4858
4865
|
module$exports$safevalues$dom$index.domParserParseXml = module$exports$safevalues$dom$globals$dom_parser.parseXml;
|
|
4859
|
-
module$exports$safevalues$dom$index.fetchResourceUrl = module$
|
|
4860
|
-
module$exports$safevalues$dom$index.globalEval = module$
|
|
4866
|
+
module$exports$safevalues$dom$index.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4867
|
+
module$exports$safevalues$dom$index.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4861
4868
|
module$exports$safevalues$dom$index.locationAssign = module$exports$safevalues$dom$globals$location.assign;
|
|
4862
4869
|
module$exports$safevalues$dom$index.locationReplace = module$exports$safevalues$dom$globals$location.replace;
|
|
4863
4870
|
module$exports$safevalues$dom$index.setLocationHref = module$exports$safevalues$dom$globals$location.setHref;
|
|
4864
|
-
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$
|
|
4871
|
+
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4865
4872
|
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$exports$safevalues$dom$globals$service_worker_container.register;
|
|
4866
4873
|
module$exports$safevalues$dom$index.objectUrlFromSafeSource = module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource;
|
|
4867
4874
|
module$exports$safevalues$dom$index.getScriptNonce = module$exports$safevalues$dom$globals$window.getScriptNonce;
|
|
@@ -4872,11 +4879,8 @@ module$exports$safevalues$dom$index.createSharedWorker = module$exports$safevalu
|
|
|
4872
4879
|
module$exports$safevalues$dom$index.workerGlobalScopeImportScripts = module$exports$safevalues$dom$globals$worker.importScripts;
|
|
4873
4880
|
var safevalues = {dom:{}};
|
|
4874
4881
|
safevalues.dom.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4875
|
-
safevalues.dom.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4876
|
-
safevalues.dom.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4877
4882
|
safevalues.dom.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4878
4883
|
safevalues.dom.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4879
|
-
safevalues.dom.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4880
4884
|
safevalues.dom.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4881
4885
|
safevalues.dom.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4882
4886
|
safevalues.dom.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
@@ -4884,21 +4888,16 @@ safevalues.dom.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
|
4884
4888
|
safevalues.dom.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4885
4889
|
safevalues.dom.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4886
4890
|
safevalues.dom.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4887
|
-
safevalues.dom.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4888
|
-
safevalues.dom.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4889
|
-
safevalues.dom.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4890
4891
|
safevalues.dom.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4891
|
-
safevalues.dom.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4892
4892
|
safevalues.dom.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4893
|
-
safevalues.dom.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4894
4893
|
safevalues.dom.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4895
4894
|
safevalues.dom.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4896
4895
|
safevalues.dom.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4897
4896
|
safevalues.dom.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4898
4897
|
safevalues.dom.setAnchorHref = module$exports$safevalues$dom$index.setAnchorHref;
|
|
4899
4898
|
safevalues.dom.setAnchorHrefLite = module$exports$safevalues$dom$index.setAnchorHrefLite;
|
|
4900
|
-
safevalues.dom.setAreaHref = module$
|
|
4901
|
-
safevalues.dom.setBaseHref = module$
|
|
4899
|
+
safevalues.dom.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4900
|
+
safevalues.dom.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4902
4901
|
safevalues.dom.setButtonFormaction = module$exports$safevalues$dom$index.setButtonFormaction;
|
|
4903
4902
|
safevalues.dom.buildPrefixedAttributeSetter = module$exports$safevalues$dom$index.buildPrefixedAttributeSetter;
|
|
4904
4903
|
safevalues.dom.elementInsertAdjacentHtml = module$exports$safevalues$dom$index.elementInsertAdjacentHtml;
|
|
@@ -4906,8 +4905,9 @@ safevalues.dom.setElementCssText = module$exports$safevalues$dom$index.setElemen
|
|
|
4906
4905
|
safevalues.dom.setElementInnerHtml = module$exports$safevalues$dom$index.setElementInnerHtml;
|
|
4907
4906
|
safevalues.dom.setElementOuterHtml = module$exports$safevalues$dom$index.setElementOuterHtml;
|
|
4908
4907
|
safevalues.dom.setElementPrefixedAttribute = module$exports$safevalues$dom$index.setElementPrefixedAttribute;
|
|
4909
|
-
safevalues.dom.setEmbedSrc = module$
|
|
4908
|
+
safevalues.dom.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4910
4909
|
safevalues.dom.setFormAction = module$exports$safevalues$dom$index.setFormAction;
|
|
4910
|
+
safevalues.dom.setFormActionLite = module$exports$safevalues$dom$index.setFormActionLite;
|
|
4911
4911
|
safevalues.dom.IframeIntent = module$exports$safevalues$dom$index.IframeIntent;
|
|
4912
4912
|
safevalues.dom.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError;
|
|
4913
4913
|
safevalues.dom.setIframeSrc = module$exports$safevalues$dom$index.setIframeSrc;
|
|
@@ -4921,20 +4921,20 @@ safevalues.dom.setObjectData = module$exports$safevalues$dom$index.setObjectData
|
|
|
4921
4921
|
safevalues.dom.setScriptSrc = module$exports$safevalues$dom$index.setScriptSrc;
|
|
4922
4922
|
safevalues.dom.setScriptTextContent = module$exports$safevalues$dom$index.setScriptTextContent;
|
|
4923
4923
|
safevalues.dom.setStyleTextContent = module$exports$safevalues$dom$index.setStyleTextContent;
|
|
4924
|
-
safevalues.dom.setSvgAttribute = module$
|
|
4925
|
-
safevalues.dom.setSvgUseHref = module$
|
|
4926
|
-
safevalues.dom.documentExecCommand = module$
|
|
4927
|
-
safevalues.dom.documentExecCommandInsertHtml = module$
|
|
4928
|
-
safevalues.dom.documentWrite = module$
|
|
4924
|
+
safevalues.dom.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4925
|
+
safevalues.dom.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4926
|
+
safevalues.dom.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4927
|
+
safevalues.dom.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4928
|
+
safevalues.dom.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4929
4929
|
safevalues.dom.domParserParseFromString = module$exports$safevalues$dom$index.domParserParseFromString;
|
|
4930
4930
|
safevalues.dom.domParserParseHtml = module$exports$safevalues$dom$index.domParserParseHtml;
|
|
4931
4931
|
safevalues.dom.domParserParseXml = module$exports$safevalues$dom$index.domParserParseXml;
|
|
4932
|
-
safevalues.dom.fetchResourceUrl = module$
|
|
4933
|
-
safevalues.dom.globalEval = module$
|
|
4932
|
+
safevalues.dom.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4933
|
+
safevalues.dom.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4934
4934
|
safevalues.dom.locationAssign = module$exports$safevalues$dom$index.locationAssign;
|
|
4935
4935
|
safevalues.dom.locationReplace = module$exports$safevalues$dom$index.locationReplace;
|
|
4936
4936
|
safevalues.dom.setLocationHref = module$exports$safevalues$dom$index.setLocationHref;
|
|
4937
|
-
safevalues.dom.rangeCreateContextualFragment = module$
|
|
4937
|
+
safevalues.dom.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4938
4938
|
safevalues.dom.serviceWorkerContainerRegister = module$exports$safevalues$dom$index.serviceWorkerContainerRegister;
|
|
4939
4939
|
safevalues.dom.objectUrlFromSafeSource = module$exports$safevalues$dom$index.objectUrlFromSafeSource;
|
|
4940
4940
|
safevalues.dom.getScriptNonce = module$exports$safevalues$dom$index.getScriptNonce;
|
|
@@ -6265,8 +6265,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6265
6265
|
}
|
|
6266
6266
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6267
6267
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6268
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6269
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6268
|
+
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$1047461284$0$ = $jscomp$iter$29.next(); !$jscomp$key$1047461284$0$.done; $jscomp$key$1047461284$0$ = $jscomp$iter$29.next()) {
|
|
6269
|
+
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$0$.value), jsName__tsickle_destructured_1 = $jscomp$destructuring$var3.next().value, urlQueryParamName__tsickle_destructured_2 = $jscomp$destructuring$var3.next().value, jsName = jsName__tsickle_destructured_1, urlQueryParamName = urlQueryParamName__tsickle_destructured_2;
|
|
6270
6270
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6271
6271
|
}
|
|
6272
6272
|
return urlQueryParams;
|
|
@@ -6277,8 +6277,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
|
|
|
6277
6277
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6278
6278
|
if (params.headers) {
|
|
6279
6279
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6280
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6281
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6280
|
+
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$1047461284$1$ = $jscomp$iter$30.next(); !$jscomp$key$1047461284$1$.done; $jscomp$key$1047461284$1$ = $jscomp$iter$30.next()) {
|
|
6281
|
+
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$1$.value), key__tsickle_destructured_3 = $jscomp$destructuring$var5.next().value, value__tsickle_destructured_4 = $jscomp$destructuring$var5.next().value, key = key__tsickle_destructured_3, value = value__tsickle_destructured_4;
|
|
6282
6282
|
module$contents$eeapiclient$request_params_simpleCorsAllowedHeaders.includes(key) ? safeHeaders[key] = value : key === "Content-Type" && module$contents$eeapiclient$request_params_simpleCorsAllowedContentTypes.includes(value) ? (safeHeaders[key] = value, hasSafeContentType = !0) : (unsafeHeaders[key] = value, hasUnsafeHeaders = !0);
|
|
6283
6283
|
}
|
|
6284
6284
|
}
|
|
@@ -6318,9 +6318,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6318
6318
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6319
6319
|
};
|
|
6320
6320
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6321
|
-
var $jscomp$this$
|
|
6321
|
+
var $jscomp$this$1237977804$4 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6322
6322
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6323
|
-
return $jscomp$this$
|
|
6323
|
+
return $jscomp$this$1237977804$4.requestService.send(params, responseCtor);
|
|
6324
6324
|
}));
|
|
6325
6325
|
};
|
|
6326
6326
|
var module$exports$eeapiclient$promise_request_service = {}, module$contents$eeapiclient$promise_request_service_module = module$contents$eeapiclient$promise_request_service_module || {id:"javascript/typescript/contrib/apiclient/request_service/promise_request_service.closure.js"};
|
|
@@ -6490,7 +6490,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_
|
|
|
6490
6490
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
|
|
6491
6491
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6492
6492
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
|
|
6493
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_on_init_within_reaction_throws_error__disable = !1;
|
|
6494
6493
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable = !1;
|
|
6495
6494
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6496
6495
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable = !1;
|
|
@@ -6504,9 +6503,7 @@ var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1,
|
|
|
6504
6503
|
goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable : goog.readFlagInternalDoNotUseOrElse(610401301, !1);
|
|
6505
6504
|
goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
|
|
6506
6505
|
goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable : goog.readFlagInternalDoNotUseOrElse(188588736, !0);
|
|
6507
|
-
goog.flags.
|
|
6508
|
-
!0);
|
|
6509
|
-
goog.flags.CLIENT_ONLY_WIZ_DISTINCT_CONTEXTS_FOR_CONTROL_FLOW_BRANCHES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable : goog.readFlagInternalDoNotUseOrElse(691955189, !1);
|
|
6506
|
+
goog.flags.CLIENT_ONLY_WIZ_DISTINCT_CONTEXTS_FOR_CONTROL_FLOW_BRANCHES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable : goog.readFlagInternalDoNotUseOrElse(691955189, goog.DEBUG);
|
|
6510
6507
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6511
6508
|
goog.flags.JSPB_READONLY_REPEATED_FIELDS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable) : goog.readFlagInternalDoNotUseOrElse(653718497, module$contents$goog$flags_STAGING);
|
|
6512
6509
|
goog.flags.JSPB_IGNORE_IMPLICIT_EXTENSION_DEPS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_ignore_implicit_extension_deps__disable) : goog.readFlagInternalDoNotUseOrElse(660014094, module$contents$goog$flags_STAGING);
|
|
@@ -14952,6 +14949,7 @@ goog.Promise = function(resolver, opt_context) {
|
|
|
14952
14949
|
}
|
|
14953
14950
|
}
|
|
14954
14951
|
};
|
|
14952
|
+
goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
|
|
14955
14953
|
goog.Promise.LONG_STACK_TRACES = !1;
|
|
14956
14954
|
goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
|
|
14957
14955
|
goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
|
|
@@ -15066,7 +15064,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15066
15064
|
opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15067
15065
|
opt_onRejected != null && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
|
|
15068
15066
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15069
|
-
return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
|
|
15067
|
+
return this.addChildPromise_(module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null), module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onRejected === "function" ? opt_onRejected : null), opt_context);
|
|
15070
15068
|
};
|
|
15071
15069
|
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15072
15070
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
@@ -15077,14 +15075,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
|
|
|
15077
15075
|
};
|
|
15078
15076
|
goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
|
|
15079
15077
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
|
|
15080
|
-
var entry = goog.Promise.getCallbackEntry_(
|
|
15078
|
+
var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
|
|
15081
15079
|
entry.always = !0;
|
|
15082
15080
|
this.addCallbackEntry_(entry);
|
|
15083
15081
|
return this;
|
|
15084
15082
|
};
|
|
15085
15083
|
goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
|
|
15086
15084
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
|
|
15087
|
-
return this.addChildPromise_(null, onRejected, opt_context);
|
|
15085
|
+
return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
|
|
15088
15086
|
};
|
|
15089
15087
|
goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
15090
15088
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
@@ -16052,8 +16050,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16052
16050
|
this.replacements = new Map();
|
|
16053
16051
|
};
|
|
16054
16052
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16055
|
-
var $jscomp$this$
|
|
16056
|
-
return $jscomp$this$
|
|
16053
|
+
var $jscomp$this$380122516$5 = this, openedTags = [], marker = (0,module$exports$safevalues$builders$html_builders.htmlEscape)("_safevalues_format_marker_:").toString(), html = (0,module$exports$safevalues$builders$html_builders.htmlEscape)(format).toString().replace(new RegExp("\\{" + marker + "[\\w&#;]+\\}", "g"), function(match) {
|
|
16054
|
+
return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
|
|
16057
16055
|
});
|
|
16058
16056
|
if (openedTags.length !== 0) {
|
|
16059
16057
|
if (goog.DEBUG) {
|
|
@@ -16271,8 +16269,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16271
16269
|
if (Array.isArray(token)) {
|
|
16272
16270
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16273
16271
|
} else {
|
|
16274
|
-
var $jscomp$optchain$
|
|
16275
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16272
|
+
var $jscomp$optchain$tmpm583190311$0 = void 0;
|
|
16273
|
+
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$tmpm583190311$0 = lastToken) == null ? void 0 : $jscomp$optchain$tmpm583190311$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE) {
|
|
16276
16274
|
tokens.push(token);
|
|
16277
16275
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16278
16276
|
return tokens;
|
|
@@ -16518,9 +16516,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16518
16516
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16519
16517
|
};
|
|
16520
16518
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16521
|
-
var $jscomp$this$
|
|
16519
|
+
var $jscomp$this$m583190311$26 = this;
|
|
16522
16520
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16523
|
-
return $jscomp$this$
|
|
16521
|
+
return $jscomp$this$m583190311$26.isWhitespace(c);
|
|
16524
16522
|
});
|
|
16525
16523
|
};
|
|
16526
16524
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16627,8 +16625,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16627
16625
|
return null;
|
|
16628
16626
|
}
|
|
16629
16627
|
if (token.lowercaseName === "url") {
|
|
16630
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16631
|
-
if ((($jscomp$optchain$
|
|
16628
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
|
|
16629
|
+
if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16632
16630
|
return null;
|
|
16633
16631
|
}
|
|
16634
16632
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(nextToken.value);
|
|
@@ -16651,8 +16649,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16651
16649
|
if (!this.allowKeyframes) {
|
|
16652
16650
|
return null;
|
|
16653
16651
|
}
|
|
16654
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16655
|
-
var rule = $jscomp$key$
|
|
16652
|
+
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next(); !$jscomp$key$m1877845113$1$rule.done; $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next()) {
|
|
16653
|
+
var rule = $jscomp$key$m1877845113$1$rule.value;
|
|
16656
16654
|
if (rule instanceof CSSKeyframeRule) {
|
|
16657
16655
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16658
16656
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16664,8 +16662,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16664
16662
|
if (!this.propertyAllowlist.has(name)) {
|
|
16665
16663
|
return !1;
|
|
16666
16664
|
}
|
|
16667
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16668
|
-
var discarder = $jscomp$key$
|
|
16665
|
+
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next(); !$jscomp$key$m1877845113$2$discarder.done; $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next()) {
|
|
16666
|
+
var discarder = $jscomp$key$m1877845113$2$discarder.value;
|
|
16669
16667
|
if (discarder(name)) {
|
|
16670
16668
|
return !1;
|
|
16671
16669
|
}
|
|
@@ -16680,8 +16678,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16680
16678
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16681
16679
|
};
|
|
16682
16680
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16683
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16684
|
-
var name = $jscomp$key$
|
|
16681
|
+
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next(); !$jscomp$key$m1877845113$3$name.done; $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next()) {
|
|
16682
|
+
var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16685
16683
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16686
16684
|
}
|
|
16687
16685
|
return sanitizedProperties;
|
|
@@ -16695,8 +16693,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16695
16693
|
return selector + " { " + sanitizedProperties + " }";
|
|
16696
16694
|
};
|
|
16697
16695
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16698
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16699
|
-
var rule = $jscomp$key$
|
|
16696
|
+
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next(); !$jscomp$key$m1877845113$4$rule.done; $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next()) {
|
|
16697
|
+
var rule = $jscomp$key$m1877845113$4$rule.value;
|
|
16700
16698
|
if (rule instanceof CSSStyleRule) {
|
|
16701
16699
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
16702
16700
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -16730,7 +16728,7 @@ function module$contents$safevalues$builders$html_sanitizer$inert_fragment_creat
|
|
|
16730
16728
|
var range = inertDocument.createRange();
|
|
16731
16729
|
range.selectNode(inertDocument.body);
|
|
16732
16730
|
var temporarySafeHtml = (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(dirtyHtml);
|
|
16733
|
-
return
|
|
16731
|
+
return module$contents$safevalues$dom$globals$range_createContextualFragment(range, temporarySafeHtml);
|
|
16734
16732
|
}
|
|
16735
16733
|
;var module$exports$safevalues$builders$html_sanitizer$no_clobber = {}, module$contents$safevalues$builders$html_sanitizer$no_clobber_module = module$contents$safevalues$builders$html_sanitizer$no_clobber_module || {id:"third_party/javascript/safevalues/builders/html_sanitizer/no_clobber.closure.js"};
|
|
16736
16734
|
function module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(node) {
|
|
@@ -16857,8 +16855,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16857
16855
|
return fragment;
|
|
16858
16856
|
};
|
|
16859
16857
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
16860
|
-
for (var $jscomp$this$
|
|
16861
|
-
return $jscomp$this$
|
|
16858
|
+
for (var $jscomp$this$m1803429925$13 = this, dirtyFragment = module$contents$safevalues$builders$html_sanitizer$inert_fragment_createInertFragment(html, inertDocument), treeWalker = document.createTreeWalker(dirtyFragment, 5, function(n) {
|
|
16859
|
+
return $jscomp$this$m1803429925$13.nodeFilter(n);
|
|
16862
16860
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
16863
16861
|
var sanitizedNode = void 0;
|
|
16864
16862
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -16893,8 +16891,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16893
16891
|
return this.createTextNode(textNode.data);
|
|
16894
16892
|
};
|
|
16895
16893
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
16896
|
-
for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$
|
|
16897
|
-
var $jscomp$destructuring$var31 = $jscomp$key$
|
|
16894
|
+
for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$m1803429925$34$ = $jscomp$iter$36.next(); !$jscomp$key$m1803429925$34$.done; $jscomp$key$m1803429925$34$ = $jscomp$iter$36.next()) {
|
|
16895
|
+
var $jscomp$destructuring$var31 = $jscomp$key$m1803429925$34$.value, name = $jscomp$destructuring$var31.name, value = $jscomp$destructuring$var31.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
|
|
16898
16896
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
16899
16897
|
switch(policy.policyAction) {
|
|
16900
16898
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -16926,9 +16924,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16926
16924
|
break;
|
|
16927
16925
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
16928
16926
|
if (this.resourceUrlPolicy) {
|
|
16929
|
-
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$
|
|
16927
|
+
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$m1803429925$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1803429925$33$part.done; $jscomp$key$m1803429925$33$part =
|
|
16930
16928
|
$jscomp$iter$35.next()) {
|
|
16931
|
-
var part = $jscomp$key$
|
|
16929
|
+
var part = $jscomp$key$m1803429925$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
|
|
16932
16930
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
16933
16931
|
}
|
|
16934
16932
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -16972,8 +16970,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16972
16970
|
if (!conditions) {
|
|
16973
16971
|
return !0;
|
|
16974
16972
|
}
|
|
16975
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
16976
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16973
|
+
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next(); !$jscomp$key$m1803429925$35$.done; $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next()) {
|
|
16974
|
+
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var33.next().value, expectedValues = $jscomp$destructuring$var33.next().value, $jscomp$optchain$tmpm1803429925$0 = void 0, value = ($jscomp$optchain$tmpm1803429925$0 = attrs.getNamedItem(attrName__tsickle_destructured_1)) == null ? void 0 : $jscomp$optchain$tmpm1803429925$0.value;
|
|
16977
16975
|
if (value && !expectedValues.has(value)) {
|
|
16978
16976
|
return !1;
|
|
16979
16977
|
}
|
|
@@ -16988,8 +16986,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
16988
16986
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
16989
16987
|
};
|
|
16990
16988
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
16991
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
16992
|
-
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16989
|
+
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next(); !$jscomp$key$m1803429925$36$part.done; $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next()) {
|
|
16990
|
+
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$36$part.value.trim().split(/\s+/, 2)), url__tsickle_destructured_3 = $jscomp$destructuring$var34.next().value, descriptor__tsickle_destructured_4 = $jscomp$destructuring$var34.next().value;
|
|
16993
16991
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
16994
16992
|
}
|
|
16995
16993
|
return {parts:parts};
|
|
@@ -17046,8 +17044,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17046
17044
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17047
17045
|
};
|
|
17048
17046
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17049
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17050
|
-
var element = $jscomp$key$
|
|
17047
|
+
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$m1412690177$21$element = $jscomp$iter$39.next(); !$jscomp$key$m1412690177$21$element.done; $jscomp$key$m1412690177$21$element = $jscomp$iter$39.next()) {
|
|
17048
|
+
var element = $jscomp$key$m1412690177$21$element.value;
|
|
17051
17049
|
element = element.toUpperCase();
|
|
17052
17050
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17053
17051
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17065,8 +17063,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17065
17063
|
throw Error("Element: " + element + " is not a custom element");
|
|
17066
17064
|
}
|
|
17067
17065
|
if (allowedAttributes) {
|
|
17068
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17069
|
-
elementPolicy.set($jscomp$key$
|
|
17066
|
+
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$m1412690177$22$attribute = $jscomp$iter$40.next(); !$jscomp$key$m1412690177$22$attribute.done; $jscomp$key$m1412690177$22$attribute = $jscomp$iter$40.next()) {
|
|
17067
|
+
elementPolicy.set($jscomp$key$m1412690177$22$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17070
17068
|
}
|
|
17071
17069
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17072
17070
|
} else {
|
|
@@ -17076,15 +17074,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17076
17074
|
return this;
|
|
17077
17075
|
};
|
|
17078
17076
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17079
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17080
|
-
var attribute = $jscomp$key$
|
|
17077
|
+
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$m1412690177$23$attribute = $jscomp$iter$41.next(); !$jscomp$key$m1412690177$23$attribute.done; $jscomp$key$m1412690177$23$attribute = $jscomp$iter$41.next()) {
|
|
17078
|
+
var attribute = $jscomp$key$m1412690177$23$attribute.value;
|
|
17081
17079
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17082
17080
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17083
17081
|
}
|
|
17084
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17085
|
-
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17082
|
+
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$m1412690177$25$ = $jscomp$iter$43.next(); !$jscomp$key$m1412690177$25$.done; $jscomp$key$m1412690177$25$ = $jscomp$iter$43.next()) {
|
|
17083
|
+
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$25$.value), elementName__tsickle_destructured_1 = $jscomp$destructuring$var37.next().value, originalElementPolicy__tsickle_destructured_2 = $jscomp$destructuring$var37.next().value, elementName = elementName__tsickle_destructured_1, newElementPolicy = new Map(), $jscomp$iter$42 = (0,$jscomp.makeIterator)(originalElementPolicy__tsickle_destructured_2.entries()), $jscomp$key$m1412690177$24$ = $jscomp$iter$42.next(); !$jscomp$key$m1412690177$24$.done; $jscomp$key$m1412690177$24$ =
|
|
17086
17084
|
$jscomp$iter$42.next()) {
|
|
17087
|
-
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17085
|
+
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$24$.value), attribute__tsickle_destructured_3 = $jscomp$destructuring$var39.next().value, attributePolicy__tsickle_destructured_4 = $jscomp$destructuring$var39.next().value, attribute$jscomp$0 = attribute__tsickle_destructured_3, attributePolicy = attributePolicy__tsickle_destructured_4;
|
|
17088
17086
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17089
17087
|
}
|
|
17090
17088
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17093,8 +17091,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17093
17091
|
return this;
|
|
17094
17092
|
};
|
|
17095
17093
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.allowDataAttributes = function(attributes) {
|
|
17096
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17097
|
-
var attribute = $jscomp$key$
|
|
17094
|
+
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$m1412690177$26$attribute = $jscomp$iter$44.next(); !$jscomp$key$m1412690177$26$attribute.done; $jscomp$key$m1412690177$26$attribute = $jscomp$iter$44.next()) {
|
|
17095
|
+
var attribute = $jscomp$key$m1412690177$26$attribute.value;
|
|
17098
17096
|
if (attribute.indexOf("data-") !== 0) {
|
|
17099
17097
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17100
17098
|
}
|
|
@@ -17156,7 +17154,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17156
17154
|
return this;
|
|
17157
17155
|
};
|
|
17158
17156
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17159
|
-
var $jscomp$this$
|
|
17157
|
+
var $jscomp$this$m1412690177$17 = this;
|
|
17160
17158
|
this.extendSanitizerTableForCss();
|
|
17161
17159
|
var propertyDiscarders = [];
|
|
17162
17160
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17166,9 +17164,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17166
17164
|
return /^transition(-|$)/.test(property);
|
|
17167
17165
|
});
|
|
17168
17166
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
17169
|
-
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$
|
|
17167
|
+
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$m1412690177$17.resourceUrlPolicy, $jscomp$this$m1412690177$17.animationsAllowed, propertyDiscarders);
|
|
17170
17168
|
}, function(cssText) {
|
|
17171
|
-
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$
|
|
17169
|
+
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$m1412690177$17.resourceUrlPolicy, propertyDiscarders);
|
|
17172
17170
|
}, this.resourceUrlPolicy);
|
|
17173
17171
|
};
|
|
17174
17172
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17418,12 +17416,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17418
17416
|
}
|
|
17419
17417
|
try {
|
|
17420
17418
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17421
|
-
} catch ($jscomp$unused$catch$
|
|
17419
|
+
} catch ($jscomp$unused$catch$442189172$0) {
|
|
17422
17420
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17423
17421
|
}
|
|
17424
17422
|
try {
|
|
17425
17423
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17426
|
-
} catch ($jscomp$unused$catch$
|
|
17424
|
+
} catch ($jscomp$unused$catch$442189172$1) {
|
|
17427
17425
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17428
17426
|
}
|
|
17429
17427
|
return !1;
|
|
@@ -19008,10 +19006,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19008
19006
|
this.errorDispatched_ = !1;
|
|
19009
19007
|
this.active_ = !0;
|
|
19010
19008
|
this.xhr_ = this.createXhr();
|
|
19011
|
-
this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
|
|
19012
|
-
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
|
|
19009
|
+
this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
|
|
19010
|
+
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
|
|
19013
19011
|
this.onProgressHandler_(e, !0);
|
|
19014
|
-
}, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
|
|
19012
|
+
}, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
|
|
19015
19013
|
try {
|
|
19016
19014
|
goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
|
|
19017
19015
|
} catch (err) {
|
|
@@ -19276,7 +19274,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19276
19274
|
ee.apiclient = {};
|
|
19277
19275
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19278
19276
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19279
|
-
ee.apiclient.API_CLIENT_VERSION = "1.
|
|
19277
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.1";
|
|
19280
19278
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19281
19279
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19282
19280
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19574,8 +19572,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19574
19572
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19575
19573
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19576
19574
|
method = method || "POST";
|
|
19577
|
-
var headers = {"Content-Type":contentType}, version = "1.
|
|
19578
|
-
version === "1.
|
|
19575
|
+
var headers = {"Content-Type":contentType}, version = "1.4.1";
|
|
19576
|
+
version === "1.4.1" && (version = "latest");
|
|
19579
19577
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19580
19578
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19581
19579
|
if (authToken != null) {
|
|
@@ -25044,10 +25042,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
|
|
|
25044
25042
|
};
|
|
25045
25043
|
goog.dom.vendor = {};
|
|
25046
25044
|
goog.dom.vendor.getVendorJsPrefix = function() {
|
|
25047
|
-
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" :
|
|
25045
|
+
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
|
|
25048
25046
|
};
|
|
25049
25047
|
goog.dom.vendor.getVendorPrefix = function() {
|
|
25050
|
-
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" :
|
|
25048
|
+
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
|
|
25051
25049
|
};
|
|
25052
25050
|
goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
|
|
25053
25051
|
if (opt_object && propertyName in opt_object) {
|
|
@@ -27097,29 +27095,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27097
27095
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27098
27096
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27099
27097
|
(function() {
|
|
27100
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27101
|
-
orderedParamLists = [["name", "
|
|
27102
|
-
|
|
27103
|
-
"collection opt_description
|
|
27104
|
-
"collection opt_description
|
|
27105
|
-
["
|
|
27106
|
-
"
|
|
27107
|
-
["
|
|
27108
|
-
"
|
|
27109
|
-
["
|
|
27110
|
-
|
|
27111
|
-
"
|
|
27112
|
-
"
|
|
27113
|
-
[
|
|
27114
|
-
[ee.ApiFunction.
|
|
27115
|
-
module$contents$ee$batch_Export.
|
|
27116
|
-
ee.ComputedObject.prototype.
|
|
27117
|
-
ee.data.
|
|
27118
|
-
ee.data.
|
|
27119
|
-
ee.
|
|
27120
|
-
ee.Filter, ee.Filter.
|
|
27121
|
-
ee.Image.prototype.
|
|
27122
|
-
ee.ImageCollection.prototype.
|
|
27098
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.map ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getTableDownloadId ee.data.renameAsset ee.data.listAssets ee.data.getMapId ee.data.setAssetProperties ee.data.getTaskList ee.data.copyAsset ee.data.listBuckets ee.data.authenticate ee.data.getTileUrl ee.data.getAssetRootQuota ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.deleteAsset ee.data.startTableIngestion ee.data.getWorkloadTag ee.data.listOperations ee.data.getDownloadId ee.data.cancelOperation ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.listImages ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.computeValue ee.data.resetWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.getVideoThumbId ee.data.updateAsset ee.data.getTaskStatus ee.data.getList ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.createFolder ee.data.startProcessing ee.data.setAssetAcl ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.InitState ee.apply ee.TILE_SIZE ee.call ee.reset ee.initialize ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.Filter.lte ee.Filter.gte ee.Filter ee.Filter.metadata ee.Filter.date ee.Filter.bounds ee.Filter.eq ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.prototype.not ee.Filter.lt ee.Filter.or ee.Filter.neq ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Geometry.MultiPoint ee.Geometry ee.Geometry.Rectangle ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.Point ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.rgb ee.Image.prototype.select ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.getThumbURL ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection ee.List ee.Number ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
27099
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices",
|
|
27100
|
+
"opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27101
|
+
"collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
|
|
27102
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["filter"], ["property", "opt_ascending"],
|
|
27103
|
+
["geometry"], ["start", "opt_end"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["algorithm", "opt_dropNulls"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["assetId",
|
|
27104
|
+
"properties", "opt_callback"], ["opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["rootId", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"], [], ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "opt_callback"],
|
|
27105
|
+
["opt_success", "opt_error"], ["id"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["tag"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["obj", "opt_callback"],
|
|
27106
|
+
["opt_resetDefault"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"],
|
|
27107
|
+
["opt_dict"], [], ["func", "namedArgs"], [], ["func", "var_args"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors",
|
|
27108
|
+
"opt_filename", "opt_callback"], ["opt_callback"], ["name", "value"], ["name", "value"], ["opt_filter"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], [], ["name", "value"], ["var_args"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic",
|
|
27109
|
+
"opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["legacy"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["r", "g", "b"], ["var_args"], ["opt_args"],
|
|
27110
|
+
["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["params", "opt_callback"], ["expression", "opt_map"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_callback"], ["selectors", "opt_names"], [], ["args"], ["list"], ["number"], ["obj"], ["obj"],
|
|
27111
|
+
["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
|
|
27112
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage,
|
|
27113
|
+
module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.map, ee.ComputedObject.prototype.evaluate,
|
|
27114
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.getTableDownloadId, ee.data.renameAsset, ee.data.listAssets, ee.data.getMapId, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.copyAsset, ee.data.listBuckets, ee.data.authenticate, ee.data.getTileUrl, ee.data.getAssetRootQuota, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.deleteAsset, ee.data.startTableIngestion,
|
|
27115
|
+
ee.data.getWorkloadTag, ee.data.listOperations, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.listImages, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.setWorkloadTag, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.computeValue,
|
|
27116
|
+
ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.updateAsset, ee.data.getTaskStatus, ee.data.getList, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.createFolder, ee.data.startProcessing, ee.data.setAssetAcl, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.InitState, ee.apply, ee.TILE_SIZE, ee.call, ee.reset, ee.initialize,
|
|
27117
|
+
ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.Filter.lte, ee.Filter.gte, ee.Filter, ee.Filter.metadata, ee.Filter.date, ee.Filter.bounds, ee.Filter.eq,
|
|
27118
|
+
ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.prototype.not, ee.Filter.lt, ee.Filter.or, ee.Filter.neq, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.Point, ee.Image.prototype.getInfo,
|
|
27119
|
+
ee.Image.prototype.getMapId, ee.Image.rgb, ee.Image.prototype.select, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.getThumbURL, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.linkCollection,
|
|
27120
|
+
ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27123
27121
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27124
27122
|
});
|
|
27125
27123
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|