c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
19 lines (16 loc) • 288 B
JavaScript
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_;