ol 10.0.1-dev.1722904056769 → 10.0.1-dev.1723061166717

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/format/GML2.js CHANGED
@@ -218,7 +218,7 @@ class GML2 extends GMLBase {
218
218
  const properties = feature.getProperties();
219
219
  for (const key in properties) {
220
220
  const value = properties[key];
221
- if (value !== null) {
221
+ if (value !== null && value !== undefined) {
222
222
  keys.push(key);
223
223
  values.push(value);
224
224
  if (
package/format/GML3.js CHANGED
@@ -849,7 +849,7 @@ class GML3 extends GMLBase {
849
849
  const properties = feature.getProperties();
850
850
  for (const key in properties) {
851
851
  const value = properties[key];
852
- if (value !== null) {
852
+ if (value !== null && value !== undefined) {
853
853
  keys.push(key);
854
854
  values.push(value);
855
855
  if (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol",
3
- "version": "10.0.1-dev.1722904056769",
3
+ "version": "10.0.1-dev.1723061166717",
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.0.1-dev.1722904056769';
36
+ export const VERSION = '10.0.1-dev.1723061166717';