Write a function that returns true if a hash is empty, and false otherwise.
true
false
is_empty({}) ➞ true is_empty({ "a" => 1 }) ➞ false
N/A