Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Aug 28, 2017
1 parent 38b966e commit fad75fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/liskAmount/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const roundTo = (value, places) => {
if (!places) {
return value;
}
const x = Math.pow(10, places);
const x = 10 ** places;
return Math.round(value * x) / x;
};

Expand Down

0 comments on commit fad75fe

Please sign in to comment.