Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T02:02:54.000Z (about 4 years ago)
- Last Synced: 2024-04-29T14:03:19.983Z (9 months 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
[![npm version](https://badge.fury.io/js/weekx.svg)](http://badge.fury.io/js/weekx)
[![npm downloads](https://img.shields.io/npm/dm/weekx.svg)](http://badge.fury.io/js/weekx)
[![Build Status](https://travis-ci.org/BrunoS3D/weekx.svg?branch=main)](https://travis-ci.org/BrunoS3D/weekx)
![Hackage-Deps](https://img.shields.io/hackage-deps/v/weekx)
[![Visitors](https://visitor-badge.glitch.me/badge?page_id=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`.