зеркало из https://github.com/mozilla/gecko-dev.git
Fix from Frankie Robertson <frankierobertson5@googlemail.com> to Node toString (399659, r/a=me).
This commit is contained in:
Родитель
b66fc6c976
Коммит
5f7baa7b6c
|
@ -272,7 +272,7 @@ function tokenstr(tt) {
|
||||||
Np.toString = function () {
|
Np.toString = function () {
|
||||||
var a = [];
|
var a = [];
|
||||||
for (var i in this) {
|
for (var i in this) {
|
||||||
if (this.hasOwnProperty(i) && i != 'type')
|
if (this.hasOwnProperty(i) && i != 'type' && i != 'target')
|
||||||
a.push({id: i, value: this[i]});
|
a.push({id: i, value: this[i]});
|
||||||
}
|
}
|
||||||
a.sort(function (a,b) { return (a.id < b.id) ? -1 : 1; });
|
a.sort(function (a,b) { return (a.id < b.id) ? -1 : 1; });
|
||||||
|
|
Загрузка…
Ссылка в новой задаче