Skip to content

Instantly share code, notes, and snippets.

View CodinCat's full-sized avatar
:octocat:
hi

CodinCat CodinCat

:octocat:
hi
View GitHub Profile
@CodinCat
CodinCat / slim-redux.js
Created March 20, 2017 08:02 — forked from gaearon/slim-redux.js
Redux without the sanity checks in a single file. Don't use this, use normal Redux. :-)
function mapValues(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
result[key] = fn(obj[key], key);
return result;
}, {});
}
function pick(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
if (fn(obj[key])) {