Skip to content

Instantly share code, notes, and snippets.

View wfatec's full-sized avatar

wfatec

  • ByteDance Inc.
  • Beijing, China
View GitHub Profile
@wfatec
wfatec / slim-redux.js
Created March 19, 2018 05:04 — 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])) {