You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							9 lines
						
					
					
						
							316 B
						
					
					
				
			
		
		
	
	
							9 lines
						
					
					
						
							316 B
						
					
					
				| export default (function (o, c, d) {
 | |
|   var proto = c.prototype;
 | |
| 
 | |
|   proto.dayOfYear = function (input) {
 | |
|     // d(this) is for badMutable
 | |
|     var dayOfYear = Math.round((d(this).startOf('day') - d(this).startOf('year')) / 864e5) + 1;
 | |
|     return input == null ? dayOfYear : this.add(input - dayOfYear, 'day');
 | |
|   };
 | |
| }); |