FIN INIT
This commit is contained in:
32
node_modules/date-fns/locale/zh-CN.js
generated
vendored
Normal file
32
node_modules/date-fns/locale/zh-CN.js
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
import { formatDistance } from "./zh-CN/_lib/formatDistance.js";
|
||||
import { formatLong } from "./zh-CN/_lib/formatLong.js";
|
||||
import { formatRelative } from "./zh-CN/_lib/formatRelative.js";
|
||||
import { localize } from "./zh-CN/_lib/localize.js";
|
||||
import { match } from "./zh-CN/_lib/match.js";
|
||||
|
||||
/**
|
||||
* @category Locales
|
||||
* @summary Chinese Simplified locale.
|
||||
* @language Chinese Simplified
|
||||
* @iso-639-2 zho
|
||||
* @author Changyu Geng [@KingMario](https://github.com/KingMario)
|
||||
* @author Song Shuoyun [@fnlctrl](https://github.com/fnlctrl)
|
||||
* @author sabrinaM [@sabrinamiao](https://github.com/sabrinamiao)
|
||||
* @author Carney Wu [@cubicwork](https://github.com/cubicwork)
|
||||
* @author Terrence Lam [@skyuplam](https://github.com/skyuplam)
|
||||
*/
|
||||
export const zhCN = {
|
||||
code: "zh-CN",
|
||||
formatDistance: formatDistance,
|
||||
formatLong: formatLong,
|
||||
formatRelative: formatRelative,
|
||||
localize: localize,
|
||||
match: match,
|
||||
options: {
|
||||
weekStartsOn: 1 /* Monday */,
|
||||
firstWeekContainsDate: 4,
|
||||
},
|
||||
};
|
||||
|
||||
// Fallback for modularized imports:
|
||||
export default zhCN;
|
Reference in New Issue
Block a user