Skip to content

Commit

Permalink
fix: add bigIntSuffix to minified output (#11645)
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed May 29, 2020
1 parent 69198be commit 5b24d79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/babel-generator/src/generators/types.js
Expand Up @@ -219,7 +219,7 @@ export function BigIntLiteral(node: Object) {
this.token(raw);
return;
}
this.token(node.value);
this.token(node.value + "n");
}

export function PipelineTopicExpression(node: Object) {
Expand Down
@@ -0,0 +1 @@
const N_A = 600221407600000000000000n;
@@ -0,0 +1 @@
const N_A=600221407600000000000000n;

0 comments on commit 5b24d79

Please sign in to comment.