sunday-to-saturday

1.1.3 • Public • Published

Sunday to Saturday

This is a small, lightweight tool that can be used to format a date string (ex: Mon - w or m, t, w) into an array of dates (["monday", "tuesday", "wednesday"]).

Usage

To use this package, include it in your project using npm i sunday-to-saturday.

Example usage:

const sunToSat = require('sunday-to-saturday')

// returns `[ 'monday', 'tuesday', 'wednesday', 'thursday', 'friday' ]`
console.log(satToSun("mon-fri"))

// returns `[ 'monday', 'wednesday', 'friday' ]`
console.log(satToSun('m, w, f'))

// returns `[ 'sunday', 'monday', 'friday', 'saturday' ]`
console.log(satToSun('fri - mon'))

// returns [ 'friday' ]
console.log(satToSun('fri'))

// returns [ 'sunday', 'saturday' ]
console.log(satToSun('weekends'))   // also catches anything with "end"

// returns [ 'monday', 'tuesday', 'wednesday', 'thursday', 'friday' ]
console.log(satToSun('wkday'))      // also catches: 'weekday', 'wkday' or 'workday'

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i sunday-to-saturday

      Weekly Downloads

      2

      Version

      1.1.3

      License

      ISC

      Unpacked Size

      7.5 kB

      Total Files

      4

      Last publish

      Collaborators

      • heyitsbryanm