Files
openlayers/src/ol/functions.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

22 lines
320 B
JavaScript

/**
* @module ol/functions
*/
var _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;
};
export default _ol_functions_;