Skip to content

Instantly share code, notes, and snippets.

@ImanMh
Created August 9, 2014 12:16
Show Gist options
  • Save ImanMh/722ff5fa6bd79860d3e2 to your computer and use it in GitHub Desktop.
Save ImanMh/722ff5fa6bd79860d3e2 to your computer and use it in GitHub Desktop.
simple single tone pattern in javascript
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