UNPKG

openlayers

Version:

Build tools and sources for developing OpenLayers based mapping applications

18 lines (15 loc) 258 B
goog.provide('ol.functions'); /** * Always returns true. * @returns {boolean} true. */ ol.functions.TRUE = function() { return true; }; /** * Always returns false. * @returns {boolean} false. */ ol.functions.FALSE = function() { return false; };