New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

is-christmas-period

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-christmas-period

Identify whether the current or given date is about the Christmas period

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by25%
Maintainers
1
Weekly downloads
 
Created
Source

is-christmas-period

Identify whether the current or given date is about Christmas period.

Install

npm install -g is-christmas-period

Use

1. Load the module

var isChristmasPeriod = require('is-christmas-period');

2. Check if current date is about Christmas period

console.log(isChristmasPeriod()); // true or false

Other Examples

20th of December is about Christmas period
var twentiethOfDecember = new Date();
twentiethOfDecember.setDate(20);
twentiethOfDecember.setMonth(11);

isChristmasPeriod(twentiethOfDecember); // true
8th of February is not about Christmas period
var eightthOfFebruary = new Date();
eightthOfFebruary.setDate(8);
eightthOfFebruary.setMonth(1);

isChristmasPeriod(eightthOfFebruary); // false

Test

To execute tests, first install the project dependencies:

$ npm install

Then, run the tests

$ npm test

Credits

Many thanks to EditThisCookie Chrome extension.

Keywords

FAQs

Package last updated on 02 Jan 2018

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