From 4d55cd6f942840ddd2396adc4e963bf8e17d7a41 Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Tue, 19 Nov 2019 18:30:16 -0500 Subject: [PATCH] (docs): add link to fixtures as another transform example - not necessarily the most useful transforms there, but they are examples nonetheless - and they show both to and from Storage usage --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 72e67a9..c387cbb 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ type StrToAnyMap = {[key: string]: any} ``` As an example, one may see how [whitelists](https://github.com/agilgur5/mst-persist/blob/9ba76aaf455f42e249dc855d66349351148a17da/src/whitelistTransform.ts#L7-L12) and [blacklists](https://github.com/agilgur5/mst-persist/blob/9ba76aaf455f42e249dc855d66349351148a17da/src/blacklistTransform.ts#L7-L12) are implemented internally as transforms. +Another example would be how the [transform test fixtures](https://github.com/agilgur5/mst-persist/blob/d3aa4476f92a087c882dccf8530a37096d8c64ed/test/fixtures.ts#L19-L34) are implemented internally. #### Transform Ordering