Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created May 25, 2020 22:24
Show Gist options
  • Save hsleonis/2cb547346893d4a3da9a6556328401d6 to your computer and use it in GitHub Desktop.
Save hsleonis/2cb547346893d4a3da9a6556328401d6 to your computer and use it in GitHub Desktop.
Check property of object
def check_prop(fn, prop):
  return lambda obj: fn(obj[prop])
check_age = check_prop(lambda x: x >= 18, 'age')
user = {'name': 'Mark', 'age': 18}

check_age(user) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment