Created
August 9, 2014 12:16
-
-
Save ImanMh/722ff5fa6bd79860d3e2 to your computer and use it in GitHub Desktop.
simple single tone pattern in javascript
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 factory() { | |
var highlander = { | |
name: 'MacLeod' | |
}; | |
return { | |
get: function get() { | |
return highlander; | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment