@synotech/utils
Version:
a collection of utilities for internal use
12 lines (11 loc) • 307 B
TypeScript
/**
* This method validates email address
* @module currencyMask
* @param {number} number - a number to mask as currency
* @return {string} {String} a string of currency
* @example
*
* currencyMask(1000) // returns 1,000
*
*/
export declare const currencyMask: (number: any) => string;