Update snippet titles

This commit is contained in:
Isabelle Viktoria Maciohsek
2022-02-10 22:09:42 +02:00
parent 2a16eb9892
commit 448cb3b532
24 changed files with 29 additions and 29 deletions

View File

@ -1,13 +1,13 @@
---
title: check_prop
title: Check property
tags: function,intermediate
firstSeen: 2020-01-02T16:49:25+02:00
lastUpdated: 2020-11-02T19:27:07+02:00
---
Creates a function that will invoke a predicate function for the specified property on a given object.
Creates a function that will invoke a predicate function for the specified property on a given dictionary.
- Return a `lambda` function that takes an object and applies the predicate function, `fn` to the specified property.
- Return a `lambda` function that takes a dictionary and applies the predicate function, `fn` to the specified property.
```py
def check_prop(fn, prop):