Remove goog.isDef from colormatrix.js (-12 B)

This commit is contained in:
Tim Schaub
2015-09-18 15:05:16 +09:00
parent c8e9525f3b
commit 4c0d857f41
2 changed files with 26 additions and 12 deletions
+10
View File
@@ -240,3 +240,13 @@ ol.WEBGL_EXTENSIONS; // value is set in `ol.has`
ol.inherits =
goog.inherits;
// note that the newline above is necessary to satisfy the linter
/**
* Determine if a value is defined.
* @param {?} value The value to test.
* @return {boolean} The value is defined.
*/
ol.isDef = function(value) {
return value !== undefined;
};