mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-16 20:55:41 +02:00
fase 5
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
import { ValueSetter } from "./Setter.mjs";
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user