mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TrieRouter = void 0;
|
|
const node_1 = require("./node");
|
|
class TrieRouter {
|
|
constructor() {
|
|
this.node = new node_1.Node();
|
|
}
|
|
add(method, path, handler) {
|
|
this.node.insert(method, path, handler);
|
|
}
|
|
match(method, path) {
|
|
return this.node.search(method, path);
|
|
}
|
|
}
|
|
exports.TrieRouter = TrieRouter;
|