Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Created February 15, 2018 12:03
Show Gist options
  • Select an option

  • Save wiyoe/7596dd88a264f1fa1398ae75bbd5dfbf to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/7596dd88a264f1fa1398ae75bbd5dfbf to your computer and use it in GitHub Desktop.
Javascript decorator example.
function meta(object) {
return function(target) {
Object.keys(object).forEach(
key => target.prototype[key] = object[key]
)
}
}
@meta({
manufacturer: 'evolas'
})
class Data {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment