moment-weekofmonth
v1.0.1
Published
Gets the week number of the month.
Downloads
8
Maintainers
Readme
moment-weekofmonth
Gets the week of the month.
Use the moment object to find the week number of the month.
Installation
Install via NPM:
npm install moment moment-weekofmonth
Usage
Javascript
var moment = require("moment");
var wom = require("moment-weekofmonth");
var nowDate = moment(); // 2020-02-29
wom(moment('2020-01-01')); // 1
wom(nowDate); // 5
wom(); // TypeError: Cannot read property 'week' of undefined
TypeScript
import * as moment from "moment";
import * as wom from "moment-weekofmonth";
const nowDate = moment(); // 2020-02-29
wom(moment('2020-01-01')); // 1
wom(nowDate); // 5
wom(); // TypeError: Cannot read property 'week' of undefined```