moment-to-reql
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

moment-to-reql

GratiPay Downloads Version

A helper function to convert moment.js object to ReQL so that Timezone information can be preserved when passing data to RethinkDB.

Installation

moment-to-reql expects that you have already installed moment and moment-timezone.

npm instal --save-dev moment-to-reql

Usage

Returned value can be used in place of regular Date, r.now() and all other time/date objects in your ReQL queries:

import momentToReQL from 'moment-to-reql';

momentToReQL(moment.tz('10/10/2010 10:00', 'DD/MM/YYYY hh:mm', 'America/Los_Angeles');
// returns:
//  {
//    $reql_type$: 'TIME',
//    epoch_time: 1286730000,
//    timezone: '-07:00',
//  }

License

ISC

Dependencies (0)

    Dev Dependencies (13)

    Package Sidebar

    Install

    npm i moment-to-reql

    Weekly Downloads

    1

    Version

    1.1.1

    License

    ISC

    Last publish

    Collaborators

    • alexgorbatchev