1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +00:00
Files
tools/packages/stdlib/src/utils/index.ts

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 = () => {};