Files
openlayers/src/ol/functions.js
2016-04-01 10:32:15 +02:00

18 lines
258 B
JavaScript

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;
};