Lines Matching defs:match
660 message = 'The input did not match the regular expression ' +
1001 const match = fn === assert.match;
1003 RegExpPrototypeExec(regexp, string) !== null !== match) {
1010 // 'The input was expected to not match the regular expression ' +
1014 (match ?
1015 'The input did not match the regular expression ' :
1016 'The input was expected to not match the regular expression ') +
1031 * Expects the `string` input to match the regular expression.
1037 assert.match = function match(string, regexp, message) {
1038 internalMatch(string, regexp, message, match);
1042 * Expects the `string` input not to match the regular expression.