kstoyanov

02. Currency Format

Oct 8th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function result(x) {
  2.   const obj = {
  3.     separator: ',',
  4.     symbol: '$',
  5.     symbolFirst: true,
  6.   };
  7.  
  8.   const format = (y) => x(...Object.values(obj), y);
  9.  
  10.   return format;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment