Skip to content

Commit

Permalink
Add support for date in jest-get-type (#4621)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored and cpojer committed Oct 7, 2017
1 parent f264780 commit 6646c3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/jest-get-type/src/__tests__/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ describe('.getType()', () => {
test('regexp', () => expect(getType(/abc/)).toBe('regexp'));
test('map', () => expect(getType(new Map())).toBe('map'));
test('set', () => expect(getType(new Set())).toBe('set'));
test('date', () => expect(getType(new Date())).toBe('date'));
});
5 changes: 4 additions & 1 deletion packages/jest-get-type/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ export type ValueType =
| 'regexp'
| 'map'
| 'set'
| 'date'
| 'string'
| 'symbol'
| 'undefined';

// get the type of a value with handling the edge cases like `typeof []`
// and `typeof null`
const getType = (value: any): ValueType => {
if (typeof value === 'undefined') {
if (value === undefined) {
return 'undefined';
} else if (value === null) {
return 'null';
Expand All @@ -47,6 +48,8 @@ const getType = (value: any): ValueType => {
return 'map';
} else if (value.constructor === Set) {
return 'set';
} else if (value.constructor === Date) {
return 'date';
}
return 'object';
// $FlowFixMe https://github.com/facebook/flow/issues/1015
Expand Down

0 comments on commit 6646c3b

Please sign in to comment.