6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function satsToBtc(amount/*, hash*/) {
|
|
return amount / 100000000;
|
|
});
|