Skip to content

Add Time Difference Operation - Return the time that has passed between two input DateTimes #1779

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Add DATE_DELIM_OPTIONS
We do not want ":" since it's common in time strings. Same goes for space.
tomgond authored Apr 3, 2024
commit 39df81acb53860e3e5c0a44ed9314f718a01f5bd
6 changes: 6 additions & 0 deletions src/core/lib/Delim.mjs
Original file line number Diff line number Diff line change
@@ -46,6 +46,12 @@ export const HASH_DELIM_OPTIONS = ["Line feed", "CRLF", "Space", "Comma"];
*/
export const IP_DELIM_OPTIONS = ["Line feed", "CRLF", "Space", "Comma", "Semi-colon"];

/**
* Date delimiters
*/
export const DATE_DELIM_OPTIONS = ["Line feed", "CRLF", "Comma", "Semi-colon"];


/**
* Split delimiters.
*/