Skip to content

Instantly share code, notes, and snippets.

@csmr
Forked from ericraio/gist:6799520
Created February 15, 2021 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csmr/c10604f63de267b73ec98dc1b7a9465c to your computer and use it in GitHub Desktop.
Save csmr/c10604f63de267b73ec98dc1b7a9465c to your computer and use it in GitHub Desktop.
ValueObject = function(value) {
this.value = value;
}
$.extend(ValueObject.prototype, {
get: function() {
return this.value;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment