File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ var _objectAssign = require('object-assign');
1414
1515var _objectAssign2 = _interopRequireDefault ( _objectAssign ) ;
1616
17- var _comparatorMethods = require ( './comparatorMethods ' ) ;
17+ var _ComparatorMethods = require ( './ComparatorMethods ' ) ;
1818
19- var _comparatorMethods2 = _interopRequireDefault ( _comparatorMethods ) ;
19+ var _ComparatorMethods2 = _interopRequireDefault ( _ComparatorMethods ) ;
2020
2121var _clone = require ( 'clone' ) ;
2222
@@ -63,8 +63,8 @@ var Filter = function () {
6363 } , {
6464 key : '_testComparator' ,
6565 value : function _testComparator ( fieldValue , comparator , testValue ) {
66- if ( typeof _comparatorMethods2 . default [ comparator ] === 'function' ) {
67- return _comparatorMethods2 . default [ comparator ] ( fieldValue , testValue ) ;
66+ if ( typeof _ComparatorMethods2 . default [ comparator ] === 'function' ) {
67+ return _ComparatorMethods2 . default [ comparator ] ( fieldValue , testValue ) ;
6868 } else if ( typeof this . config . customComparatorMethods [ comparator ] === 'function' ) {
6969 return this . config . customComparatorMethods [ comparator ] ( fieldValue , testValue ) ;
7070 } else {
File renamed without changes.
Original file line number Diff line number Diff line change 11import assign from 'object-assign'
2- import comparatorMethods from './comparatorMethods '
2+ import ComparatorMethods from './ComparatorMethods '
33import clone from 'clone'
44
55const ORIGINAL_INDEX_KEY = '__filterOriginalIndex'
@@ -36,8 +36,8 @@ export default class Filter {
3636 }
3737
3838 _testComparator ( fieldValue , comparator , testValue ) {
39- if ( typeof comparatorMethods [ comparator ] === 'function' ) {
40- return comparatorMethods [ comparator ] ( fieldValue , testValue )
39+ if ( typeof ComparatorMethods [ comparator ] === 'function' ) {
40+ return ComparatorMethods [ comparator ] ( fieldValue , testValue )
4141 }
4242 else if ( typeof this . config . customComparatorMethods [ comparator ] === 'function' ) {
4343 return this . config . customComparatorMethods [ comparator ] ( fieldValue , testValue )
You can’t perform that action at this time.
0 commit comments