Giter Club home page Giter Club logo

date-equality's Introduction

Date Equality

Broader date equality checking and mutating

Installation

npm install --save date-equality

Usage

In the browser:

<script src="date-equality.js"></script>

Node/RequireJS

// Typescript/ES6
import * as DE from 'date-equality';

// ES5
var DE = require('date-equality');

API

sameDate

Returns true if the two provided Date objects are on the same date

function sameDate(left: Date, right: Date): boolean;

Returns true if the two provided Date objects are in the same week

sameWeek

function sameWeek(left: Date, right: Date, startOfWeek?: number): boolean;

Returns true if the two provided Date objects have the same time (second precision)

sameDateTime

function sameDateTime(left: Date, right: Date): boolean;

floorDay

Returns a new Date object that is the start (00h00m00s000ms) of the provided Date object

function floorDay(date: Date): Date;

ceilDay

Returns a new Date object that is the end (23h59m59s999ms) of the provided Date object

function ceilDay(date: Date): Date;

floorWeek

Returns a new Date object that is the beginning of the week and floored (floorDay(Date))

function floorWeek(date: Date, startOfWeek?: number): Date;

ceilWeek

Returns a new Date object that is the end of the week and ceiled (ceilDay(Date))

function ceilWeek(date: Date, startOfWeek?: number): Date;

dateRange

Returns the lower and upper bounds as a DateRange object from an array of Date objects

function dateRange(dates: Array<Date>): DateRange;

inRange

Returns true if the provided Date object is in the DateRange provided

function inRange(date: Date, range: DateRange): boolean;

DateRange

interface DateRange {
    start: Date;
    end: Date;
}

date-equality's People

Contributors

seikho avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.