ol 10.4.1-dev.1742978375055 → 10.4.1-dev.1743023060994

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/expr/cpu.js CHANGED
@@ -502,7 +502,7 @@ function compileMatchExpression(expression, context) {
502
502
  }
503
503
  return (context) => {
504
504
  const value = args[0](context);
505
- for (let i = 1; i < length; i += 2) {
505
+ for (let i = 1; i < length - 1; i += 2) {
506
506
  if (value === args[i](context)) {
507
507
  return args[i + 1](context);
508
508
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol",
3
- "version": "10.4.1-dev.1742978375055",
3
+ "version": "10.4.1-dev.1743023060994",
4
4
  "description": "OpenLayers mapping library",
5
5
  "keywords": [
6
6
  "map",
package/util.js CHANGED
@@ -33,4 +33,4 @@ export function getUid(obj) {
33
33
  * OpenLayers version.
34
34
  * @type {string}
35
35
  */
36
- export const VERSION = '10.4.1-dev.1742978375055';
36
+ export const VERSION = '10.4.1-dev.1743023060994';