Include pattern to match destrcutured objects only if they match the pattern properties: ``` const sumProps = (obj) => match(obj) ( ({a, b, c}) => a+b+c, ({a, b}) => a+b ) sumProps({a:1,b:2}) //returns 3 ```