beater-matcher
Version:
A matcher library for beater.
81 lines (78 loc) • 1.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "defineMatcher", {
enumerable: true,
get: function () {
return _matcher.defineMatcher;
}
});
Object.defineProperty(exports, "match", {
enumerable: true,
get: function () {
return _matcher.match;
}
});
Object.defineProperty(exports, "any", {
enumerable: true,
get: function () {
return _matchers.any;
}
});
Object.defineProperty(exports, "anyArray", {
enumerable: true,
get: function () {
return _matchers.anyArray;
}
});
Object.defineProperty(exports, "anyBigInt", {
enumerable: true,
get: function () {
return _matchers.anyBigInt;
}
});
Object.defineProperty(exports, "anyBoolean", {
enumerable: true,
get: function () {
return _matchers.anyBoolean;
}
});
Object.defineProperty(exports, "anyFunction", {
enumerable: true,
get: function () {
return _matchers.anyFunction;
}
});
Object.defineProperty(exports, "anyNumber", {
enumerable: true,
get: function () {
return _matchers.anyNumber;
}
});
Object.defineProperty(exports, "anyObject", {
enumerable: true,
get: function () {
return _matchers.anyObject;
}
});
Object.defineProperty(exports, "anyString", {
enumerable: true,
get: function () {
return _matchers.anyString;
}
});
Object.defineProperty(exports, "matchString", {
enumerable: true,
get: function () {
return _matchers.matchString;
}
});
Object.defineProperty(exports, "partialObject", {
enumerable: true,
get: function () {
return _matchers.partialObject;
}
});
var _matcher = require("./matcher");
var _matchers = require("./matchers");