Skip to content

AyushSaini00/date-word

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

date-word

Converts date from one language to another

install

npm install date-word

usage

import dateWord from "date-word";

dateWord(`18. Dezember 2021`, {
  is: "de",
  to: "en",
});
// 18 december 2021

dateWord(`18 décembre 2021`, {
  is: "fr",
  to: "es",
});
// 18 diciembre 2021

dateWord(`18 décembre 2021`, {
  is: "fr",
  format: "isoString",
});
// 2021-12-17T18:30:00.000Z

demo

api

  • dateWord(dateInput, options)

dateInput

Type: string

date to covert from one language to another

options

Type: object children types : string

is (required)

language code for the dateInput string

to

language code for the convert to date

format

date formats, defaults to none.

formats present as of now

  • isoString