@@ -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,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,3 +1,11 @@
+/**
+ * lodash 4.6.1 (Custom Build) <https://lodash.com/>
+ * 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';