backbone-publication
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -73,3 +73,3 @@ import _ from 'underscore'; | ||
/** | ||
* isObject is a cheap version of $.isPlainObject because importing jquery for | ||
* isPlainObject is a cheap version of $.isPlainObject because importing jquery for | ||
* a single function is overkill. The only difference in functionality is that | ||
@@ -83,3 +83,3 @@ * this `isObject` fails to return false for an ES6 class created object (which | ||
*/ | ||
isObject: function isObject(obj) { | ||
isPlainObject: function isPlainObject(obj) { | ||
return _.isObject(obj) && !_.isArray(obj); | ||
@@ -86,0 +86,0 @@ } |
{ | ||
"name": "backbone-publication", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Supports backbone classes backed by `publication-client` reactive queries.", | ||
@@ -5,0 +5,0 @@ "main": "dist/browser/index.js", |
@@ -36,3 +36,4 @@ # backbone-publication | ||
### Changelog | ||
* 1.0.2 - Util function name typo (`isObject` -> `isPlainObject`). | ||
* 1.0.1 - Use our own local utils instead of external underscore extensions. | ||
* 1.0.0 - Initial release. |
@@ -73,3 +73,3 @@ import _ from 'underscore'; | ||
/** | ||
* isObject is a cheap version of $.isPlainObject because importing jquery for | ||
* isPlainObject is a cheap version of $.isPlainObject because importing jquery for | ||
* a single function is overkill. The only difference in functionality is that | ||
@@ -83,3 +83,3 @@ * this `isObject` fails to return false for an ES6 class created object (which | ||
*/ | ||
isObject: function(obj) { | ||
isPlainObject: function(obj) { | ||
return _.isObject(obj) && !_.isArray(obj); | ||
@@ -86,0 +86,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29020
39