@@ -47,8 +47,6 @@ const filterMixins = {};
47
47
* @returns The request instance (for chaining)
48
48
*/
49
49
filterMixins . filter = function ( props , value ) {
50
- /* jshint validthis:true */
51
-
52
50
if ( ! props || typeof props === 'string' && value === undefined ) {
53
51
// We have no filter to set, or no value to set for that filter
54
52
return this ;
@@ -74,14 +72,15 @@ filterMixins.filter = function( props, value ) {
74
72
* @returns The request instance (for chaining)
75
73
*/
76
74
filterMixins . taxonomy = function ( taxonomy , term ) {
77
- /* jshint validthis:true */
78
75
const termIsArray = Array . isArray ( term ) ;
76
+
79
77
const termIsNumber = termIsArray ?
80
78
term . reduce (
81
79
( allAreNumbers , term ) => allAreNumbers && typeof term === 'number' ,
82
80
true
83
81
) :
84
82
typeof term === 'number' ;
83
+
85
84
const termIsString = termIsArray ?
86
85
term . reduce (
87
86
( allAreStrings , term ) => allAreStrings && typeof term === 'string' ,
@@ -133,7 +132,6 @@ filterMixins.taxonomy = function( taxonomy, term ) {
133
132
* @returns The request instance (for chaining)
134
133
*/
135
134
filterMixins . year = function ( year ) {
136
- /* jshint validthis:true */
137
135
return filterMixins . filter . call ( this , 'year' , year ) ;
138
136
} ;
139
137
@@ -147,7 +145,6 @@ filterMixins.year = function( year ) {
147
145
* @returns The request instance (for chaining)
148
146
*/
149
147
filterMixins . month = function ( month ) {
150
- /* jshint validthis:true */
151
148
let monthDate ;
152
149
if ( typeof month === 'string' ) {
153
150
// Append a arbitrary day and year to the month to parse the string into a Date
@@ -179,7 +176,6 @@ filterMixins.month = function( month ) {
179
176
* @returns The request instance (for chaining)
180
177
*/
181
178
filterMixins . day = function ( day ) {
182
- /* jshint validthis:true */
183
179
return filterMixins . filter . call ( this , 'day' , day ) ;
184
180
} ;
185
181
@@ -192,7 +188,6 @@ filterMixins.day = function( day ) {
192
188
* @returns The request instance (for chaining)
193
189
*/
194
190
filterMixins . path = function ( path ) {
195
- /* jshint validthis:true */
196
191
return filterMixins . filter . call ( this , 'pagename' , path ) ;
197
192
} ;
198
193
0 commit comments