mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
const dispatch = {
|
|
GET: require("./bla"),
|
|
POST: require("./subsub"),
|
|
};
|
|
|
|
module.exports.foo = function (name, type) {
|
|
dispatch[type](name);
|
|
};
|