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