Browse Source

Added functional utils.

backports/m1-live
Erik Stein 8 years ago
parent
commit
602dda5c50
  1. 14
      utils/functional.py

14
utils/functional.py

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
# Erik Stein <code@classlibrary.net>, 2017
def firstof(iterable, default=None):
"""
Returns the first value which is neither empty nor None.
"""
for value in iterable:
if value:
return value
return default
Loading…
Cancel
Save