Differences From Artifact [393672b6c1]:
- File build/chrome/ssh-agent.js — part of check-in [8b2206f04e] at 2019-06-08 22:17:33 on branch trunk — Use indexOf() instead of includes for backwards compatibility support (user: rkeene, size: 16807) [annotate] [blame] [check-ins using]
To Artifact [0d0e90bbfd]:
- File build/chrome/ssh-agent.js — part of check-in [af11332c35] at 2019-06-12 19:38:24 on branch trunk — Handle converting from buffers which cannot be converted to byte arrays (user: rkeene, size: 16887) [annotate] [blame] [check-ins using]
︙ | |||
89 90 91 92 93 94 95 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | + - + + + + | while (bigInt) { result.push(bigInt & 0xff); bigInt = bigInt >> 8; } result.reverse(); break; case "object": if (bigInt.toByteArray) { |
︙ |