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: 5 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T02:02:54.000Z (almost 5 years ago)
- Last Synced: 2024-04-29T14:03:19.983Z (over 1 year 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();
//=> 48weekx('March 24, 2015');
//=> 13weekx(new Date('March 24, 2015'));
//=> 13weekx('03/24/2016');
//=> 13weekx('August 07, 2015');
//=> 32weekx(new Date('August 07, 2016'));
//=> 33weekx('02/16/2015');
//=> 8weekx('September 15, 2126');
//=> 38weekx('02/17/2012');
//=> 7
```## API
### weekx(date)
#### date
Type: `Date | string`
The target `date` can be a `string` or `Date`.