Skip to content

Instantly share code, notes, and snippets.

View angelcgar's full-sized avatar

Angel Contreras Garcia angelcgar

View GitHub Profile
@angelcgar
angelcgar / time-since.ts
Created October 31, 2024 20:02 — forked from Klerith/time-since.ts
Fecha de creación humana
export const timeSince = ( date: string ) => {
const baseDate = new Date(date)
const seconds = Math.floor(( new Date().getTime() - baseDate.getTime() ) / 1000);
let interval = seconds / 31536000;