File tree Expand file tree Collapse file tree 2 files changed +6
-22
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +6
-22
lines changed
Original file line number Diff line number Diff line change @@ -4884,17 +4884,9 @@ var Range = /*@__PURE__*/(function (IndexedSeq) {
4884
4884
Range . prototype . constructor = Range ;
4885
4885
4886
4886
Range . prototype . toString = function toString ( ) {
4887
- if ( this . size === 0 ) {
4888
- return 'Range []' ;
4889
- }
4890
- return (
4891
- 'Range [ ' +
4892
- this . _start +
4893
- '...' +
4894
- this . _end +
4895
- ( this . _step !== 1 ? ' by ' + this . _step : '' ) +
4896
- ' ]'
4897
- ) ;
4887
+ return this . size === 0
4888
+ ? 'Range []'
4889
+ : ( "Range [ " + ( this . _start ) + "..." + ( this . _end ) + ( this . _step !== 1 ? ' by ' + this . _step : '' ) + " ]" ) ;
4898
4890
} ;
4899
4891
4900
4892
Range . prototype . get = function get ( index , notSetValue ) {
Original file line number Diff line number Diff line change 4890
4890
Range . prototype . constructor = Range ;
4891
4891
4892
4892
Range . prototype . toString = function toString ( ) {
4893
- if ( this . size === 0 ) {
4894
- return 'Range []' ;
4895
- }
4896
- return (
4897
- 'Range [ ' +
4898
- this . _start +
4899
- '...' +
4900
- this . _end +
4901
- ( this . _step !== 1 ? ' by ' + this . _step : '' ) +
4902
- ' ]'
4903
- ) ;
4893
+ return this . size === 0
4894
+ ? 'Range []'
4895
+ : ( "Range [ " + ( this . _start ) + "..." + ( this . _end ) + ( this . _step !== 1 ? ' by ' + this . _step : '' ) + " ]" ) ;
4904
4896
} ;
4905
4897
4906
4898
Range . prototype . get = function get ( index , notSetValue ) {
You can’t perform that action at this time.
0 commit comments