UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

9 lines (7 loc) 188 B
import { ITimeUtils } from "@interfaces/utilities"; import moment from "moment"; export class TimeUtils implements ITimeUtils { getUnixNow(): number { return moment().unix(); } }