@shagital/adonisjs-crud-generator
Version:
Adonisjs Admin Panel Generator is a package that helps you quickly scaffold your typical CRUD admin interfaces. It generates the admin panel code based on the existing (migrated) table in the database
14 lines (10 loc) • 304 B
JavaScript
const moment = require('moment')
export function toLocal (datetime) {
return moment(datetime).utc(datetime).local()
}
export function toUTC (datetime) {
return moment(datetime).utc(datetime)
}
export function fromNow (datetime) {
return moment(datetime).utc(datetime).local().fromNow();
}