Skip to content

Instantly share code, notes, and snippets.

@jaredwy
Created November 20, 2012 20:47
Show Gist options
  • Save jaredwy/4120970 to your computer and use it in GitHub Desktop.
Save jaredwy/4120970 to your computer and use it in GitHub Desktop.
refactor idea
//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