mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-22 11:44:19 +01:00
Fix issue with large binary numbers (#43)
This commit is contained in:
@@ -85,8 +85,9 @@ class ExpressionRow extends React.Component<ExpressionRowProps> {
|
||||
</tr>;;
|
||||
}
|
||||
|
||||
getBinaryString() : string {
|
||||
return this.props.expressionItem.evaluate().toBinaryString();
|
||||
getBinaryString() : string {
|
||||
var binary = this.props.expressionItem.evaluate().toBinaryString();
|
||||
return binary;
|
||||
}
|
||||
|
||||
getLabel(): string {
|
||||
|
||||
Reference in New Issue
Block a user