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.
		
		
		
		
			
				
					16 lines
				
				399 B
			
		
		
			
		
	
	
					16 lines
				
				399 B
			| 
											11 months ago
										 | 'use strict'; | ||
|  | // TODO: Remove from `core-js@4`
 | ||
|  | var $ = require('../internals/export'); | ||
|  | var uncurryThis = require('../internals/function-uncurry-this'); | ||
|  | 
 | ||
|  | var $Date = Date; | ||
|  | var thisTimeValue = uncurryThis($Date.prototype.getTime); | ||
|  | 
 | ||
|  | // `Date.now` method
 | ||
|  | // https://tc39.es/ecma262/#sec-date.now
 | ||
|  | $({ target: 'Date', stat: true }, { | ||
|  |   now: function now() { | ||
|  |     return thisTimeValue(new $Date()); | ||
|  |   } | ||
|  | }); |