const a=t=>{if(!t)return"N/A";if(t<Math.pow(10,3))return"< $1 K";if(t>=Math.pow(10,3)&&t<Math.pow(10,6))return`~ $${Math.round(t/Math.pow(10,3))} K`;let r=(t/Math.pow(10,6)).toFixed(1);return r=parseFloat(r),r%1===0&&(r=Math.floor(r)),`~ $${r} M`};export{a as l};