basant307/AI_Governance_Project
048
1import root from './_root.js';2 3/**4 * Gets the timestamp of the number of milliseconds that have elapsed since5 * the Unix epoch (1 January 1970 00:00:00 UTC).6 *7 * @static8 * @memberOf _9 * @since 2.4.010 * @category Date11 * @returns {number} Returns the timestamp.12 * @example13 *14 * _.defer(function(stamp) {15 * console.log(_.now() - stamp);16 * }, _.now());17 * // => Logs the number of milliseconds it took for the deferred invocation.18 */19var now = function() {20 return root.Date.now();21};22 23export default now;24 