diff --git a/source/Ox/js/Type.js b/source/Ox/js/Type.js index e1c4b64f..5ddd19af 100644 --- a/source/Ox/js/Type.js +++ b/source/Ox/js/Type.js @@ -83,6 +83,8 @@ Ox.isEmpty Tests if a value is an empty array, object or string true > Ox.isEmpty('') true + > Ox.isEmpty(document.getElementsByTagName('')) + true > Ox.isEmpty(function() {}) false > Ox.isEmpty(false)