Functions.without_modifier_names()
without_modifier_names(names: List[str], sensitivity: bool = True) → Functions
Adds a filter to get functions that don't have any modifier with one of the given names.
Example
from glider import *
def query():
# Fetch a list of functions without modifiers from the given list
functions = Functions().without_modifier_names(['onlyAdmin','onlyOwner']).exec(10)
return functionsOutput

Last updated