@rr0/cms
Version:
RR0 Content Management System (CMS)
8 lines (7 loc) • 308 B
JavaScript
import { CountryCode } from "@rr0/data";
import { CmsCountry } from "../country/CmsCountry.js";
import { Region } from "../country/region/Region.js";
export const newZealand = new CmsCountry(CountryCode.nz);
export function newZealandRegion(code, place) {
return new Region(code, newZealand, [place]);
}