@chce/weeknumber-iso8601
v1.0.6
Published
Function to calculate the week number of a given date
Downloads
363
Maintainers
Readme
weeknumber-iso8601
A lightweight(250 bytes minified) function to calculate the ISO 8601 week number for a given Date-object. Includes TS-definition.
Installation
Install via npm:
npm install weeknumber-iso8601
Usage
import { getWeekNumberISO8601 } from 'weeknumber-iso8601';
const date = new Date('2024-11-13');
const weekNumber = getWeekNumberISO8601(date);
console.log(`Week number: ${weekNumber}`);
Example
const date1 = new Date('2024-01-03'); // Early January
console.log(`Week number: ${getWeekNumberISO8601(date1)}`); // Should return 1
const date2 = new Date('2024-12-31'); // End of the year
console.log(`Week number: ${getWeekNumberISO8601(date2)}`); // Should return the last week number of 2024
License
This library is open source and licensed under the MIT-0 License. (No attribution needed in your minified bundle)