Exploding items with empty lists (`'fizz': []`) results in a value of `None` for that key.
Example:
python
>>> from flatsplode import flatsplode
>>> list(flatsplode({
... 'id': '78e5b18c',
... 'attrs': [],
... 'keywords': [
... {'fizz': ['fizza', 'fizzb']},
... {'buzz': []}
... ]
... }))
>>> [
... {'id': '78e5b18c', 'attrs': None, 'keywords.fizz': 'fizza'},
... {'id': '78e5b18c', 'attrs': None, 'keywords.fizz': 'fizzb'},
... {'id': '78e5b18c', 'attrs': None, 'keywords.buzz': None},
... ]