Transformed
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
goog.provide('ol.functions');
|
||||
/**
|
||||
* @module ol/functions
|
||||
*/
|
||||
var _ol_functions_ = {};
|
||||
|
||||
/**
|
||||
* Always returns true.
|
||||
* @returns {boolean} true.
|
||||
*/
|
||||
ol.functions.TRUE = function() {
|
||||
_ol_functions_.TRUE = function() {
|
||||
return true;
|
||||
};
|
||||
|
||||
@@ -12,6 +15,7 @@ ol.functions.TRUE = function() {
|
||||
* Always returns false.
|
||||
* @returns {boolean} false.
|
||||
*/
|
||||
ol.functions.FALSE = function() {
|
||||
_ol_functions_.FALSE = function() {
|
||||
return false;
|
||||
};
|
||||
export default _ol_functions_;
|
||||
|
||||
Reference in New Issue
Block a user