-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: object index filters * fix: checking of standard functions
- Loading branch information
Showing
5 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { isStandardFunction, standardFunctions } from './operators'; | ||
|
||
describe('Operators tests', () => { | ||
describe('isStandardFunction', () => { | ||
it('should return true for standard functions', () => { | ||
expect(Object.keys(standardFunctions).every(isStandardFunction)).toBeTruthy(); | ||
}); | ||
it('should return false for non standard function', () => { | ||
const nonStandardFunctions = [ | ||
'toString', | ||
'valueOf', | ||
'toLocaleString', | ||
'hasOwnProperty', | ||
'isPrototypeOf', | ||
'propertyIsEnumerable', | ||
'constructor', | ||
]; | ||
expect(Object.keys(nonStandardFunctions).every(isStandardFunction)).toBeFalsy(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
const date = new Date('2022-08-19'); | ||
[date.getFullYear(), date.getMonth() + 1, date.getDate()]; | ||
[date.getFullYear().toString(), date.getMonth() + 1, date.getDate()]; |