<1kb的简单日期和时间格式化程序
tinytime导出单个函数,该函数返回模板对象。该对象只有一个方法,render该方法采用a Date并返回包含渲染数据的字符串。
import tinytime from 'tinytime';
const template = tinytime('The time is {h}:{mm}:{ss}{a}.');
template.render(new Date());
// The time is 11:10:20PM.
链接: https://fly63.com/nav/2726