@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/ee_api_js_npm.js
CHANGED
|
@@ -12,7 +12,6 @@ $jscomp.arrayIterator = function(array) {
|
|
|
12
12
|
$jscomp.ASSUME_ES5 = !1;
|
|
13
13
|
$jscomp.ASSUME_NO_NATIVE_MAP = !1;
|
|
14
14
|
$jscomp.ASSUME_NO_NATIVE_SET = !1;
|
|
15
|
-
$jscomp.SIMPLE_FROUND_POLYFILL = !1;
|
|
16
15
|
$jscomp.ISOLATE_POLYFILLS = !1;
|
|
17
16
|
$jscomp.FORCE_POLYFILL_PROMISE = !1;
|
|
18
17
|
$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
|
|
@@ -128,50 +127,6 @@ $jscomp.iteratorPrototype = function(next) {
|
|
|
128
127
|
};
|
|
129
128
|
return iterator;
|
|
130
129
|
};
|
|
131
|
-
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
132
|
-
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
133
|
-
};
|
|
134
|
-
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
135
|
-
arrayStrings.raw = rawArrayStrings;
|
|
136
|
-
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
137
|
-
return arrayStrings;
|
|
138
|
-
};
|
|
139
|
-
$jscomp.makeIterator = function(iterable) {
|
|
140
|
-
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
141
|
-
if (iteratorFunction) {
|
|
142
|
-
return iteratorFunction.call(iterable);
|
|
143
|
-
}
|
|
144
|
-
if (typeof iterable.length == "number") {
|
|
145
|
-
return $jscomp.arrayIterator(iterable);
|
|
146
|
-
}
|
|
147
|
-
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
148
|
-
};
|
|
149
|
-
$jscomp.arrayFromIterator = function(iterator) {
|
|
150
|
-
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
151
|
-
arr.push(i.value);
|
|
152
|
-
}
|
|
153
|
-
return arr;
|
|
154
|
-
};
|
|
155
|
-
$jscomp.arrayFromIterable = function(iterable) {
|
|
156
|
-
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
157
|
-
};
|
|
158
|
-
$jscomp.owns = function(obj, prop) {
|
|
159
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
160
|
-
};
|
|
161
|
-
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
162
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
163
|
-
var source = arguments[i];
|
|
164
|
-
if (source) {
|
|
165
|
-
for (var key in source) {
|
|
166
|
-
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
return target;
|
|
171
|
-
};
|
|
172
|
-
$jscomp.polyfill("Object.assign", function(orig) {
|
|
173
|
-
return orig || $jscomp.assign;
|
|
174
|
-
}, "es6", "es3");
|
|
175
130
|
$jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
|
|
176
131
|
var ctor = function() {
|
|
177
132
|
};
|
|
@@ -240,6 +195,50 @@ $jscomp.inherits = function(childCtor, parentCtor) {
|
|
|
240
195
|
}
|
|
241
196
|
childCtor.superClass_ = parentCtor.prototype;
|
|
242
197
|
};
|
|
198
|
+
$jscomp.makeIterator = function(iterable) {
|
|
199
|
+
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
200
|
+
if (iteratorFunction) {
|
|
201
|
+
return iteratorFunction.call(iterable);
|
|
202
|
+
}
|
|
203
|
+
if (typeof iterable.length == "number") {
|
|
204
|
+
return $jscomp.arrayIterator(iterable);
|
|
205
|
+
}
|
|
206
|
+
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
207
|
+
};
|
|
208
|
+
$jscomp.arrayFromIterator = function(iterator) {
|
|
209
|
+
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
210
|
+
arr.push(i.value);
|
|
211
|
+
}
|
|
212
|
+
return arr;
|
|
213
|
+
};
|
|
214
|
+
$jscomp.arrayFromIterable = function(iterable) {
|
|
215
|
+
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
216
|
+
};
|
|
217
|
+
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
218
|
+
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
219
|
+
};
|
|
220
|
+
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
221
|
+
arrayStrings.raw = rawArrayStrings;
|
|
222
|
+
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
223
|
+
return arrayStrings;
|
|
224
|
+
};
|
|
225
|
+
$jscomp.owns = function(obj, prop) {
|
|
226
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
227
|
+
};
|
|
228
|
+
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
229
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
230
|
+
var source = arguments[i];
|
|
231
|
+
if (source) {
|
|
232
|
+
for (var key in source) {
|
|
233
|
+
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
return target;
|
|
238
|
+
};
|
|
239
|
+
$jscomp.polyfill("Object.assign", function(orig) {
|
|
240
|
+
return orig || $jscomp.assign;
|
|
241
|
+
}, "es6", "es3");
|
|
243
242
|
$jscomp.generator = {};
|
|
244
243
|
$jscomp.generator.ensureIteratorResultIsObject_ = function(result) {
|
|
245
244
|
if (!(result instanceof Object)) {
|
|
@@ -1253,8 +1252,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1253
1252
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1254
1253
|
};
|
|
1255
1254
|
}, "es8", "es3");
|
|
1256
|
-
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,
|
|
1257
|
-
|
|
1255
|
+
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,
|
|
1256
|
+
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};
|
|
1258
1257
|
/*
|
|
1259
1258
|
|
|
1260
1259
|
Copyright The Closure Library Authors.
|
|
@@ -1679,6 +1678,11 @@ goog.createTrustedTypesPolicy = function(name) {
|
|
|
1679
1678
|
}
|
|
1680
1679
|
return policy;
|
|
1681
1680
|
};
|
|
1681
|
+
goog.CodeLocation = {};
|
|
1682
|
+
goog.callerLocation = function() {
|
|
1683
|
+
var stack;
|
|
1684
|
+
return "";
|
|
1685
|
+
};
|
|
1682
1686
|
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf || function(d, b) {
|
|
1683
1687
|
for (var p in b) {
|
|
1684
1688
|
Object.prototype.hasOwnProperty.call(b, p) && (d[p] = b[p]);
|
|
@@ -2079,6 +2083,12 @@ module$exports$tslib.__disposeResources = function(env) {
|
|
|
2079
2083
|
};
|
|
2080
2084
|
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"};
|
|
2081
2085
|
module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
|
|
2086
|
+
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"};
|
|
2087
|
+
module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
|
|
2088
|
+
return fn && AsyncContext.Snapshot.wrap(fn);
|
|
2089
|
+
} : function(fn) {
|
|
2090
|
+
return fn;
|
|
2091
|
+
};
|
|
2082
2092
|
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"};
|
|
2083
2093
|
module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
|
|
2084
2094
|
};
|
|
@@ -2152,9 +2162,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2152
2162
|
};
|
|
2153
2163
|
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;
|
|
2154
2164
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2155
|
-
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$
|
|
2156
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2157
|
-
var key = $jscomp$key$
|
|
2165
|
+
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 =
|
|
2166
|
+
{mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
|
|
2167
|
+
var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
|
|
2158
2168
|
if (value != null) {
|
|
2159
2169
|
var copy = void 0;
|
|
2160
2170
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2165,11 +2175,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2165
2175
|
} else if (objects.hasOwnProperty(key)) {
|
|
2166
2176
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2167
2177
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2168
|
-
$jscomp$loop$
|
|
2178
|
+
$jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
|
|
2169
2179
|
return function(v) {
|
|
2170
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2180
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2171
2181
|
};
|
|
2172
|
-
}($jscomp$loop$
|
|
2182
|
+
}($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2173
2183
|
} else if (Array.isArray(value)) {
|
|
2174
2184
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2175
2185
|
continue;
|
|
@@ -2184,8 +2194,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2184
2194
|
return target;
|
|
2185
2195
|
}
|
|
2186
2196
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2187
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2188
|
-
var mapKey = $jscomp$key$
|
|
2197
|
+
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()) {
|
|
2198
|
+
var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
|
|
2189
2199
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2190
2200
|
}
|
|
2191
2201
|
return objMap;
|
|
@@ -2215,39 +2225,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2215
2225
|
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))) {
|
|
2216
2226
|
return !1;
|
|
2217
2227
|
}
|
|
2218
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2219
|
-
var key = $jscomp$key$
|
|
2228
|
+
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()) {
|
|
2229
|
+
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);
|
|
2220
2230
|
if (has1 !== has2) {
|
|
2221
2231
|
return !1;
|
|
2222
2232
|
}
|
|
2223
2233
|
if (has1) {
|
|
2224
2234
|
var value1 = serializable1.Serializable$get(key);
|
|
2225
|
-
$jscomp$loop$
|
|
2235
|
+
$jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2226
2236
|
if (arrays1.hasOwnProperty(key)) {
|
|
2227
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2237
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
|
|
2228
2238
|
return !1;
|
|
2229
2239
|
}
|
|
2230
2240
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2231
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2241
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
|
|
2232
2242
|
return !1;
|
|
2233
2243
|
}
|
|
2234
2244
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2235
|
-
if ($jscomp$loop$
|
|
2236
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2245
|
+
if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2246
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
|
|
2237
2247
|
return function(v1, i) {
|
|
2238
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2248
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
|
|
2239
2249
|
};
|
|
2240
|
-
}($jscomp$loop$
|
|
2250
|
+
}($jscomp$loop$m192531680$45))) {
|
|
2241
2251
|
return !1;
|
|
2242
2252
|
}
|
|
2243
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2253
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
|
|
2244
2254
|
return !1;
|
|
2245
2255
|
}
|
|
2246
2256
|
} else if (Array.isArray(value1)) {
|
|
2247
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2257
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
|
|
2248
2258
|
return !1;
|
|
2249
2259
|
}
|
|
2250
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2260
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
|
|
2251
2261
|
return !1;
|
|
2252
2262
|
}
|
|
2253
2263
|
}
|
|
@@ -2269,8 +2279,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2269
2279
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2270
2280
|
return !1;
|
|
2271
2281
|
}
|
|
2272
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2273
|
-
var mapKey = $jscomp$key$
|
|
2282
|
+
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()) {
|
|
2283
|
+
var mapKey = $jscomp$key$m192531680$43$mapKey.value;
|
|
2274
2284
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2275
2285
|
return !1;
|
|
2276
2286
|
}
|
|
@@ -2351,15 +2361,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2351
2361
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2352
2362
|
};
|
|
2353
2363
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2354
|
-
var $jscomp$this$
|
|
2364
|
+
var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2355
2365
|
payload += this._metadataPayload;
|
|
2356
2366
|
return Promise.all(this.files.map(function(f) {
|
|
2357
|
-
return $jscomp$this$
|
|
2367
|
+
return $jscomp$this$m667091202$6.encodeFile(f);
|
|
2358
2368
|
})).then(function(filePayloads) {
|
|
2359
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2360
|
-
payload += $jscomp$key$
|
|
2369
|
+
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()) {
|
|
2370
|
+
payload += $jscomp$key$m667091202$9$filePayload.value;
|
|
2361
2371
|
}
|
|
2362
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2372
|
+
return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
|
|
2363
2373
|
});
|
|
2364
2374
|
};
|
|
2365
2375
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2864,8 +2874,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2864
2874
|
throw Error(message);
|
|
2865
2875
|
}
|
|
2866
2876
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2867
|
-
var $jscomp$templatelit$
|
|
2868
|
-
["\\0"]), $jscomp$templatelit$
|
|
2877
|
+
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"],
|
|
2878
|
+
["\\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"};
|
|
2869
2879
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2870
2880
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2871
2881
|
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 ##############################");
|
|
@@ -2879,14 +2889,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
2879
2889
|
return fn.toString().indexOf("`") === -1;
|
|
2880
2890
|
}
|
|
2881
2891
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2882
|
-
return tag($jscomp$templatelit$
|
|
2892
|
+
return tag($jscomp$templatelit$1274514361$5);
|
|
2883
2893
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2884
|
-
return tag($jscomp$templatelit$
|
|
2894
|
+
return tag($jscomp$templatelit$1274514361$6);
|
|
2885
2895
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2886
|
-
return tag($jscomp$templatelit$
|
|
2896
|
+
return tag($jscomp$templatelit$1274514361$7);
|
|
2887
2897
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2888
|
-
return tag($jscomp$templatelit$
|
|
2889
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
2898
|
+
return tag($jscomp$templatelit$1274514361$8);
|
|
2899
|
+
}), 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);
|
|
2890
2900
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
2891
2901
|
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)) ?
|
|
2892
2902
|
!0 : !1;
|
|
@@ -3108,16 +3118,16 @@ module$exports$safevalues$dom$elements$anchor.setHref = function(anchor, url) {
|
|
|
3108
3118
|
module$exports$safevalues$dom$elements$anchor.setHrefLite = function(anchor, url) {
|
|
3109
3119
|
module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (anchor.href = url);
|
|
3110
3120
|
};
|
|
3111
|
-
var module$
|
|
3112
|
-
module$
|
|
3121
|
+
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"};
|
|
3122
|
+
function module$contents$safevalues$dom$elements$area_setHref(area, url) {
|
|
3113
3123
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3114
3124
|
sanitizedUrl !== void 0 && (area.href = sanitizedUrl);
|
|
3115
|
-
}
|
|
3116
|
-
var module$
|
|
3117
|
-
module$
|
|
3125
|
+
}
|
|
3126
|
+
;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"};
|
|
3127
|
+
function module$contents$safevalues$dom$elements$base_setHref(baseEl, url) {
|
|
3118
3128
|
baseEl.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3119
|
-
}
|
|
3120
|
-
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"};
|
|
3129
|
+
}
|
|
3130
|
+
;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"};
|
|
3121
3131
|
module$exports$safevalues$dom$elements$button.setFormaction = function(button, url) {
|
|
3122
3132
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3123
3133
|
sanitizedUrl !== void 0 && (button.formAction = sanitizedUrl);
|
|
@@ -3242,11 +3252,11 @@ function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(el
|
|
|
3242
3252
|
function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
|
|
3243
3253
|
return elOrRoot.nodeType === 1;
|
|
3244
3254
|
}
|
|
3245
|
-
;var module$
|
|
3246
|
-
module$
|
|
3255
|
+
;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"};
|
|
3256
|
+
function module$contents$safevalues$dom$elements$embed_setSrc(embedEl, url) {
|
|
3247
3257
|
embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3248
|
-
}
|
|
3249
|
-
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"};
|
|
3258
|
+
}
|
|
3259
|
+
;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"};
|
|
3250
3260
|
module$exports$safevalues$dom$elements$form.setAction = function(form, url) {
|
|
3251
3261
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3252
3262
|
sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
|
|
@@ -3288,9 +3298,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3288
3298
|
}
|
|
3289
3299
|
}
|
|
3290
3300
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError = function(type, intent) {
|
|
3291
|
-
var $jscomp$tmp$error$
|
|
3292
|
-
this.message = $jscomp$tmp$error$
|
|
3293
|
-
"stack" in $jscomp$tmp$error$
|
|
3301
|
+
var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
|
|
3302
|
+
this.message = $jscomp$tmp$error$240424914$1.message;
|
|
3303
|
+
"stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
|
|
3294
3304
|
this.type = type;
|
|
3295
3305
|
this.intent = intent;
|
|
3296
3306
|
this.name = "TypeCannotBeUsedWithIntentError";
|
|
@@ -3398,7 +3408,7 @@ module$exports$safevalues$dom$globals$window.getStyleNonce = function(documentOr
|
|
|
3398
3408
|
};
|
|
3399
3409
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, documentOrWindow) {
|
|
3400
3410
|
documentOrWindow = documentOrWindow === void 0 ? document : documentOrWindow;
|
|
3401
|
-
var $jscomp$optchain$
|
|
3411
|
+
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]");
|
|
3402
3412
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3403
3413
|
}
|
|
3404
3414
|
;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"};
|
|
@@ -3477,8 +3487,8 @@ var module$exports$safevalues$dom$elements$style = {}, module$contents$safevalue
|
|
|
3477
3487
|
module$exports$safevalues$dom$elements$style.setTextContent = function(elem, safeStyleSheet) {
|
|
3478
3488
|
elem.textContent = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet(safeStyleSheet);
|
|
3479
3489
|
};
|
|
3480
|
-
var module$
|
|
3481
|
-
module$
|
|
3490
|
+
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"];
|
|
3491
|
+
function module$contents$safevalues$dom$elements$svg_setAttribute(svg, attr, value) {
|
|
3482
3492
|
var attrLower = attr.toLowerCase();
|
|
3483
3493
|
if (module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES.indexOf(attrLower) !== -1 || attrLower.indexOf("on") === 0) {
|
|
3484
3494
|
var msg = "";
|
|
@@ -3486,8 +3496,8 @@ module$exports$safevalues$dom$elements$svg.setAttribute = function(svg, attr, va
|
|
|
3486
3496
|
throw Error(msg);
|
|
3487
3497
|
}
|
|
3488
3498
|
svg.setAttribute(attr, value);
|
|
3489
|
-
}
|
|
3490
|
-
goog.debug = {};
|
|
3499
|
+
}
|
|
3500
|
+
;goog.debug = {};
|
|
3491
3501
|
function module$contents$goog$debug$Error_DebugError(msg, cause) {
|
|
3492
3502
|
if (Error.captureStackTrace) {
|
|
3493
3503
|
Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
|
|
@@ -4632,8 +4642,8 @@ goog.log.info = function(logger, msg, exception) {
|
|
|
4632
4642
|
goog.log.fine = function(logger, msg, exception) {
|
|
4633
4643
|
goog.log.ENABLED && logger && goog.log.log(logger, goog.log.Level.FINE, msg, exception);
|
|
4634
4644
|
};
|
|
4635
|
-
var module$
|
|
4636
|
-
module$
|
|
4645
|
+
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"};
|
|
4646
|
+
function module$contents$safevalues$dom$elements$svg_use_setHref(useEl, url) {
|
|
4637
4647
|
var scheme = module$contents$safevalues$builders$url_builders_extractScheme(url);
|
|
4638
4648
|
if (scheme === "javascript:" || scheme === "data:") {
|
|
4639
4649
|
if (goog.DEBUG) {
|
|
@@ -4643,20 +4653,23 @@ module$exports$safevalues$dom$elements$svg_use.setHref = function(useEl, url) {
|
|
|
4643
4653
|
} else {
|
|
4644
4654
|
useEl.setAttribute("href", url);
|
|
4645
4655
|
}
|
|
4646
|
-
}
|
|
4647
|
-
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"};
|
|
4648
|
-
module$
|
|
4656
|
+
}
|
|
4657
|
+
;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"};
|
|
4658
|
+
function module$contents$safevalues$dom$globals$document_write(doc, text) {
|
|
4649
4659
|
doc.write((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(text));
|
|
4650
|
-
}
|
|
4660
|
+
}
|
|
4661
|
+
module$exports$safevalues$dom$globals$document.write = module$contents$safevalues$dom$globals$document_write;
|
|
4651
4662
|
var module$contents$safevalues$dom$globals$document_ValueType;
|
|
4652
|
-
module$
|
|
4663
|
+
function module$contents$safevalues$dom$globals$document_execCommand(doc, command, value) {
|
|
4653
4664
|
var commandString = String(command), valueArgument = value;
|
|
4654
4665
|
commandString.toLowerCase() === "inserthtml" && (valueArgument = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(value));
|
|
4655
4666
|
return doc.execCommand(commandString, !1, valueArgument);
|
|
4656
|
-
}
|
|
4657
|
-
module$exports$safevalues$dom$globals$document.
|
|
4667
|
+
}
|
|
4668
|
+
module$exports$safevalues$dom$globals$document.execCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4669
|
+
function module$contents$safevalues$dom$globals$document_execCommandInsertHtml(doc, html) {
|
|
4658
4670
|
return doc.execCommand("insertHTML", !1, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4659
|
-
}
|
|
4671
|
+
}
|
|
4672
|
+
module$exports$safevalues$dom$globals$document.execCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4660
4673
|
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"};
|
|
4661
4674
|
module$exports$safevalues$dom$globals$dom_parser.parseHtml = function(parser, html) {
|
|
4662
4675
|
return module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, html, "text/html");
|
|
@@ -4681,9 +4694,9 @@ function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parse
|
|
|
4681
4694
|
module$exports$safevalues$dom$globals$dom_parser.parseFromString = module$contents$safevalues$dom$globals$dom_parser_parseFromString;
|
|
4682
4695
|
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"};
|
|
4683
4696
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4684
|
-
var $jscomp$tmp$error$
|
|
4685
|
-
this.message = $jscomp$tmp$error$
|
|
4686
|
-
"stack" in $jscomp$tmp$error$
|
|
4697
|
+
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.");
|
|
4698
|
+
this.message = $jscomp$tmp$error$m991617773$25.message;
|
|
4699
|
+
"stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
|
|
4687
4700
|
this.url = url;
|
|
4688
4701
|
this.typeName = typeName;
|
|
4689
4702
|
this.contentType = contentType;
|
|
@@ -4695,48 +4708,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4695
4708
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4696
4709
|
}
|
|
4697
4710
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4698
|
-
var response, $jscomp$optchain$
|
|
4699
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4700
|
-
if ($jscomp$generator$context$
|
|
4701
|
-
return $jscomp$generator$context$
|
|
4702
|
-
}
|
|
4703
|
-
response = $jscomp$generator$context$
|
|
4704
|
-
mimeType = ($jscomp$optchain$
|
|
4705
|
-
return $jscomp$generator$context$
|
|
4711
|
+
var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
|
|
4712
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
|
|
4713
|
+
if ($jscomp$generator$context$m991617773$29.nextAddress == 1) {
|
|
4714
|
+
return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4715
|
+
}
|
|
4716
|
+
response = $jscomp$generator$context$m991617773$29.yieldResult;
|
|
4717
|
+
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();
|
|
4718
|
+
return $jscomp$generator$context$m991617773$29.return({html:function() {
|
|
4706
4719
|
var text;
|
|
4707
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4708
|
-
if ($jscomp$generator$context$
|
|
4720
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
|
|
4721
|
+
if ($jscomp$generator$context$m991617773$26.nextAddress == 1) {
|
|
4709
4722
|
if (mimeType !== "text/html") {
|
|
4710
4723
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4711
4724
|
}
|
|
4712
|
-
return $jscomp$generator$context$
|
|
4725
|
+
return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
|
|
4713
4726
|
}
|
|
4714
|
-
text = $jscomp$generator$context$
|
|
4715
|
-
return $jscomp$generator$context$
|
|
4727
|
+
text = $jscomp$generator$context$m991617773$26.yieldResult;
|
|
4728
|
+
return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4716
4729
|
});
|
|
4717
4730
|
}, script:function() {
|
|
4718
4731
|
var text;
|
|
4719
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4720
|
-
if ($jscomp$generator$context$
|
|
4732
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
|
|
4733
|
+
if ($jscomp$generator$context$m991617773$27.nextAddress == 1) {
|
|
4721
4734
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4722
4735
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4723
4736
|
}
|
|
4724
|
-
return $jscomp$generator$context$
|
|
4737
|
+
return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
|
|
4725
4738
|
}
|
|
4726
|
-
text = $jscomp$generator$context$
|
|
4727
|
-
return $jscomp$generator$context$
|
|
4739
|
+
text = $jscomp$generator$context$m991617773$27.yieldResult;
|
|
4740
|
+
return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4728
4741
|
});
|
|
4729
4742
|
}, styleSheet:function() {
|
|
4730
4743
|
var text;
|
|
4731
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4732
|
-
if ($jscomp$generator$context$
|
|
4744
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
|
|
4745
|
+
if ($jscomp$generator$context$m991617773$28.nextAddress == 1) {
|
|
4733
4746
|
if (mimeType !== "text/css") {
|
|
4734
4747
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4735
4748
|
}
|
|
4736
|
-
return $jscomp$generator$context$
|
|
4749
|
+
return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
|
|
4737
4750
|
}
|
|
4738
|
-
text = $jscomp$generator$context$
|
|
4739
|
-
return $jscomp$generator$context$
|
|
4751
|
+
text = $jscomp$generator$context$m991617773$28.yieldResult;
|
|
4752
|
+
return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4740
4753
|
});
|
|
4741
4754
|
}});
|
|
4742
4755
|
});
|
|
@@ -4744,11 +4757,12 @@ function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init)
|
|
|
4744
4757
|
module$exports$safevalues$dom$globals$fetch.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4745
4758
|
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"};
|
|
4746
4759
|
module$exports$safevalues$dom$globals$global.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4747
|
-
module$
|
|
4760
|
+
function module$contents$safevalues$dom$globals$global_globalEval(win, script) {
|
|
4748
4761
|
var trustedScript = module$contents$safevalues$internals$script_impl_unwrapScript(script), result = win.eval(trustedScript);
|
|
4749
4762
|
result === trustedScript && (result = win.eval(trustedScript.toString()));
|
|
4750
4763
|
return result;
|
|
4751
|
-
}
|
|
4764
|
+
}
|
|
4765
|
+
module$exports$safevalues$dom$globals$global.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4752
4766
|
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"};
|
|
4753
4767
|
module$exports$safevalues$dom$globals$location.setHref = function(loc, url) {
|
|
4754
4768
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
@@ -4769,11 +4783,11 @@ module$exports$safevalues$dom$globals$location.mockableLocation = {setHref:funct
|
|
|
4769
4783
|
}, assign:function(loc, url) {
|
|
4770
4784
|
loc.assign(url);
|
|
4771
4785
|
}};
|
|
4772
|
-
var module$
|
|
4773
|
-
module$
|
|
4786
|
+
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"};
|
|
4787
|
+
function module$contents$safevalues$dom$globals$range_createContextualFragment(range, html) {
|
|
4774
4788
|
return range.createContextualFragment((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4775
|
-
}
|
|
4776
|
-
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"};
|
|
4789
|
+
}
|
|
4790
|
+
;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"};
|
|
4777
4791
|
module$exports$safevalues$dom$globals$service_worker_container.register = function(container, scriptURL, options) {
|
|
4778
4792
|
return container.register(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(scriptURL), options);
|
|
4779
4793
|
};
|
|
@@ -4797,11 +4811,8 @@ module$exports$safevalues$dom$globals$worker.importScripts = function(scope) {
|
|
|
4797
4811
|
};
|
|
4798
4812
|
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"};
|
|
4799
4813
|
module$exports$safevalues$dom$index.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4800
|
-
module$exports$safevalues$dom$index.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4801
|
-
module$exports$safevalues$dom$index.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4802
4814
|
module$exports$safevalues$dom$index.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4803
4815
|
module$exports$safevalues$dom$index.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4804
|
-
module$exports$safevalues$dom$index.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4805
4816
|
module$exports$safevalues$dom$index.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4806
4817
|
module$exports$safevalues$dom$index.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4807
4818
|
module$exports$safevalues$dom$index.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
@@ -4809,21 +4820,16 @@ module$exports$safevalues$dom$index.safeLinkEl = module$exports$safevalues$dom$e
|
|
|
4809
4820
|
module$exports$safevalues$dom$index.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4810
4821
|
module$exports$safevalues$dom$index.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4811
4822
|
module$exports$safevalues$dom$index.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4812
|
-
module$exports$safevalues$dom$index.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4813
|
-
module$exports$safevalues$dom$index.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4814
|
-
module$exports$safevalues$dom$index.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4815
4823
|
module$exports$safevalues$dom$index.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4816
|
-
module$exports$safevalues$dom$index.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4817
4824
|
module$exports$safevalues$dom$index.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4818
|
-
module$exports$safevalues$dom$index.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4819
4825
|
module$exports$safevalues$dom$index.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4820
4826
|
module$exports$safevalues$dom$index.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4821
4827
|
module$exports$safevalues$dom$index.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4822
4828
|
module$exports$safevalues$dom$index.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4823
4829
|
module$exports$safevalues$dom$index.setAnchorHref = module$exports$safevalues$dom$elements$anchor.setHref;
|
|
4824
4830
|
module$exports$safevalues$dom$index.setAnchorHrefLite = module$exports$safevalues$dom$elements$anchor.setHrefLite;
|
|
4825
|
-
module$exports$safevalues$dom$index.setAreaHref = module$
|
|
4826
|
-
module$exports$safevalues$dom$index.setBaseHref = module$
|
|
4831
|
+
module$exports$safevalues$dom$index.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4832
|
+
module$exports$safevalues$dom$index.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4827
4833
|
module$exports$safevalues$dom$index.setButtonFormaction = module$exports$safevalues$dom$elements$button.setFormaction;
|
|
4828
4834
|
module$exports$safevalues$dom$index.buildPrefixedAttributeSetter = module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter;
|
|
4829
4835
|
module$exports$safevalues$dom$index.elementInsertAdjacentHtml = module$exports$safevalues$dom$elements$element.insertAdjacentHtml;
|
|
@@ -4831,8 +4837,9 @@ module$exports$safevalues$dom$index.setElementCssText = module$exports$safevalue
|
|
|
4831
4837
|
module$exports$safevalues$dom$index.setElementInnerHtml = module$exports$safevalues$dom$elements$element.setInnerHtml;
|
|
4832
4838
|
module$exports$safevalues$dom$index.setElementOuterHtml = module$exports$safevalues$dom$elements$element.setOuterHtml;
|
|
4833
4839
|
module$exports$safevalues$dom$index.setElementPrefixedAttribute = module$exports$safevalues$dom$elements$element.setPrefixedAttribute;
|
|
4834
|
-
module$exports$safevalues$dom$index.setEmbedSrc = module$
|
|
4840
|
+
module$exports$safevalues$dom$index.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4835
4841
|
module$exports$safevalues$dom$index.setFormAction = module$exports$safevalues$dom$elements$form.setAction;
|
|
4842
|
+
module$exports$safevalues$dom$index.setFormActionLite = module$exports$safevalues$dom$elements$form.setActionLite;
|
|
4836
4843
|
module$exports$safevalues$dom$index.IframeIntent = module$exports$safevalues$dom$elements$iframe.Intent;
|
|
4837
4844
|
module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError;
|
|
4838
4845
|
module$exports$safevalues$dom$index.setIframeSrc = module$exports$safevalues$dom$elements$iframe.setSrc;
|
|
@@ -4846,20 +4853,20 @@ module$exports$safevalues$dom$index.setObjectData = module$exports$safevalues$do
|
|
|
4846
4853
|
module$exports$safevalues$dom$index.setScriptSrc = module$exports$safevalues$dom$elements$script.setSrc;
|
|
4847
4854
|
module$exports$safevalues$dom$index.setScriptTextContent = module$exports$safevalues$dom$elements$script.setTextContent;
|
|
4848
4855
|
module$exports$safevalues$dom$index.setStyleTextContent = module$exports$safevalues$dom$elements$style.setTextContent;
|
|
4849
|
-
module$exports$safevalues$dom$index.setSvgAttribute = module$
|
|
4850
|
-
module$exports$safevalues$dom$index.setSvgUseHref = module$
|
|
4851
|
-
module$exports$safevalues$dom$index.documentExecCommand = module$
|
|
4852
|
-
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$
|
|
4853
|
-
module$exports$safevalues$dom$index.documentWrite = module$
|
|
4856
|
+
module$exports$safevalues$dom$index.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4857
|
+
module$exports$safevalues$dom$index.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4858
|
+
module$exports$safevalues$dom$index.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4859
|
+
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4860
|
+
module$exports$safevalues$dom$index.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4854
4861
|
module$exports$safevalues$dom$index.domParserParseFromString = module$exports$safevalues$dom$globals$dom_parser.parseFromString;
|
|
4855
4862
|
module$exports$safevalues$dom$index.domParserParseHtml = module$exports$safevalues$dom$globals$dom_parser.parseHtml;
|
|
4856
4863
|
module$exports$safevalues$dom$index.domParserParseXml = module$exports$safevalues$dom$globals$dom_parser.parseXml;
|
|
4857
|
-
module$exports$safevalues$dom$index.fetchResourceUrl = module$
|
|
4858
|
-
module$exports$safevalues$dom$index.globalEval = module$
|
|
4864
|
+
module$exports$safevalues$dom$index.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4865
|
+
module$exports$safevalues$dom$index.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4859
4866
|
module$exports$safevalues$dom$index.locationAssign = module$exports$safevalues$dom$globals$location.assign;
|
|
4860
4867
|
module$exports$safevalues$dom$index.locationReplace = module$exports$safevalues$dom$globals$location.replace;
|
|
4861
4868
|
module$exports$safevalues$dom$index.setLocationHref = module$exports$safevalues$dom$globals$location.setHref;
|
|
4862
|
-
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$
|
|
4869
|
+
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4863
4870
|
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$exports$safevalues$dom$globals$service_worker_container.register;
|
|
4864
4871
|
module$exports$safevalues$dom$index.objectUrlFromSafeSource = module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource;
|
|
4865
4872
|
module$exports$safevalues$dom$index.getScriptNonce = module$exports$safevalues$dom$globals$window.getScriptNonce;
|
|
@@ -4870,11 +4877,8 @@ module$exports$safevalues$dom$index.createSharedWorker = module$exports$safevalu
|
|
|
4870
4877
|
module$exports$safevalues$dom$index.workerGlobalScopeImportScripts = module$exports$safevalues$dom$globals$worker.importScripts;
|
|
4871
4878
|
var safevalues = {dom:{}};
|
|
4872
4879
|
safevalues.dom.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4873
|
-
safevalues.dom.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4874
|
-
safevalues.dom.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4875
4880
|
safevalues.dom.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4876
4881
|
safevalues.dom.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4877
|
-
safevalues.dom.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4878
4882
|
safevalues.dom.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4879
4883
|
safevalues.dom.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4880
4884
|
safevalues.dom.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
@@ -4882,21 +4886,16 @@ safevalues.dom.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
|
4882
4886
|
safevalues.dom.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4883
4887
|
safevalues.dom.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4884
4888
|
safevalues.dom.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4885
|
-
safevalues.dom.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4886
|
-
safevalues.dom.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4887
|
-
safevalues.dom.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4888
4889
|
safevalues.dom.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4889
|
-
safevalues.dom.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4890
4890
|
safevalues.dom.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4891
|
-
safevalues.dom.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4892
4891
|
safevalues.dom.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4893
4892
|
safevalues.dom.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4894
4893
|
safevalues.dom.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4895
4894
|
safevalues.dom.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4896
4895
|
safevalues.dom.setAnchorHref = module$exports$safevalues$dom$index.setAnchorHref;
|
|
4897
4896
|
safevalues.dom.setAnchorHrefLite = module$exports$safevalues$dom$index.setAnchorHrefLite;
|
|
4898
|
-
safevalues.dom.setAreaHref = module$
|
|
4899
|
-
safevalues.dom.setBaseHref = module$
|
|
4897
|
+
safevalues.dom.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4898
|
+
safevalues.dom.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4900
4899
|
safevalues.dom.setButtonFormaction = module$exports$safevalues$dom$index.setButtonFormaction;
|
|
4901
4900
|
safevalues.dom.buildPrefixedAttributeSetter = module$exports$safevalues$dom$index.buildPrefixedAttributeSetter;
|
|
4902
4901
|
safevalues.dom.elementInsertAdjacentHtml = module$exports$safevalues$dom$index.elementInsertAdjacentHtml;
|
|
@@ -4904,8 +4903,9 @@ safevalues.dom.setElementCssText = module$exports$safevalues$dom$index.setElemen
|
|
|
4904
4903
|
safevalues.dom.setElementInnerHtml = module$exports$safevalues$dom$index.setElementInnerHtml;
|
|
4905
4904
|
safevalues.dom.setElementOuterHtml = module$exports$safevalues$dom$index.setElementOuterHtml;
|
|
4906
4905
|
safevalues.dom.setElementPrefixedAttribute = module$exports$safevalues$dom$index.setElementPrefixedAttribute;
|
|
4907
|
-
safevalues.dom.setEmbedSrc = module$
|
|
4906
|
+
safevalues.dom.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4908
4907
|
safevalues.dom.setFormAction = module$exports$safevalues$dom$index.setFormAction;
|
|
4908
|
+
safevalues.dom.setFormActionLite = module$exports$safevalues$dom$index.setFormActionLite;
|
|
4909
4909
|
safevalues.dom.IframeIntent = module$exports$safevalues$dom$index.IframeIntent;
|
|
4910
4910
|
safevalues.dom.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError;
|
|
4911
4911
|
safevalues.dom.setIframeSrc = module$exports$safevalues$dom$index.setIframeSrc;
|
|
@@ -4919,20 +4919,20 @@ safevalues.dom.setObjectData = module$exports$safevalues$dom$index.setObjectData
|
|
|
4919
4919
|
safevalues.dom.setScriptSrc = module$exports$safevalues$dom$index.setScriptSrc;
|
|
4920
4920
|
safevalues.dom.setScriptTextContent = module$exports$safevalues$dom$index.setScriptTextContent;
|
|
4921
4921
|
safevalues.dom.setStyleTextContent = module$exports$safevalues$dom$index.setStyleTextContent;
|
|
4922
|
-
safevalues.dom.setSvgAttribute = module$
|
|
4923
|
-
safevalues.dom.setSvgUseHref = module$
|
|
4924
|
-
safevalues.dom.documentExecCommand = module$
|
|
4925
|
-
safevalues.dom.documentExecCommandInsertHtml = module$
|
|
4926
|
-
safevalues.dom.documentWrite = module$
|
|
4922
|
+
safevalues.dom.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4923
|
+
safevalues.dom.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4924
|
+
safevalues.dom.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4925
|
+
safevalues.dom.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4926
|
+
safevalues.dom.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4927
4927
|
safevalues.dom.domParserParseFromString = module$exports$safevalues$dom$index.domParserParseFromString;
|
|
4928
4928
|
safevalues.dom.domParserParseHtml = module$exports$safevalues$dom$index.domParserParseHtml;
|
|
4929
4929
|
safevalues.dom.domParserParseXml = module$exports$safevalues$dom$index.domParserParseXml;
|
|
4930
|
-
safevalues.dom.fetchResourceUrl = module$
|
|
4931
|
-
safevalues.dom.globalEval = module$
|
|
4930
|
+
safevalues.dom.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4931
|
+
safevalues.dom.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4932
4932
|
safevalues.dom.locationAssign = module$exports$safevalues$dom$index.locationAssign;
|
|
4933
4933
|
safevalues.dom.locationReplace = module$exports$safevalues$dom$index.locationReplace;
|
|
4934
4934
|
safevalues.dom.setLocationHref = module$exports$safevalues$dom$index.setLocationHref;
|
|
4935
|
-
safevalues.dom.rangeCreateContextualFragment = module$
|
|
4935
|
+
safevalues.dom.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4936
4936
|
safevalues.dom.serviceWorkerContainerRegister = module$exports$safevalues$dom$index.serviceWorkerContainerRegister;
|
|
4937
4937
|
safevalues.dom.objectUrlFromSafeSource = module$exports$safevalues$dom$index.objectUrlFromSafeSource;
|
|
4938
4938
|
safevalues.dom.getScriptNonce = module$exports$safevalues$dom$index.getScriptNonce;
|
|
@@ -6263,8 +6263,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6263
6263
|
}
|
|
6264
6264
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6265
6265
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6266
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6267
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6266
|
+
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()) {
|
|
6267
|
+
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;
|
|
6268
6268
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6269
6269
|
}
|
|
6270
6270
|
return urlQueryParams;
|
|
@@ -6275,8 +6275,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
|
|
|
6275
6275
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6276
6276
|
if (params.headers) {
|
|
6277
6277
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6278
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6279
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6278
|
+
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()) {
|
|
6279
|
+
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;
|
|
6280
6280
|
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);
|
|
6281
6281
|
}
|
|
6282
6282
|
}
|
|
@@ -6316,9 +6316,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6316
6316
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6317
6317
|
};
|
|
6318
6318
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6319
|
-
var $jscomp$this$
|
|
6319
|
+
var $jscomp$this$1237977804$4 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6320
6320
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6321
|
-
return $jscomp$this$
|
|
6321
|
+
return $jscomp$this$1237977804$4.requestService.send(params, responseCtor);
|
|
6322
6322
|
}));
|
|
6323
6323
|
};
|
|
6324
6324
|
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"};
|
|
@@ -6488,7 +6488,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_
|
|
|
6488
6488
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
|
|
6489
6489
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6490
6490
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
|
|
6491
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_on_init_within_reaction_throws_error__disable = !1;
|
|
6492
6491
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable = !1;
|
|
6493
6492
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6494
6493
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable = !1;
|
|
@@ -6502,9 +6501,7 @@ var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1,
|
|
|
6502
6501
|
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);
|
|
6503
6502
|
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);
|
|
6504
6503
|
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);
|
|
6505
|
-
goog.flags.
|
|
6506
|
-
!0);
|
|
6507
|
-
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);
|
|
6504
|
+
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);
|
|
6508
6505
|
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);
|
|
6509
6506
|
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);
|
|
6510
6507
|
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);
|
|
@@ -14950,6 +14947,7 @@ goog.Promise = function(resolver, opt_context) {
|
|
|
14950
14947
|
}
|
|
14951
14948
|
}
|
|
14952
14949
|
};
|
|
14950
|
+
goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
|
|
14953
14951
|
goog.Promise.LONG_STACK_TRACES = !1;
|
|
14954
14952
|
goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
|
|
14955
14953
|
goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
|
|
@@ -15064,7 +15062,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15064
15062
|
opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15065
15063
|
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?");
|
|
15066
15064
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15067
|
-
return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
|
|
15065
|
+
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);
|
|
15068
15066
|
};
|
|
15069
15067
|
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15070
15068
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
@@ -15075,14 +15073,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
|
|
|
15075
15073
|
};
|
|
15076
15074
|
goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
|
|
15077
15075
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
|
|
15078
|
-
var entry = goog.Promise.getCallbackEntry_(
|
|
15076
|
+
var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
|
|
15079
15077
|
entry.always = !0;
|
|
15080
15078
|
this.addCallbackEntry_(entry);
|
|
15081
15079
|
return this;
|
|
15082
15080
|
};
|
|
15083
15081
|
goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
|
|
15084
15082
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
|
|
15085
|
-
return this.addChildPromise_(null, onRejected, opt_context);
|
|
15083
|
+
return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
|
|
15086
15084
|
};
|
|
15087
15085
|
goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
15088
15086
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
@@ -16050,8 +16048,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16050
16048
|
this.replacements = new Map();
|
|
16051
16049
|
};
|
|
16052
16050
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16053
|
-
var $jscomp$this$
|
|
16054
|
-
return $jscomp$this$
|
|
16051
|
+
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) {
|
|
16052
|
+
return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
|
|
16055
16053
|
});
|
|
16056
16054
|
if (openedTags.length !== 0) {
|
|
16057
16055
|
if (goog.DEBUG) {
|
|
@@ -16269,8 +16267,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16269
16267
|
if (Array.isArray(token)) {
|
|
16270
16268
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16271
16269
|
} else {
|
|
16272
|
-
var $jscomp$optchain$
|
|
16273
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16270
|
+
var $jscomp$optchain$tmpm583190311$0 = void 0;
|
|
16271
|
+
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) {
|
|
16274
16272
|
tokens.push(token);
|
|
16275
16273
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16276
16274
|
return tokens;
|
|
@@ -16516,9 +16514,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16516
16514
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16517
16515
|
};
|
|
16518
16516
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16519
|
-
var $jscomp$this$
|
|
16517
|
+
var $jscomp$this$m583190311$26 = this;
|
|
16520
16518
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16521
|
-
return $jscomp$this$
|
|
16519
|
+
return $jscomp$this$m583190311$26.isWhitespace(c);
|
|
16522
16520
|
});
|
|
16523
16521
|
};
|
|
16524
16522
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16625,8 +16623,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16625
16623
|
return null;
|
|
16626
16624
|
}
|
|
16627
16625
|
if (token.lowercaseName === "url") {
|
|
16628
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16629
|
-
if ((($jscomp$optchain$
|
|
16626
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
|
|
16627
|
+
if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16630
16628
|
return null;
|
|
16631
16629
|
}
|
|
16632
16630
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(nextToken.value);
|
|
@@ -16649,8 +16647,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16649
16647
|
if (!this.allowKeyframes) {
|
|
16650
16648
|
return null;
|
|
16651
16649
|
}
|
|
16652
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16653
|
-
var rule = $jscomp$key$
|
|
16650
|
+
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()) {
|
|
16651
|
+
var rule = $jscomp$key$m1877845113$1$rule.value;
|
|
16654
16652
|
if (rule instanceof CSSKeyframeRule) {
|
|
16655
16653
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16656
16654
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16662,8 +16660,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16662
16660
|
if (!this.propertyAllowlist.has(name)) {
|
|
16663
16661
|
return !1;
|
|
16664
16662
|
}
|
|
16665
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16666
|
-
var discarder = $jscomp$key$
|
|
16663
|
+
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()) {
|
|
16664
|
+
var discarder = $jscomp$key$m1877845113$2$discarder.value;
|
|
16667
16665
|
if (discarder(name)) {
|
|
16668
16666
|
return !1;
|
|
16669
16667
|
}
|
|
@@ -16678,8 +16676,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16678
16676
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16679
16677
|
};
|
|
16680
16678
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16681
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16682
|
-
var name = $jscomp$key$
|
|
16679
|
+
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()) {
|
|
16680
|
+
var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16683
16681
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16684
16682
|
}
|
|
16685
16683
|
return sanitizedProperties;
|
|
@@ -16693,8 +16691,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16693
16691
|
return selector + " { " + sanitizedProperties + " }";
|
|
16694
16692
|
};
|
|
16695
16693
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16696
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16697
|
-
var rule = $jscomp$key$
|
|
16694
|
+
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()) {
|
|
16695
|
+
var rule = $jscomp$key$m1877845113$4$rule.value;
|
|
16698
16696
|
if (rule instanceof CSSStyleRule) {
|
|
16699
16697
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
16700
16698
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -16728,7 +16726,7 @@ function module$contents$safevalues$builders$html_sanitizer$inert_fragment_creat
|
|
|
16728
16726
|
var range = inertDocument.createRange();
|
|
16729
16727
|
range.selectNode(inertDocument.body);
|
|
16730
16728
|
var temporarySafeHtml = (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(dirtyHtml);
|
|
16731
|
-
return
|
|
16729
|
+
return module$contents$safevalues$dom$globals$range_createContextualFragment(range, temporarySafeHtml);
|
|
16732
16730
|
}
|
|
16733
16731
|
;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"};
|
|
16734
16732
|
function module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(node) {
|
|
@@ -16855,8 +16853,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16855
16853
|
return fragment;
|
|
16856
16854
|
};
|
|
16857
16855
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
16858
|
-
for (var $jscomp$this$
|
|
16859
|
-
return $jscomp$this$
|
|
16856
|
+
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) {
|
|
16857
|
+
return $jscomp$this$m1803429925$13.nodeFilter(n);
|
|
16860
16858
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
16861
16859
|
var sanitizedNode = void 0;
|
|
16862
16860
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -16891,8 +16889,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16891
16889
|
return this.createTextNode(textNode.data);
|
|
16892
16890
|
};
|
|
16893
16891
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
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$
|
|
16895
|
-
var $jscomp$destructuring$var31 = $jscomp$key$
|
|
16892
|
+
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()) {
|
|
16893
|
+
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);
|
|
16896
16894
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
16897
16895
|
switch(policy.policyAction) {
|
|
16898
16896
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -16924,9 +16922,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16924
16922
|
break;
|
|
16925
16923
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
16926
16924
|
if (this.resourceUrlPolicy) {
|
|
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$
|
|
16925
|
+
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 =
|
|
16928
16926
|
$jscomp$iter$35.next()) {
|
|
16929
|
-
var part = $jscomp$key$
|
|
16927
|
+
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);
|
|
16930
16928
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
16931
16929
|
}
|
|
16932
16930
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -16970,8 +16968,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16970
16968
|
if (!conditions) {
|
|
16971
16969
|
return !0;
|
|
16972
16970
|
}
|
|
16973
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
16974
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16971
|
+
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()) {
|
|
16972
|
+
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;
|
|
16975
16973
|
if (value && !expectedValues.has(value)) {
|
|
16976
16974
|
return !1;
|
|
16977
16975
|
}
|
|
@@ -16986,8 +16984,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
16986
16984
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
16987
16985
|
};
|
|
16988
16986
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
16989
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
16990
|
-
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16987
|
+
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()) {
|
|
16988
|
+
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;
|
|
16991
16989
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
16992
16990
|
}
|
|
16993
16991
|
return {parts:parts};
|
|
@@ -17044,8 +17042,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17044
17042
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17045
17043
|
};
|
|
17046
17044
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17047
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17048
|
-
var element = $jscomp$key$
|
|
17045
|
+
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()) {
|
|
17046
|
+
var element = $jscomp$key$m1412690177$21$element.value;
|
|
17049
17047
|
element = element.toUpperCase();
|
|
17050
17048
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17051
17049
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17063,8 +17061,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17063
17061
|
throw Error("Element: " + element + " is not a custom element");
|
|
17064
17062
|
}
|
|
17065
17063
|
if (allowedAttributes) {
|
|
17066
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17067
|
-
elementPolicy.set($jscomp$key$
|
|
17064
|
+
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()) {
|
|
17065
|
+
elementPolicy.set($jscomp$key$m1412690177$22$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17068
17066
|
}
|
|
17069
17067
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17070
17068
|
} else {
|
|
@@ -17074,15 +17072,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17074
17072
|
return this;
|
|
17075
17073
|
};
|
|
17076
17074
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17077
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17078
|
-
var attribute = $jscomp$key$
|
|
17075
|
+
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()) {
|
|
17076
|
+
var attribute = $jscomp$key$m1412690177$23$attribute.value;
|
|
17079
17077
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17080
17078
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17081
17079
|
}
|
|
17082
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17083
|
-
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17080
|
+
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()) {
|
|
17081
|
+
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$ =
|
|
17084
17082
|
$jscomp$iter$42.next()) {
|
|
17085
|
-
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17083
|
+
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;
|
|
17086
17084
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17087
17085
|
}
|
|
17088
17086
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17091,8 +17089,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17091
17089
|
return this;
|
|
17092
17090
|
};
|
|
17093
17091
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.allowDataAttributes = function(attributes) {
|
|
17094
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17095
|
-
var attribute = $jscomp$key$
|
|
17092
|
+
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()) {
|
|
17093
|
+
var attribute = $jscomp$key$m1412690177$26$attribute.value;
|
|
17096
17094
|
if (attribute.indexOf("data-") !== 0) {
|
|
17097
17095
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17098
17096
|
}
|
|
@@ -17154,7 +17152,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17154
17152
|
return this;
|
|
17155
17153
|
};
|
|
17156
17154
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17157
|
-
var $jscomp$this$
|
|
17155
|
+
var $jscomp$this$m1412690177$17 = this;
|
|
17158
17156
|
this.extendSanitizerTableForCss();
|
|
17159
17157
|
var propertyDiscarders = [];
|
|
17160
17158
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17164,9 +17162,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17164
17162
|
return /^transition(-|$)/.test(property);
|
|
17165
17163
|
});
|
|
17166
17164
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
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$
|
|
17165
|
+
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);
|
|
17168
17166
|
}, function(cssText) {
|
|
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$
|
|
17167
|
+
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);
|
|
17170
17168
|
}, this.resourceUrlPolicy);
|
|
17171
17169
|
};
|
|
17172
17170
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17416,12 +17414,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17416
17414
|
}
|
|
17417
17415
|
try {
|
|
17418
17416
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17419
|
-
} catch ($jscomp$unused$catch$
|
|
17417
|
+
} catch ($jscomp$unused$catch$442189172$0) {
|
|
17420
17418
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17421
17419
|
}
|
|
17422
17420
|
try {
|
|
17423
17421
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17424
|
-
} catch ($jscomp$unused$catch$
|
|
17422
|
+
} catch ($jscomp$unused$catch$442189172$1) {
|
|
17425
17423
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17426
17424
|
}
|
|
17427
17425
|
return !1;
|
|
@@ -19006,10 +19004,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19006
19004
|
this.errorDispatched_ = !1;
|
|
19007
19005
|
this.active_ = !0;
|
|
19008
19006
|
this.xhr_ = this.createXhr();
|
|
19009
|
-
this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
|
|
19010
|
-
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
|
|
19007
|
+
this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
|
|
19008
|
+
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
|
|
19011
19009
|
this.onProgressHandler_(e, !0);
|
|
19012
|
-
}, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
|
|
19010
|
+
}, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
|
|
19013
19011
|
try {
|
|
19014
19012
|
goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
|
|
19015
19013
|
} catch (err) {
|
|
@@ -19274,7 +19272,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19274
19272
|
ee.apiclient = {};
|
|
19275
19273
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19276
19274
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19277
|
-
ee.apiclient.API_CLIENT_VERSION = "1.
|
|
19275
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.1";
|
|
19278
19276
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19279
19277
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19280
19278
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19572,8 +19570,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19572
19570
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19573
19571
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19574
19572
|
method = method || "POST";
|
|
19575
|
-
var headers = {"Content-Type":contentType}, version = "1.
|
|
19576
|
-
version === "1.
|
|
19573
|
+
var headers = {"Content-Type":contentType}, version = "1.4.1";
|
|
19574
|
+
version === "1.4.1" && (version = "latest");
|
|
19577
19575
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19578
19576
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19579
19577
|
if (authToken != null) {
|
|
@@ -25042,10 +25040,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
|
|
|
25042
25040
|
};
|
|
25043
25041
|
goog.dom.vendor = {};
|
|
25044
25042
|
goog.dom.vendor.getVendorJsPrefix = function() {
|
|
25045
|
-
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" :
|
|
25043
|
+
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
|
|
25046
25044
|
};
|
|
25047
25045
|
goog.dom.vendor.getVendorPrefix = function() {
|
|
25048
|
-
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" :
|
|
25046
|
+
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
|
|
25049
25047
|
};
|
|
25050
25048
|
goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
|
|
25051
25049
|
if (opt_object && propertyName in opt_object) {
|
|
@@ -27095,29 +27093,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27095
27093
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27096
27094
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27097
27095
|
(function() {
|
|
27098
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27099
|
-
orderedParamLists = [["name", "
|
|
27100
|
-
|
|
27101
|
-
"collection opt_description
|
|
27102
|
-
"collection opt_description
|
|
27103
|
-
["
|
|
27104
|
-
"
|
|
27105
|
-
["
|
|
27106
|
-
"
|
|
27107
|
-
["
|
|
27108
|
-
|
|
27109
|
-
"
|
|
27110
|
-
"
|
|
27111
|
-
[
|
|
27112
|
-
[ee.ApiFunction.
|
|
27113
|
-
module$contents$ee$batch_Export.
|
|
27114
|
-
ee.ComputedObject.prototype.
|
|
27115
|
-
ee.data.
|
|
27116
|
-
ee.data.
|
|
27117
|
-
ee.
|
|
27118
|
-
ee.Filter, ee.Filter.
|
|
27119
|
-
ee.Image.prototype.
|
|
27120
|
-
ee.ImageCollection.prototype.
|
|
27096
|
+
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(" "),
|
|
27097
|
+
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",
|
|
27098
|
+
"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(" "),
|
|
27099
|
+
"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(" "),
|
|
27100
|
+
"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"],
|
|
27101
|
+
["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",
|
|
27102
|
+
"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"],
|
|
27103
|
+
["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"],
|
|
27104
|
+
["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"],
|
|
27105
|
+
["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",
|
|
27106
|
+
"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",
|
|
27107
|
+
"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"],
|
|
27108
|
+
["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"],
|
|
27109
|
+
["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
|
|
27110
|
+
[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,
|
|
27111
|
+
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,
|
|
27112
|
+
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,
|
|
27113
|
+
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,
|
|
27114
|
+
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,
|
|
27115
|
+
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,
|
|
27116
|
+
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,
|
|
27117
|
+
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,
|
|
27118
|
+
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) {
|
|
27121
27119
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27122
27120
|
});
|
|
27123
27121
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|