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

https://github.com/b-coimbra/strftime.js

lightweight ruby-like strftime date formatting implementation
https://github.com/b-coimbra/strftime.js

date-formatting datetime strftime

Last synced: about 2 months ago
JSON representation

lightweight ruby-like strftime date formatting implementation

Awesome Lists containing this project

README

        

# strftime.js

Ruby-like strftime method implementation in Javascript without the percentage notation.

The formatting is based on [strftime.org](http://strftime.org)

## Example

```js
console.log(new Date().strftime('H:M p - A')) // 21:32 AM - Thursday
```

```js
console.log(new Date('01/01/2018').strftime('m/b/Y')) // 1/Jan/2018
```

```js
console.log(new Date('01/18/2018').strtime('do B Y')) // 18th January 2018
```