You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

occasion

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

occasion

A date formatting library

Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
163
14.79%
Maintainers
1
Weekly downloads
 
Created
Source

occasion

A date formatting library based on moment.js. By only doing date formatting it is kept really small, and by not dealing with times, it avoids having to deal with time zones. Pass in your date as a string in the form YYYY-MM-DD and get it in a nice format to display to your users.

Build Status Dependency Status NPM version

Installation

npm install occasion

##Usage

var formatDate = require('occasion');

assert.deepEqual(formatDate('2014-06-01', 'Do MMM YYYY'), '1st Jun 2014');
assert.deepEqual(formatDate('2014-06-01', 'ddd D MMM'), 'Sun 1 Jun');

Tokens:

         | Token | Output

-------------|-------|--------------------------------------- Year | YY | 70 71 ... 29 30 | YYYY | 1970 1971 ... 2029 2030 Month | M | 1 2 ... 11 12 | Mo | 1st 2nd ... 11th 12th | MM | 01 02 ... 11 12 | MMM | Jan Feb ... Nov Dec | MMMM | January February ... November December Day of Month | D | 1 2 ... 30 31 | Do | 1st 2nd ... 30th 31st | DD | 01 02 ... 30 31 Day of Week | dd | Su Mo ... Fr Sa | ddd | Sun Mon ... Fri Sat | dddd | Sunay Monday ... Friday Saturday

License

MIT

FAQs

Package last updated on 01 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts