Created
January 11, 2017 21:44
-
-
Save orbitbot/10f841cfc65f7c743ebb7e07d4cf8b14 to your computer and use it in GitHub Desktop.
Set object property util, for convenience with mithril.js m.withAttr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const set = (obj, prop, modify = (v) => v) => (value) => obj[prop] = modify(value) | |
exports default set |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment