timeAgoFromMs(ms) { const sec = Math.round(ms / 1000); const min = Math.round(sec / 60); const hr = Math.round(min / 60); const day = Math.round(hr / 24); const month = Math.round(day / 30); const year = Math.round(month / 12);
[0]: https://github.com/microsoft/GW-BASIC/blob/edf82c2ebf6bfe099...