Version 1
[yaffs-website] / node_modules / core-js / library / modules / es6.date.now.js
1 // 20.3.3.1 / 15.9.4.4 Date.now()
2 var $export = require('./_export');
3
4 $export($export.S, 'Date', {now: function(){ return new Date().getTime(); }});