Created
November 20, 2012 20:47
-
-
Save jaredwy/4120970 to your computer and use it in GitHub Desktop.
refactor idea
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
//test.js | |
export = { | |
//rename this to hello | |
a:function(), | |
c:function(); | |
d:function(); | |
} | |
//some other file | |
var b = require('test'); | |
//would not | |
var a = function() { | |
}; | |
//would rename to hello | |
test.a(); | |
//would not | |
a(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment