Files
lara-bermite/resources/js/customPrototypes.ts
2023-09-10 08:49:10 +02:00

8 lines
152 B
TypeScript

interface Date {
toSQLDate(): string,
}
Date.prototype.toSQLDate = function (): string {
return (new Date(this)).toISOString().split('T')[0]
}