A function to test if an object is an immutable-js object
npm install is-immutableExposes the isImmutable function from immutable-js, but without the rest of the Immutable library.
``js
import isImmutable from 'is-immutable';
isImmutable(someObj); // => boolean
``