lookChar refactoring

This commit is contained in:
Yury Delendik 2013-06-30 15:45:15 -05:00
parent ba87d2fe11
commit 19e8f2f059
8 changed files with 251 additions and 272 deletions

View file

@ -623,7 +623,7 @@ function isArray(v) {
function isStream(v) {
return typeof v == 'object' && v !== null && v !== undefined &&
('getChar' in v);
('getBytes' in v);
}
function isArrayBuffer(v) {