UNPKG

afg-provinces

Version:

List of all provinces of Afghanistan with their respective districs

9 lines (8 loc) 242 B
import { POVINCES_ENGLISH, PROVINCES_PERSIAN } from "./provinces"; export const provinces = (language) => { if (language === "per" || language === "fa") { return PROVINCES_PERSIAN; } else { return POVINCES_ENGLISH; } };