Function notMatch

  • check if string matches regex

    Parameters

    • actual: string
    • regex: RegExp

    Returns void

    match('foo', /foo/);
    
    notMatch('foo', /bar/);