util: removed duplicated isArray check

This commit is contained in:
Wyatt Preul 2013-07-20 00:56:31 -05:00 committed by Trevor Norris
parent e3bb6e11c3
commit 5fcd6e4038

View File

@ -430,8 +430,7 @@ function reduceToSingleString(output, base, braces) {
// NOTE: These type checking functions intentionally don't use `instanceof`
// because it is fragile and can be easily faked with `Object.create()`.
function isArray(ar) {
return Array.isArray(ar) ||
(typeof ar === 'object' && objectToString(ar) === '[object Array]');
return Array.isArray(ar);
}
exports.isArray = isArray;