Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
588 B
JavaScript
29 lines
588 B
JavaScript
'use strict';
|
|
|
|
const DatePart = require('./datepart');
|
|
|
|
class Milliseconds extends DatePart {
|
|
constructor(opts={}) {
|
|
super(opts);
|
|
}
|
|
|
|
up() {
|
|
this.date.setMilliseconds(this.date.getMilliseconds() + 1);
|
|
}
|
|
|
|
down() {
|
|
this.date.setMilliseconds(this.date.getMilliseconds() - 1);
|
|
}
|
|
|
|
setTo(val) {
|
|
this.date.setMilliseconds(parseInt(val.substr(-(this.token.length))));
|
|
}
|
|
|
|
toString() {
|
|
return String(this.date.getMilliseconds()).padStart(4, '0')
|
|
.substr(0, this.token.length);
|
|
}
|
|
}
|
|
|
|
module.exports = Milliseconds;
|