Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 84x | import { matchesStringOrRegExp } from "./matchesStringOrRegExp";
/**
* Check if an options object's propertyName contains a user-defined string or
* regex that matches the passed in input.
*/
export function optionsMatches(
options /*: Object*/,
propertyName /*: string*/,
input /*: string*/
) /*: boolean*/ {
return !!(
options &&
options[propertyName] &&
typeof input === "string" &&
matchesStringOrRegExp(input, options[propertyName])
);
}
|