zazzy-browser
Advanced tools
Comparing version 0.2.12 to 0.2.13
//! zzb.js | ||
//! version: 0.2.12 | ||
//! version: 0.2.13 | ||
//! author(s): Jaret Pfluger | ||
@@ -469,2 +469,5 @@ //! license: MIT | ||
}, | ||
isEmpty: function () { | ||
return this.hasRecords() && this.first() === null | ||
}, | ||
first: function () { | ||
@@ -471,0 +474,0 @@ return (this.recs && Array.isArray(this.recs) && this.recs.length > 0 ? this.recs[0] : null) |
//! zzb.js | ||
//! version: 0.2.12 | ||
//! version: 0.2.13 | ||
//! author(s): Jaret Pfluger | ||
@@ -4,0 +4,0 @@ //! license: MIT |
{ | ||
"name": "zazzy-browser", | ||
"version": "0.2.12", | ||
"version": "0.2.13", | ||
"description": "A collection of general-purpose browser utilities used as higher-level building-blocks to create Bootstrap v3 websites and assist in client-server communications.", | ||
@@ -5,0 +5,0 @@ "engines": { |
@@ -24,2 +24,5 @@ // client or server | ||
}, | ||
isEmpty: function () { | ||
return this.hasRecords() && this.first() === null | ||
}, | ||
first: function () { | ||
@@ -26,0 +29,0 @@ return (this.recs && Array.isArray(this.recs) && this.recs.length > 0 ? this.recs[0] : null) |
136745
3301