From 8d90067d9366d1146a12d5273c89c335640c53ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20D=C3=B6rr?= Date: Sat, 12 May 2018 10:44:25 +0200 Subject: [PATCH] Export shallowEqual --- LICENSE | 2 +- src/index.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 96ae569..621e544 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Timo Dörr and contributors +Copyright (c) 2017-present, Timo Dörr and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/index.ts b/src/index.ts index 8289434..4b65af5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,11 @@ import { Action } from "./action"; import { Store } from "./store"; import { Reducer, NamedObservable } from "./types"; +import { shallowEqual } from "./shallowEqual" export { Action, Store, Reducer, - NamedObservable + NamedObservable, + shallowEqual, }