Returns the first not empty element in the given objects, or undefined if all elements are empty
the objects to check
the first not empty element in the given objects, or undefined if all elements are empty
David Hsing
firstNotEmpty(null, undefined, {}, 'foo', 'bar'); // 'foo' Copy
firstNotEmpty(null, undefined, {}, 'foo', 'bar'); // 'foo'
Returns the first not empty element in the given objects, or undefined if all elements are empty