Your IP : 216.73.216.74


Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/compat/util/
Upload File :
Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/compat/util/now.d.mts

/**
 * Returns the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC.
 *
 * @returns {number} The current time in milliseconds.
 *
 * @example
 * const currentTime = now();
 * console.log(currentTime); // Outputs the current time in milliseconds
 *
 * @example
 * const startTime = now();
 * // Some time-consuming operation
 * const endTime = now();
 * console.log(`Operation took ${endTime - startTime} milliseconds`);
 */
declare function now(): number;

export { now };