UNPKG

kawkab-frontend

Version:

Kawkab frontend is a frontend library for the Kawkab framework

9 lines (8 loc) 293 B
export class Num { static formatCurrency(value, currency = 'USD', locale = 'en-US') { return new Intl.NumberFormat(locale, { style: 'currency', currency }).format(value); } static random(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } }