|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
399 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | // TODO: Remove from `core-js@4`
|
|---|
| 3 | var $ = require('../internals/export');
|
|---|
| 4 | var uncurryThis = require('../internals/function-uncurry-this');
|
|---|
| 5 |
|
|---|
| 6 | var $Date = Date;
|
|---|
| 7 | var thisTimeValue = uncurryThis($Date.prototype.getTime);
|
|---|
| 8 |
|
|---|
| 9 | // `Date.now` method
|
|---|
| 10 | // https://tc39.es/ecma262/#sec-date.now
|
|---|
| 11 | $({ target: 'Date', stat: true }, {
|
|---|
| 12 | now: function now() {
|
|---|
| 13 | return thisTimeValue(new $Date());
|
|---|
| 14 | }
|
|---|
| 15 | });
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.