@google/earthengine 0.1.409 → 0.1.410

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "0.1.409",
3
+ "version": "0.1.410",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
package/src/apiclient.js CHANGED
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '0.1.409';
27
+ const API_CLIENT_VERSION = '0.1.410';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
@@ -22,7 +22,7 @@ goog.requireType('ee.Function');
22
22
  * ComputedObjects come in two flavors:
23
23
  * 1. If func != null and args != null, the ComputedObject is encoded as an
24
24
  * invocation of func with args.
25
- * 2. If func == null and agrs == null, the ComputedObject is a variable
25
+ * 2. If func == null and args == null, the ComputedObject is a variable
26
26
  * reference. The variable name is stored in its varName member. Note that
27
27
  * in this case, varName may still be null; this allows the name to be
28
28
  * deterministically generated at a later time. This is used to generate
package/src/ee.js CHANGED
@@ -249,7 +249,7 @@ ee.call = function(func, var_args) {
249
249
  }
250
250
  // Extract var_args.
251
251
  const args = Array.prototype.slice.call(arguments, 1);
252
- // Call func.call with the extracted agrs.
252
+ // Call func.call with the extracted args.
253
253
  return ee.Function.prototype.call.apply(func, args);
254
254
  };
255
255