Created
April 16, 2010 21:49
-
-
Save quickredfox/369015 to your computer and use it in GitHub Desktop.
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
/* | |
This method plays on heideggerian theories. | |
It makes a method of Das Man -- or one that is unready-to-hand -- | |
available ready-to-hand on a specified Dasein. | |
*/ | |
var changeBeing = function(method,dasein){ | |
return function readyToHand(){ | |
return method.apply(dasein,arguments); | |
}; | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, I am quite the nerd sometimes.