Skip to main content
Module

x/denodb/deps.ts>Bson.Timestamp

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Go to Latest
class Bson.Timestamp
import { Bson } from "https://deno.land/x/denodb@v1.0.40/deps.ts";
const { Timestamp } = Bson;

Constructors

new
Timestamp(long: Long)
new
Timestamp(value: { t: number; i: number; })
new
Timestamp(low: number, high: number)

Properties

_bsontype: "Timestamp"

Methods

inspect(): string
toJSON(): { $timestamp: string; }

Static Properties

readonly
MAX_VALUE: Long

Static Methods

fromBits(lowBits: number, highBits: number): Timestamp

Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits.

fromInt(value: number): Timestamp

Returns a Timestamp represented by the given (32-bit) integer value.

fromNumber(value: number): Timestamp

Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned.

fromString(str: string, optRadix: number): Timestamp

Returns a Timestamp from the given string, optionally using the given radix.