3030 * [ 1, 2, 3 ]
3131 */
3232
33- function isObject ( input ) {
33+ function isObject$1 ( input ) {
3434 return typeof input === 'object' && input !== null
3535}
3636
37- function isArrayLike ( input ) {
38- return isObject ( input ) && typeof input . length === 'number'
37+ function isArrayLike$1 ( input ) {
38+ return isObject$1 ( input ) && typeof input . length === 'number'
3939}
4040
4141/**
@@ -48,7 +48,7 @@ function arrayify (input) {
4848 return input
4949 } else if ( input === undefined ) {
5050 return [ ]
51- } else if ( isArrayLike ( input ) || input instanceof Set ) {
51+ } else if ( isArrayLike$1 ( input ) || input instanceof Set ) {
5252 return Array . from ( input )
5353 } else {
5454 return [ input ]
@@ -134,8 +134,8 @@ function isPlainObject (input) {
134134 * // prints `true`
135135 * }
136136 */
137- function isArrayLike$1 ( input ) {
138- return isObject$1 ( input ) && typeof input . length === 'number'
137+ function isArrayLike ( input ) {
138+ return isObject ( input ) && typeof input . length === 'number'
139139}
140140
141141/**
@@ -144,7 +144,7 @@ function isArrayLike$1 (input) {
144144 * @returns {boolean }
145145 * @static
146146 */
147- function isObject$1 ( input ) {
147+ function isObject ( input ) {
148148 return typeof input === 'object' && input !== null
149149}
150150
@@ -311,8 +311,8 @@ function isFunction (input) {
311311var t = {
312312 isNumber,
313313 isPlainObject,
314- isArrayLike : isArrayLike$1 ,
315- isObject : isObject$1 ,
314+ isArrayLike,
315+ isObject,
316316 isDefined,
317317 isUndefined,
318318 isNull,
0 commit comments