node package that helps convert cents into dollars specially when working in APIs
npm install dollariz@latest
const dollar = require("dollariz");
const cents = 15080;
const dollars = dollar.convertToDollars(cents, decimal=2);
console.log(dollars);
:150.80
by defailt dollariz uses 2 decimals so you dont have to specify but if you need to use a different decimal value then you can specify