Write a function that returns True if a dictionary is empty, and False otherwise.
True
False
is_empty({}) ➞ True is_empty({ "a": 1 }) ➞ False
N/A