Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@chce/weeknumber-iso8601

chcederquist10MIT-01.0.9TypeScript support: included

Function to calculate the week number of a given date

weeknumber, ugenummer, ugenr, iso8601, iso-8601, week

readme

weeknumber-iso8601

A lightweight(186 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)