UNPKG

geo-nepal

Version:

A tiny package to list districts of Nepal.

12 lines (11 loc) 288 B
class Province { constructor(number, name, headquater, area, population, districts) { this.number = number; this.name = name; this.headquater = headquater; this.area = area; this.population = population; this.districts = districts; } } module.exports = Province;