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
Describe the bug BigInt not working. In the example below, maximum is converted to number format, losing its precision.
operationTypeCode: type: integer format: int64 minimum: -2147483648 maximum: 9223372036854775800 example: 42
Expected behavior When receiving this parameter in the javascript, the type should be BigInt
module.exports = (prop) => { return [{ message: Type ${typeof prop.maximum}}]; } Type = BigInt
Type ${typeof prop.maximum}
Additional context Already tested with maximum: 9223372036854775800n (n at final). It does not work either
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
BigInt not working. In the example below, maximum is converted to number format, losing its precision.
operationTypeCode:
type: integer
format: int64
minimum: -2147483648
maximum: 9223372036854775800
example: 42
Expected behavior
When receiving this parameter in the javascript, the type should be BigInt
module.exports = (prop) => {
return [{ message:
Type ${typeof prop.maximum}
}];}
Type = BigInt
Additional context
Already tested with maximum: 9223372036854775800n (n at final). It does not work either
The text was updated successfully, but these errors were encountered: