Skip to content

localtime

localtime(secs?: number): StructTime

Defined in: packages/pythonlib/src/time.ts:152

Convert seconds since epoch to a StructTime in local time.

Parameters

ParameterTypeDescription
secs?numberSeconds since epoch (defaults to current time)

Returns

StructTime

StructTime object representing local time

Example

const t = localtime()
console.log(t.tm_year, t.tm_mon, t.tm_mday)