@@ -160,7 +160,6 @@ module.exports = Link;
160
160
var React = ( typeof window !== "undefined" ? window . React : typeof global !== "undefined" ? global . React : null ) ;
161
161
var warning = _dereq_ ( 'react/lib/warning' ) ;
162
162
var invariant = _dereq_ ( 'react/lib/invariant' ) ;
163
- var emptyFunction = _dereq_ ( 'react/lib/emptyFunction' ) ;
164
163
var ExecutionEnvironment = _dereq_ ( 'react/lib/ExecutionEnvironment' ) ;
165
164
var mergeProperties = _dereq_ ( '../helpers/mergeProperties' ) ;
166
165
var goBack = _dereq_ ( '../helpers/goBack' ) ;
@@ -604,7 +603,7 @@ function computeHandlerProps(matches, query) {
604
603
key : null ,
605
604
params : null ,
606
605
query : null ,
607
- activeRouteHandler : emptyFunction . thatReturnsNull
606
+ activeRouteHandler : returnNull
608
607
} ;
609
608
610
609
var childHandler ;
@@ -621,7 +620,7 @@ function computeHandlerProps(matches, query) {
621
620
if ( childHandler ) {
622
621
props . activeRouteHandler = childHandler ;
623
622
} else {
624
- props . activeRouteHandler = emptyFunction . thatReturnsNull ;
623
+ props . activeRouteHandler = returnNull ;
625
624
}
626
625
627
626
childHandler = function ( props , addedProps ) {
@@ -635,13 +634,17 @@ function computeHandlerProps(matches, query) {
635
634
return props ;
636
635
}
637
636
637
+ function returnNull ( ) {
638
+ return null ;
639
+ }
640
+
638
641
function reversedArray ( array ) {
639
642
return array . slice ( 0 ) . reverse ( ) ;
640
643
}
641
644
642
645
module . exports = Route ;
643
646
644
- } , { "../helpers/Path" :4 , "../helpers/goBack" :6 , "../helpers/mergeProperties" :9 , "../helpers/replaceWith" :10 , "../helpers/transitionTo" :11 , "../helpers/withoutProperties" :12 , "../stores/ActiveStore" :15 , "../stores/RouteStore" :16 , "../stores/URLStore" :17 , "es6-promise" :21 , "react/lib/ExecutionEnvironment" :46 , "react/lib/emptyFunction" : 48 , "react/lib/ invariant" :49 , "react/lib/warning" :50 } ] , 4 :[ function ( _dereq_ , module , exports ) {
647
+ } , { "../helpers/Path" :4 , "../helpers/goBack" :6 , "../helpers/mergeProperties" :9 , "../helpers/replaceWith" :10 , "../helpers/transitionTo" :11 , "../helpers/withoutProperties" :12 , "../stores/ActiveStore" :15 , "../stores/RouteStore" :16 , "../stores/URLStore" :17 , "es6-promise" :21 , "react/lib/ExecutionEnvironment" :46 , "react/lib/invariant" :49 , "react/lib/warning" :50 } ] , 4 :[ function ( _dereq_ , module , exports ) {
645
648
var invariant = _dereq_ ( 'react/lib/invariant' ) ;
646
649
var qs = _dereq_ ( 'querystring' ) ;
647
650
var mergeProperties = _dereq_ ( './mergeProperties' ) ;
0 commit comments