@technobuddha/library
Version:
A large library of useful functions
11 lines (10 loc) • 308 B
TypeScript
/**
* Get the Julian date (number of days since noon on Monday, Janurary 1 4713 BCE)
*
* @remarks Julian dates are always in the UTC timezone
*
* @param input The date and time to convert
* @returns The julian date.
*/
export declare function getJulian(input: Date): number;
export default getJulian;