
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
moment-working-days
Advanced tools
This is a Moment.js plugin that allows you to calculate working days considering sequence of date(s) - similar to start-stop timer sequence. You can customize the week off days, and also declare custom dates for holidays (eg: public holidays) to exclude t
This is a Moment.js plugin that allows you to calculate working days, considering sequence of date(s). You can customize the week off days, and also declare custom dates for holidays (eg: public holidays) to exclude them from being counted as working day(s)
npm install --save moment-working-days
const WorkingDays = require('moment-working-days')
const momentWorkingdays = new WorkingDays({
includeToday: true, // optional. Default true
verbose: true, // optional. Default false
weekOffDays: [0, 6], // optional. Default [0, 6]
dateFormat: 'DD-MM-YYYY', // optional. Default 'YYYY-MM-DD'
customHolidays: ['02-12-2019'], // optional
customWorkingDays: [] // optional: eg ['07-12-2019']
})
// includeToday: Include today in calculations, else today wll be excluded
// weekOffDays: Defines weekoff days. Note that week starts with day 0 (Sunday) to day 6 (Saturday).
// dateFormat: Moment Date Format in which dates will be passed
// customHolidays: Defines custom holidays for bussiness (eg: public holidays). Pass an array of dates in configured dateFormat
> momentWorkingdays.getWorkingDays([
"29-11-2019", "03-12-2019",
"07-12-2019", "12-12-2019"
])
> Output
30-11-2019 is a Sat
01-12-2019 is a Sun
02-12-2019 is a Custom Holiday
07-12-2019 is a Sat
08-12-2019 is a Sun
Working Days: 6 day(s)
> Returns
6
// Explanation
- First it creates pairs of odd and even indexed dates.
- Then, it calculates days within a pair (eg: pair1: 29-11 and 03-12. pair2: 07-12 and 12-12).
- Then, it calculates overall working days.
- Hence giving support to distributed date ranges
> momentWorkingdays.getWorkingDays([
"29-11-2019", "03-12-2019",
"07-12-2019"
])
> Output
30-11-2019 is a Sat
01-12-2019 is a Sun
02-12-2019 is a Custom Holiday
07-12-2019 is a Sat
08-12-2019 is a Sun
Working Days: 3 day(s)
> Returns
3
> Explanation
- If number of elements in input array is odd, then it will pair the last date with today
- Eg: pair1: 29-11 and 03-12. pair2: 07-12 and 09-12 (Todays date)
- Hence giving support to distributed date ranges
> momentWorkingdays.getWorkingDays([
"29-11-2019",
])
> Output
30-11-2019 is a Sat
01-12-2019 is a Sun
02-12-2019 is a Custom Holiday
07-12-2019 is a Sat
08-12-2019 is a Sun
Working Days: 6 day(s)
> Returns
6
> momentWorkingdays.setWeekOffDays([
0, 1, 2, 3, 4, 6
]).getWorkingDays(["05-12-2019", "12-12-2019"]))
> Output
05-12-2019 is a Thu
07-12-2019 is a Sat
08-12-2019 is a Sun
09-12-2019 is a Mon
10-12-2019 is a Tue
11-12-2019 is a Wed
12-12-2019 is a Thu
Working Days: 1 day(s)
> Returns
1
> momentWorkingdays.isWorkingday("02-12-2019") // Monday
> Output
02-12-2019 is a Custom Holiday
> Returns
false
> momentWorkingdays.isWorkingday("01-12-2019") // Sunday
> Output
01-12-2019 is a Sun
> Returns
false
> momentWorkingdays.isWorkingday("06-12-2019") // Friday
> Returns
true
> momentWorkingdays.setCustomWorkingDays([
'08-12-2019'
]).isWorkingday('08-12-2019')) // Sunday
> Returns
true
> momentWorkingdays.addWorkingDays("06-12-2019", 2) // Friday
> Output
07-12-2019 is a Sat
08-12-2019 is a Sun
> Returns
10-12-2019 // Tuesday
> momentWorkingdays.nextWorkingDay("06-12-2019") // Friday
> Output
07-12-2019 is a Sat
08-12-2019 is a Sun
> Returns
09-12-2019 // Monday
> momentWorkingdays.subtractWorkingDays("09-12-2019", 2) // Monday
> Output
08-12-2019 is a Sun
07-12-2019 is a Sat
> Returns
05-12-2019 // Thursday
> momentWorkingdays.prevWorkingDay("09-12-2019") // Monday
> Output
08-12-2019 is a Sun
07-12-2019 is a Sat
> Returns
06-12-2019 // Friday
moment-working-days is copyright (c) 2019-present Yatish Balaji yatishmotamarri@yahoo.com and the contributors to moment-working-days.
moment-working-days is free software, licensed under the MIT License. See the
LICENSE
file for more details.
FAQs
This is a Moment.js plugin that allows you to calculate working days considering sequence of date(s) - similar to start-stop timer sequence. You can customize the week off days, and also declare custom dates for holidays (eg: public holidays) to exclude t
The npm package moment-working-days receives a total of 344 weekly downloads. As such, moment-working-days popularity was classified as not popular.
We found that moment-working-days demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.