Skip to content

thomas9911/dayjs-plugin-strftime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Simple Plugin for dayjs that adds strftime formatting

Resources

Stars

Watchers

Forks

Packages

No packages published