Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

add-subtract-date

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

add-subtract-date

Add or subtract a specified time in a date object.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.4K
decreased by-7.58%
Maintainers
1
Weekly downloads
 
Created
Source

add-subtract-date PayPal Version Downloads Get help on Codementor

Add or subtract a specified time in a date object.

Installation

$ npm i --save add-subtract-date

Example

const addSubtractDate = require("add-subtract-date");

var d = new Date(1989, 11, 20);

console.log(addSubtractDate.add(d, 2, "days"));
// => Fri Dec 22 1989 00:00:00 GMT+0200 (EET)

console.log(addSubtractDate.subtract(d, 1, "day"));
// => Thu Dec 21 1989 00:00:00 GMT+0200 (EET)

console.log(addSubtractDate.subtract(d, 1, "year"));
// => Wed Dec 21 1988 00:00:00 GMT+0200 (EET)

console.log(addSubtractDate.add(d, 10, "hours"));
// => Wed Dec 21 1988 10:00:00 GMT+0200 (EET)

console.log(addSubtractDate.add(d, 42, "minutes"));
// => Wed Dec 21 1988 10:42:00 GMT+0200 (EET)

console.log(addSubtractDate.add(d, 7, "seconds"));
// => Wed Dec 21 1988 10:42:07 GMT+0200 (EET)

console.log(addSubtractDate.add(d, 142, "milliseconds"));
// => Wed Dec 21 1988 10:42:07 GMT+0200 (EET)

console.log(addSubtractDate.subtract(d, 1, "week"));
// => Wed Dec 28 1988 10:42:07 GMT+0200 (EET)

Documentation

The module exports an object containing two methods: add (goes in the future) and subtract (goes in the past). They require the following arguments:

  • d (Date): The date object.

  • count (Number): How many years/months/etc to add/subtract.

  • what (String): What to add/subtract. Supported values are:

    • years
    • year
    • months
    • month
    • weeks
    • week
    • days
    • day
    • hours
    • hour
    • minutes
    • minute
    • seconds
    • second
    • milliseconds
    • millisecond

How to contribute

Have an idea? Found a bug? See how to contribute.

Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

License

MIT © Ionică Bizău

Keywords

FAQs

Package last updated on 14 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc