Rocky_Mountain_Vending/.pnpm-store/v10/files/af/86cd074c25daa63bea3858f717a2410d22a3b171236504ad0ee83e30a104dddc8a8a56169134ccabc19a2e273e4835574c6565e2d4ea003d153cbcf628146e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

25 lines
486 B
Text

import { ValueSetter } from "./Setter.js";
export class Parser {
run(dateString, token, match, options) {
const result = this.parse(dateString, token, match, options);
if (!result) {
return null;
}
return {
setter: new ValueSetter(
result.value,
this.validate,
this.set,
this.priority,
this.subPriority,
),
rest: result.rest,
};
}
validate(_utcDate, _value, _options) {
return true;
}
}