OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 function isArray(value) { | |
arv (Not doing code reviews)
2010/12/08 17:55:19
Try Array.isArray(val) or val instanceof Array
nduca
2010/12/08 19:08:22
Done.
| |
5 return value != null && | |
6 typeof value == 'object' && | |
7 typeof value.length == 'number'; | |
8 } | |
OLD | NEW |