JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 894
  • Score
    100M100P100Q143940F
  • License

Get current week number of the current year,given Date format string or Date object.

Package Exports

  • current-week-number

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (current-week-number) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

npm mit license build status coverage status deps status

Get current week number of the current year,given Date format string or Date object.

Install

npm i --save current-week-number
npm test
current-week-number --help

API

For more use-cases see the tests

currentWeekNumber

Get week number of the current date/year or given valid Date string format

  • [date] {String} every valid Date-ish string format
  • return {Number}

Example:

var currentWeekNumber = require('current-week-number');

// june 27, 2014
currentWeekNumber();
//=> 26

currentWeekNumber('March 24, 2015');
//=> 13

currentWeekNumber(new Date('March 24, 2015'));
//=> 13

currentWeekNumber('03/24/2016');
//=> 12, cuz' year is leap

currentWeekNumber('August 07, 2015');
//=> 32

currentWeekNumber(new Date('August 07, 2016'));
//=> 31

currentWeekNumber('02/16/2015');
//=> 8

currentWeekNumber('September 15, 2126');
//=> 37

currentWeekNumber('02/17/2012');
//=> 7

CLI

You can just run current-week-number --help for more information

Author

Charlike Mike Reagent

License MIT license

Copyright (c) 2014-2015 Charlike Mike Reagent, contributors.
Released under the MIT license.


Powered and automated by kdf, March 02, 2015