File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 11'use strict' ;
22
3- var isArrayOrTypedArray = require ( '../../lib/array' ) . isArrayOrTypedArray ;
4- var isTypedArraySpec = require ( '../../lib/array' ) . isTypedArraySpec ;
5- var decodeTypedArraySpec = require ( '../../lib/array' ) . decodeTypedArraySpec ;
6-
73var filterOps = require ( '../../constants/filter_ops' ) ;
84var isNumeric = require ( 'fast-isnumeric' ) ;
95
@@ -20,8 +16,7 @@ module.exports = {
2016// This does not in any way shape or form support calendars. It's adapted from
2117// transforms/filter.js.
2218function coerceValue ( operation , value ) {
23- if ( isTypedArraySpec ( value ) ) value = decodeTypedArraySpec ( value ) ;
24- var hasArrayValue = isArrayOrTypedArray ( value ) ;
19+ var hasArrayValue = Array . isArray ( value ) ;
2520
2621 var coercedValue ;
2722
You can’t perform that action at this time.
0 commit comments