Skip to content

Instantly share code, notes, and snippets.

@zackdouglas
Created January 24, 2013 15:47
Show Gist options
  • Save zackdouglas/4623435 to your computer and use it in GitHub Desktop.
Save zackdouglas/4623435 to your computer and use it in GitHub Desktop.
JS Hoist implementation
function hoist (source, target, property, prfx, sufx) {
for (var p in source[property]) {
target[(prfx||'') + p + (sufx||'')] = source[property][p];
}
}
var source = {
loader: {
fire: function () { alert('fire!') }
}
};
var target = {};
hoist(source, target, 'loader', 'loader_');
target.loader_fire();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment