Skip to content

Instantly share code, notes, and snippets.

View bharathm03's full-sized avatar
💭
Building InstructUI.com

Bharath Mohan bharathm03

💭
Building InstructUI.com
View GitHub Profile
@bharathm03
bharathm03 / topo-sort.js
Created July 10, 2018 11:54
Topo Sort - JavaScript, Node.js
// Map of library name and dependency names
var graph = new Map([
["base", ["build"]],
["build", []],
["popup", ["base", "lists"]],
["data", ["base"]],
["lists", ["base", "data"]],
["navigations", ["lists"]],
["grid", ["lists","navigations"]],
["chart", ["popup"]]