Skip to content

Commit

Permalink
feat(date): adding matching after a specific date and time operator (…
Browse files Browse the repository at this point in the history
…dateGreaterThan)
  • Loading branch information
roggervalf committed May 30, 2021
1 parent 3012412 commit 9e5c93d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/conditionOperators/date/dateGreaterThan.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { dateGreaterThan } from './dateGreaterThan';

describe('dateGreaterThan', () => {
it('returns true', () => {
expect(dateGreaterThan(new Date('December 17, 1995 03:24:00'), 'December 16, 2000 03:24:00')).toBeTruthy;
expect(dateGreaterThan('December 15, 1994 03:24:00', new Date('December 15, 1994 03:23:00'))).toBeTruthy;
});

it('returns false', () => {
expect(dateGreaterThan(new Date('December 17, 1995 03:24:00'), 'December 17, 1995 03:24:00')).toBeFalsy;
expect(dateGreaterThan(new Date('December 15, 1995 03:24:00'), new Date('December 16, 1995 03:24:00'))).toBeFalsy;
});
});
26 changes: 26 additions & 0 deletions src/conditionOperators/date/dateGreaterThan.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import {DateType, convertDate} from './convertDate';

/**
* Matching after a specific a date and time
*
* @since 4.11.0
* @category Date
* @param {Date} data The value to be compared.
* @param {Date} expected The expected value.
* @returns {boolean} Returns `true` if `value` is after than `expected value`.
* @example
* ```javascript
* dateGreaterThan('December 17, 1994 03:24:00', 'December 16, 1994 03:24:00')
* // => true
*
* dateGreaterThan('December 15, 2000 03:24:00', 'December 15, 2000 03:24:00')
* // => false
* ```
*/
export function dateGreaterThan(data: DateType, expected: DateType): boolean {
const convertedData = convertDate(data);
const convertedExpectation = convertDate(expected);
return (
convertedData > convertedExpectation
);
}
2 changes: 2 additions & 0 deletions src/conditionOperators/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {bool} from './boolean/bool';
import {dateEquals} from './date/dateEquals';
import {dateGreaterThan} from './date/dateGreaterThan';
import {dateLessThan} from './date/dateLessThan';
import {dateLessThanEquals} from './date/dateLessThanEquals';
import {dateNotEquals} from './date/dateNotEquals';
Expand All @@ -18,6 +19,7 @@ import {stringNotEqualsIgnoreCase} from './string/stringNotEqualsIgnoreCase';
export const operators: Record<string, unknown>={
bool,
dateEquals,
dateGreaterThan,
dateLessThan,
dateLessThanEquals,
dateNotEquals,
Expand Down

0 comments on commit 9e5c93d

Please sign in to comment.