Last active
December 18, 2015 05:09
-
-
Save robertklep/5730649 to your computer and use it in GitHub Desktop.
This file contains 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
module.exports = function blah() { | |
console.log('N', this.name); | |
}; |
This file contains 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
var func = require('./func'); | |
var partial1 = func.bind(null); | |
partial1(); // N: undefined | |
var partial2 = func.bind(func); | |
partial2(); // N: blah |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment