Browse Source

Added lodash.isArrayLike.

Piotrek Koszuliński 9 years ago
parent
commit
f19556f41b

+ 1 - 1
packages/ckeditor5-utils/dev/tasks/lodash/tasks.js

@@ -26,7 +26,7 @@ function buildLodash() {
 		build( [
 			'modularize',
 			'exports=es',
-			'include=clone,extend,isPlainObject,isObject,isArray,last,isEqual',
+			'include=clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual',
 			'--development',
 			'--output', DEST_PATH
 		], ( err ) => {

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/assignIn.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/clone.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/isArray.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 8 - 0
packages/ckeditor5-utils/src/lib/lodash/isArrayLike.js

@@ -1,3 +1,11 @@
+/**
+ * lodash 4.6.1 (Custom Build) <https://lodash.com/>
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
+ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
+ * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
+ * Available under MIT license <https://lodash.com/license>
+ */
 import getLength from './_getLength';
 import isFunction from './isFunction';
 import isLength from './isLength';

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/isEqual.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/isObject.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/isPlainObject.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors

+ 1 - 1
packages/ckeditor5-utils/src/lib/lodash/last.js

@@ -1,6 +1,6 @@
 /**
  * lodash 4.6.1 (Custom Build) <https://lodash.com/>
- * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,last,isEqual" --development --output src/lib/lodash`
+ * Build: `lodash modularize exports="es" include="clone,extend,isPlainObject,isObject,isArray,isArrayLike,last,isEqual" --development --output src/lib/lodash`
  * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors