We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've seen some with 0, Long.UZERO, but now some that are undefined.
nullValue: isSet(object.nullValue) ? nullValueFromJSON(object.nullValue) : 0, boolValue: isSet(object.boolValue) ? Boolean(object.boolValue) : false, int64Value: isSet(object.int64Value) ? Long.fromString(object.int64Value) : undefined, uint64Value: isSet(object.uint64Value) ? Long.fromString(object.uint64Value) : Long.UZERO, doubleValue: isSet(object.doubleValue) ? Number(object.doubleValue) : undefined, stringValue: isSet(object.stringValue) ? String(object.stringValue) : \\"\\", bytesValue: isSet(object.bytesValue) ? bytesFromBase64(object.bytesValue) : new Uint8Array(), durationValue: isSet(object.durationValue) ? Duration.fromJSON(object.durationValue) : undefined, timestampValue: isSet(object.timestampValue) ? Timestamp.fromJSON(object.timestampValue) : undefined
both unsigned and signed zeros
UZERO
ZERO
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've seen some with 0, Long.UZERO, but now some that are undefined.
both unsigned and signed zeros
UZERO
ZERO
The text was updated successfully, but these errors were encountered: