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 1
1
'use strict' ;
2
2
3
- var isArrayOrTypedArray = require ( '../../lib/array' ) . isArrayOrTypedArray ;
4
- var isTypedArraySpec = require ( '../../lib/array' ) . isTypedArraySpec ;
5
- var decodeTypedArraySpec = require ( '../../lib/array' ) . decodeTypedArraySpec ;
6
-
7
3
var filterOps = require ( '../../constants/filter_ops' ) ;
8
4
var isNumeric = require ( 'fast-isnumeric' ) ;
9
5
@@ -20,8 +16,7 @@ module.exports = {
20
16
// This does not in any way shape or form support calendars. It's adapted from
21
17
// transforms/filter.js.
22
18
function coerceValue ( operation , value ) {
23
- if ( isTypedArraySpec ( value ) ) value = decodeTypedArraySpec ( value ) ;
24
- var hasArrayValue = isArrayOrTypedArray ( value ) ;
19
+ var hasArrayValue = Array . isArray ( value ) ;
25
20
26
21
var coercedValue ;
27
22
You can’t perform that action at this time.
0 commit comments