Skip to content

Commit

Permalink
chore: fix typo in a comment (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
maurobringolf authored and boopathi committed Feb 21, 2018
1 parent 6546ad1 commit 4b14df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/babel-plugin-minify-constant-folding/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ module.exports = babel => {
const res = evaluate(path, { tdz });
if (res.confident) {
// Avoid fractions because they can be longer than the original expression.
// There is also issues with number percision?
// There is also issues with number precision?
if (typeof res.value === "number" && !Number.isInteger(res.value)) {
return;
}
Expand Down

0 comments on commit 4b14df3

Please sign in to comment.