1import { AnyCalendarKind } from "icu4x" 2export function bcp47(anyCalendarKind) { 3 4 let out = anyCalendarKind.bcp47; 5 6 7 return out; 8} 9