0.0.1 • Published 5 years ago

postgres-interval-class v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

postgres-interval-class

Manipulations with Postgres interval columns

Installation

Install this package in your project:

$ npm install --save postgres-interval-class

Adding to your project

In Node.js

Call require to get the instance:

const { PostgresColumnInterval } = require('postgres-interval-class');

Or in ES6 and TS:

import PostgresColumnInterval from 'postgres-interval-class';

Usage

const pi = new PostgresColumnInterval('00:15:00');

pi.add(new PostgresColumnInterval('00:05:00'));

pi.add(new Date('2014-03-09T01:59:00'));

pi.sub(new PostgresColumnInterval('00:05:00'));

pi.sub(new Date('2014-03-09T01:59:00'));

pi.toString();
pi.toJSON();