1.0.2 • Published 1 year ago

dayjs-plugin-strftime v1.0.2

Weekly downloads
-
License
Unlicense
Repository
-
Last release
1 year ago

dayjs-plugin-strftime

GitHub last commit npm

Adding strftime to day js.

It is just a dayjs wrapper around strftime. Go there about customization

examples

const dayjs = require("dayjs");
const strftime = require("dayjs-plugin-strftime");

dayjs.extend(strftime);

// this can be any dayjs object
let now = dayjs();

// 2021-06-07 12:01:45
now.strftime("%F %T");

localization is done by:

const dayjs = require("dayjs");
const strftime = require("dayjs-plugin-strftime");

dayjs.extend(strftime);

let now = dayjs();

// 25 januari, 2019 00:00:00
now.strftime("%d %B, %Y %H:%M:%S", "nl_NL");
1.0.2

1 year ago

1.0.1

3 years ago

1.0.0

3 years ago