containsKey
Alias for hasKey(). Check if an object has a property with the given key name.
object(required): the object to checkkey(required): property name as string
utlx
containsKey($input, "email") // true
containsKey($input, "phone") // false
{
hasEmail: containsKey($input, "email")
}