mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
cbb27241c4
This is to help with the migration to Ember CLI. In the current running version of Discourse everything should be the same as before, just with a few extra files that are not used. However, using Ember CLI this can be installed as an Ember addon. Co-Authored-By: Jarek Radosz <jradosz@gmail.com>
25 lines
638 B
JavaScript
25 lines
638 B
JavaScript
import isDescriptor from "discourse-common/utils/is-descriptor";
|
|
|
|
function handleDescriptor(target, property, desc, fn, params = []) {
|
|
return {
|
|
enumerable: desc.enumerable,
|
|
configurable: desc.configurable,
|
|
writable: desc.writable,
|
|
initializer: function() {
|
|
return fn(...params);
|
|
}
|
|
};
|
|
}
|
|
|
|
export default function macroAlias(fn) {
|
|
return function(...params) {
|
|
if (isDescriptor(params[params.length - 1])) {
|
|
return handleDescriptor(...params, fn);
|
|
} else {
|
|
return function(target, property, desc) {
|
|
return handleDescriptor(target, property, desc, fn, params);
|
|
};
|
|
}
|
|
};
|
|
}
|