Created
February 15, 2018 12:03
-
-
Save wiyoe/7596dd88a264f1fa1398ae75bbd5dfbf to your computer and use it in GitHub Desktop.
Javascript decorator example.
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 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