number-format.js 104 B

12345
  1. export class NumberFormatValueConverter {
  2. fromView(value) {
  3. return parseInt(value);
  4. }
  5. }