dayjs-plugin-strftime
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

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");

Readme

Keywords

Package Sidebar

Install

npm i dayjs-plugin-strftime

Weekly Downloads

91

Version

1.0.2

License

Unlicense

Unpacked Size

2.94 kB

Total Files

6

Last publish

Collaborators

  • thomas.timmer