Comparing version 2.0.1 to 2.1.0
@@ -12,2 +12,3 @@ "use strict"; | ||
exports.isPlainObject = isPlainObject; | ||
exports.isArrayLike = isArrayLike; | ||
@@ -61,1 +62,5 @@ /** | ||
} | ||
function isArrayLike(input){ | ||
return typeof input === "object" && input !== null && typeof input.length === "number"; | ||
} |
{ | ||
"name": "typical", | ||
"author": "Lloyd Brookes <75pound@gmail.com>", | ||
"version": "2.0.1", | ||
"version": "2.1.0", | ||
"description": "For type-checking Javascript values.", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/75lb/typical.git", |
5676
83