UNPKG

@dzcode-io/kuliya

Version:

Algeria's college hierarchy dataset as javascript package

8 lines (6 loc) 253 B
import { Node } from "../_config/types"; import get from "lodash/fp/get"; import mainJson from "../_data/main.json"; export const getNodeByPath: (path: string) => Node = (path: string) => { return get(path.replace(/\//g, ".children."), mainJson); };