Explorar el Código

Removed the unnecessary utils._lodashIncludes private (this was a leftover from an old strategy for this feature).

fredck hace 10 años
padre
commit
cc090bef63
Se han modificado 1 ficheros con 1 adiciones y 6 borrados
  1. 1 6
      packages/ckeditor5-engine/src/utils.js

+ 1 - 6
packages/ckeditor5-engine/src/utils.js

@@ -13,12 +13,7 @@
  */
 
 CKEDITOR.define( [ 'utils-lodash', 'lib/lodash/lodash-ckeditor' ], function( lodashIncludes, lodash ) {
-	var utils = {
-		/**
-		 * The list of methods defined in `utils` that come from lodash.
-		 */
-		_lodashIncludes: lodashIncludes
-	};
+	var utils = {};
 
 	// Extend "utils" with Lo-Dash methods.
 	for ( var i = 0; i < lodashIncludes.length; i++ ) {