UNPKG

node-web-mvc

Version:
12 lines (11 loc) 243 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Pointcut { } exports.default = Pointcut; class TruePointcut extends Pointcut { matches() { return true; } } Pointcut.TRUE = new TruePointcut();