https://github.com/brunos3d/weekx
📦 NODE.JS - Get week number of the current year or given date string format.
https://github.com/brunos3d/weekx
calendar count current date day format function index iso javascript micro number string week weekx
Last synced: 10 months ago
JSON representation
📦 NODE.JS - Get week number of the current year or given date string format.
- Host: GitHub
- URL: https://github.com/brunos3d/weekx
- Owner: brunos3d
- License: mit
- Created: 2020-11-26T18:47:07.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T02:02:54.000Z (about 5 years ago)
- Last Synced: 2024-04-29T14:03:19.983Z (almost 2 years ago)
- Topics: calendar, count, current, date, day, format, function, index, iso, javascript, micro, number, string, week, weekx
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/weekx
- Size: 83 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# weekx
[](http://badge.fury.io/js/weekx)
[](http://badge.fury.io/js/weekx)
[](https://travis-ci.org/BrunoS3D/weekx)

[](https://github.com/BrunoS3D/weekx)
> 📦 NODE.JS - Get week number of the current year or given date string format.
## Install
```
$ npm install weekx
# or
$ yarn add weekx
```
## Import
```js
var weekx = require('weekx');
// or
import weekx from 'weekx';
```
## Usage
```js
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`.