rvikmanis/redux-kefir

View on GitHub
src/utils/isStore.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function isStore(object) {
  return (
    typeof object === "object" &&
    object !== null &&
    typeof object.subscribe === "function" &&
    typeof object.getState === "function"
  )
}