Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas committed May 21, 2017
1 parent bdcefef commit 9a696f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/schemas/ImmutableUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
export function isImmutable(object) {
return !!(object && (
(typeof object.hasOwnProperty === 'function' && object.hasOwnProperty('__ownerID')) || // Immutable.Map
(object._map && typeof object._map.hasOwnProperty === 'function' && object._map.hasOwnProperty('__ownerID')) // Immutable.Record
(object._map && typeof object._map.hasOwnProperty === 'function' &&
object._map.hasOwnProperty('__ownerID')) // Immutable.Record
));
}

Expand Down

0 comments on commit 9a696f7

Please sign in to comment.