Skip to content

Instantly share code, notes, and snippets.

@zipcode
Last active August 29, 2015 13:56
Show Gist options
  • Save zipcode/8855953 to your computer and use it in GitHub Desktop.
Save zipcode/8855953 to your computer and use it in GitHub Desktop.
Object.lenses = function () {
var lens = null;
for (arg in arguments) {
var next = Object.lens(arguments[arg]);
lens = lens ? lens.compose(next) : next;
}
return lens
}
var l = Object.lenses("one", "five")
l({one: {five: 9}}) // 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment