Last active
August 29, 2015 14:17
-
-
Save gregtatum/15da2e0d865859eececa 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
| function createNamedObject( fn, obj ) { | |
| return _.extend(new fn(), obj) | |
| } | |
| var api = { | |
| get: function() {}, | |
| set: function() {}, | |
| save: function() {} | |
| } | |
| var namedApi = createNamedObject( function MyCustomApi(){}, api) | |
| console.log( api ) | |
| // > Object {get: function, set: function, save: function} | |
| console.log( namedApi ) | |
| // > MyCustomApi {get: function, set: function, save: function} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment