7 lines
106 B
Python
7 lines
106 B
Python
import re
|
|
|
|
|
|
def check_njs(output_version):
|
|
if re.search('--njs', output_version):
|
|
return True
|