Merge pull request #3043 from acozzette/javascript
Removed mention of Buffer in byteSourceToUint8Array
This commit is contained in:
commit
483396068d
1 changed files with 0 additions and 4 deletions
|
@ -970,10 +970,6 @@ jspb.utils.byteSourceToUint8Array = function(data) {
|
|||
return /** @type {!Uint8Array} */(new Uint8Array(data));
|
||||
}
|
||||
|
||||
if (data.constructor === Buffer) {
|
||||
return /** @type {!Uint8Array} */(new Uint8Array(data));
|
||||
}
|
||||
|
||||
if (data.constructor === Array) {
|
||||
data = /** @type {!Array.<number>} */(data);
|
||||
return /** @type {!Uint8Array} */(new Uint8Array(data));
|
||||
|
|
Loading…
Add table
Reference in a new issue