Here you can find the source of is_empty()
Array.prototype.is_empty = function() { return is_empty(this); };
Array.prototype.isEmpty = function() { return this.length == 0; };
Array.prototype.isEmpty = function() { return this.length == 0;
Array.prototype.isEmpty = function() { return this.length < 1 };
Array.prototype.isEmpty = function () { return this.length === 0; };
Array.prototype.isEmpty = function() { return this.length == 0 ? true : false; };