mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 10:54:44 +00:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
/**
|
|
* Returns the current timestamp
|
|
*
|
|
* @returns {number} The current timestamp
|
|
*/
|
|
export const timestamp = () => Date.now();
|
|
|
|
/**
|
|
* No operation function
|
|
*
|
|
* @returns {void} Nothing
|
|
*/
|
|
export const noop = () => {};
|