Chromium Code Reviews

Side by Side Diff: chrome/browser/resources/gpu_internals/util.js

Issue 5228004: Switch the about:gpu implementation from an about handler to dom_ui.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine