jsOMS/Route/Route.js
2015-11-29 22:01:42 +01:00

16 lines
400 B
JavaScript

(function (jsOMS, undefined) {
// TODO: create comments
jsOMS.Route = function ()
{
this.routes = null;
};
// TODO: create comments
jsOMS.Route.prototype.add = function (path, callback, exact)
{
exact = typeof exact !== 'undefined' ? exact : true;
// todo: create array key path like i did for php
};
}(window.jsOMS = window.jsOMS || {}));