UNPKG

@danielkalen/simplybind

Version:

Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.

8 lines (6 loc) 153 B
import * as numeral from 'numeral'; export class NumberFormatValueConverter { toView(value, format) { return numeral(value).format(format); } }