Skip to content

Instantly share code, notes, and snippets.

View yetimdasturchi's full-sized avatar
👨‍💻
Fisting code

Manuchehr Usmonov yetimdasturchi

👨‍💻
Fisting code
View GitHub Profile
let Router = {
routes: {
"/": "index",
"/sayhello/:name": "sayhello"
},
init: function() {
this._routes = [];
for (let route in this.routes) {
let method = this.routes[route];
this._routes.push({