Skip to content

Instantly share code, notes, and snippets.

@brian6932
brian6932 / rm.js
Last active November 30, 2024 10:55
const
y = 31_536_000,
d = 86_400,
h = 3_600,
m = 60,
unescObject = {
__proto__: null,
'&': `&`,
'\': `\\`,
@brian6932
brian6932 / rlq.js
Last active October 16, 2024 19:52
const
y = 31_536_000,
d = 86_400,
h = 3_600,
m = 60,
SecondsConverter = function (input) {
let remainder
this.y = input / y | 0