weekx
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

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.

Package Sidebar

Install

npm i weekx

Weekly Downloads

5

Version

1.0.4

License

MIT

Unpacked Size

4.03 kB

Total Files

5

Last publish

Collaborators

  • brunos3d