From 55242820a8e6292abf46067ed0f6a55405029680 Mon Sep 17 00:00:00 2001 From: Chris Kwan Date: Wed, 24 Oct 2018 17:50:21 -0400 Subject: [PATCH] Add link to lodash's mapValues() documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b08f3fa..0f33814 100644 --- a/README.md +++ b/README.md @@ -56,4 +56,4 @@ export const updateThing = createAction('UPDATE_THING', WebAPI.updateThing); export const deleteThing = createAction('DELETE_THING', WebAPI.deleteThing); ``` -(You'll probably notice how this could be simplified even further using something like lodash's `mapValues()`.) +(You'll probably notice how this could be simplified even further using something like [lodash's `mapValues()`](https://lodash.com/docs/4.17.10#mapValues).)