File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55
55
"isBlob" : false ,
56
56
"isBoolean" : false ,
57
57
"isPromiseLike" : false ,
58
+ "hasCustomToString" : false ,
58
59
"trim" : false ,
59
60
"escapeForRegexp" : false ,
60
61
"isElement" : false ,
Original file line number Diff line number Diff line change @@ -464,6 +464,11 @@ identity.$inject = [];
464
464
465
465
function valueFn ( value ) { return function ( ) { return value ; } ; }
466
466
467
+ function hasCustomToString ( obj ) {
468
+ return isFunction ( obj . toString ) && obj . toString !== Object . prototype . toString ;
469
+ }
470
+
471
+
467
472
/**
468
473
* @ngdoc function
469
474
* @name angular.isUndefined
Original file line number Diff line number Diff line change @@ -163,10 +163,6 @@ function filterFilter() {
163
163
} ;
164
164
}
165
165
166
- function hasCustomToString ( obj ) {
167
- return isFunction ( obj . toString ) && obj . toString !== Object . prototype . toString ;
168
- }
169
-
170
166
// Helper functions for `filterFilter`
171
167
function createPredicateFn ( expression , comparator , matchAgainstAnyProp ) {
172
168
var shouldMatchPrimitives = isObject ( expression ) && ( '$' in expression ) ;
You can’t perform that action at this time.
0 commit comments