mirror of
https://github.com/github/codeql.git
synced 2026-01-24 11:52:56 +01:00
6 lines
104 B
Python
6 lines
104 B
Python
import re
|
|
matcher = re.compile(r"\b[\t\b]")
|
|
|
|
def match_data(data):
|
|
return bool(matcher.match(data))
|