Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Last active December 4, 2016 16:30
Show Gist options
  • Save made-by-chris/62557726b808fe5f46b44f2d90d08842 to your computer and use it in GitHub Desktop.
Save made-by-chris/62557726b808fe5f46b44f2d90d08842 to your computer and use it in GitHub Desktop.
$ = function(parameters) {
var state = {}
state.nodeList = document.querySelectorAll(parameters)
state.dom = [].slice.call(state.nodeList)
return {
left: function(){
console.log(state.dom, “turning left”)
return this
},
right: function(){
console.log(state.dom, “turning right”)
return this
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment