tiny-types
Version:
A tiny library that brings Tiny Types to JavaScript and TypeScript
17 lines • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MatchesAnything = void 0;
const MatcherRule_1 = require("./MatcherRule");
/**
* @access private
*/
class MatchesAnything extends MatcherRule_1.MatcherRule {
constructor(transformation) {
super(transformation);
}
matches(_) {
return true;
}
}
exports.MatchesAnything = MatchesAnything;
//# sourceMappingURL=MatchesAnything.js.map