UNPKG

japanese-date-converter

Version:

Convert western or japanese years into opposite years.

16 lines (13 loc) 472 B
const { JapaneseDateConverter } = require("../dist/japanese-date-converter"); describe("JapaneseDateConverter", () => { test("can be executed from CommonJS", () => { // in class or function const inputValue = "R01/05/01"; const settings = { format: "yyyy/MM/dd", }; const converter = new JapaneseDateConverter({ inputValue, settings }); const convertedValue = converter.execute(); expect(convertedValue).toBe("2019/05/01"); }); });