• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { ListFormatter } from "icu4x"
2import { Locale } from "icu4x"
3export function format(listFormatterLocaleName, listFormatterLength, list) {
4
5    let listFormatterLocale = Locale.fromString(listFormatterLocaleName);
6
7    let listFormatter = ListFormatter.createAndWithLength(listFormatterLocale,listFormatterLength);
8
9    let out = listFormatter.format(list);
10
11
12    return out;
13}
14