Package: effect
Module: DateTime
Get the current time using the Clock service.
Example
import { DateTime, Effect } from "effect"
Effect.gen(function* () {
const now = yield* DateTime.nowAsDate
})
Signature
declare const nowAsDate: Effect.Effect<Date, never, never>
Since v3.14.0