Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/4044da9650e7c23e512e8ed9a268aeb326d772cda64dd6fd64921a177938b6c8f0af32d8112c931ef36f8600bbd4cfb58c2fa5e9168c89ed649805d74547f7
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

28 lines
547 B
Text

"use strict";
exports.Parser = void 0;
var _Setter = require("./Setter.cjs");
class Parser {
run(dateString, token, match, options) {
const result = this.parse(dateString, token, match, options);
if (!result) {
return null;
}
return {
setter: new _Setter.ValueSetter(
result.value,
this.validate,
this.set,
this.priority,
this.subPriority,
),
rest: result.rest,
};
}
validate(_utcDate, _value, _options) {
return true;
}
}
exports.Parser = Parser;