Skip to content

A lightweight function to calculate the ISO 8601 week number for a given Date-object. Includes TS-definition.

License

Notifications You must be signed in to change notification settings

chcederquist/weeknumber-iso8601

Repository files navigation

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)

About

A lightweight function to calculate the ISO 8601 week number for a given Date-object. Includes TS-definition.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published