1.0.0 • Published 6 years ago
mini-formater v1.0.0
mini-formater
a small and simple package for javascrip date formatting.
Install
using NPM:
npm install mini-formaterUsage
const format = require('mini-formater');
const date = new Date('12-3-2020');
const result = format(date, 'mmm dd yyyy');
console.log(result); // Dec 03 2020Supported formats
| Format | Description |
|---|---|
| d | the date day as a single digit |
| dd | the date day as two digit |
| m | the date month as a single digit |
| mm | the date month two digit |
| mmm | the date month shortcut name (ex: 'Oct, Dec') |
| mmmm | the date month full name |
| yy | the date year as two digits |
| yyyy | the date full year |
Supported separators
separators are used to separate date parts: | Separator | Example |-----------|---------------- |' ' space | '12 Oct 2019 |'-' dash | '12-Oct-2019 |'/' slash | '12/Oct/2019
License: MIT
1.0.0
6 years ago