/*=============================================================================
Description: A javascript file full of some helpers I come across as I code
through daily life.
Author: J. Nolan Hager (JNHager)
=============================================================================*/
(function(exports){
exports.jshlprs = {
isEmptyObj: function(obj){ return !Object.keys(obj).length; }
}
})(window)