Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/firstandthird/datefmt

Javascript date and time formatter
https://github.com/firstandthird/datefmt

Last synced: 3 days ago
JSON representation

Javascript date and time formatter

Awesome Lists containing this project

README

        

#datefmt

Date format lib

### Usage

Uses php style date format.

```javascript
const date = new Date(2013, 4, 8);
datefmt('%j %D %l', date); // 8 Wed Wednesday
```

```javascript
const date = new Date(2013, 0, 6);
const months = ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'];
const days = ['Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado', 'Domingo'];

datefmt.translate(months, days);
datefmt('%F', date); //Enero
datefmt('%l', date); //Lunes
```