18 lines
258 B
JavaScript
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;
|
|
};
|