FIN INIT
This commit is contained in:
29
node_modules/date-fns/locale/is.js
generated
vendored
Normal file
29
node_modules/date-fns/locale/is.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
import { formatDistance } from "./is/_lib/formatDistance.js";
|
||||
import { formatLong } from "./is/_lib/formatLong.js";
|
||||
import { formatRelative } from "./is/_lib/formatRelative.js";
|
||||
import { localize } from "./is/_lib/localize.js";
|
||||
import { match } from "./is/_lib/match.js";
|
||||
|
||||
/**
|
||||
* @category Locales
|
||||
* @summary Icelandic locale.
|
||||
* @language Icelandic
|
||||
* @iso-639-2 isl
|
||||
* @author Derek Blank [@derekblank](https://github.com/derekblank)
|
||||
* @author Arnór Ýmir [@lamayg](https://github.com/lamayg)
|
||||
*/
|
||||
export const is = {
|
||||
code: "is",
|
||||
formatDistance: formatDistance,
|
||||
formatLong: formatLong,
|
||||
formatRelative: formatRelative,
|
||||
localize: localize,
|
||||
match: match,
|
||||
options: {
|
||||
weekStartsOn: 1 /* Monday */,
|
||||
firstWeekContainsDate: 4,
|
||||
},
|
||||
};
|
||||
|
||||
// Fallback for modularized imports:
|
||||
export default is;
|
Reference in New Issue
Block a user