typo
This commit is contained in:
parent
9aca80c3cb
commit
a956c8b7e1
1 changed files with 3 additions and 3 deletions
|
@ -352,15 +352,15 @@ if (
|
|||
value
|
||||
).slice(8, -1).toLowerCase();
|
||||
if (typeof value.callee == 'function') {
|
||||
ret = arguments;
|
||||
ret = 'arguments';
|
||||
} else if (
|
||||
ret == 'htmlcollection' || (
|
||||
typeof value == 'object'
|
||||
ret == 'object'
|
||||
&& typeof value.item != 'undefined'
|
||||
&& typeof value.length == 'number'
|
||||
)
|
||||
) {
|
||||
ret = 'nodelist'
|
||||
ret = 'nodelist';
|
||||
} else if (value === null) {
|
||||
ret = 'null';
|
||||
} else if (value === void 0) {
|
||||
|
|
Loading…
Reference in a new issue