JSPM

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

Get current week number of the current year or given date string format.

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 or given date string format.

Install

npm install current-week-number
npm test

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('03/24/2016')
//=> 12, cuz' year is leap

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

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

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, January 26, 2015