UNPKG

ol

Version:

OpenLayers mapping library

21 lines (18 loc) 397 B
/** * @module ol/format/filter/IsNull */ import Comparison from './Comparison.js'; /** * @classdesc * Represents a `<PropertyIsNull>` comparison operator. * @api */ class IsNull extends Comparison { /** * @param {!string} propertyName Name of the context property to compare. */ constructor(propertyName) { super('PropertyIsNull', propertyName); } } export default IsNull;