1.0.4 • Published 5 years ago

weekx v1.0.4

Weekly downloads
15
License
MIT
Repository
github
Last release
5 years ago

weekx

npm version npm downloads Build Status Hackage-Deps Visitors

📦 NODE.JS - Get week number of the current year or given date string format.

Install

$ npm install weekx

# or

$ yarn add weekx

Import

var weekx = require('weekx');

// or

import weekx from 'weekx';

Usage

var weekx = require('weekx');

// Nov, 26 2020
weekx();
//=> 48

weekx('March 24, 2015');
//=> 13

weekx(new Date('March 24, 2015'));
//=> 13

weekx('03/24/2016');
//=> 13

weekx('August 07, 2015');
//=> 32

weekx(new Date('August 07, 2016'));
//=> 33

weekx('02/16/2015');
//=> 8

weekx('September 15, 2126');
//=> 38

weekx('02/17/2012');
//=> 7

API

weekx(date)

date

Type: Date | string

The target date can be a string or Date.

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago