Skip to content

Commit 0535347

Browse files
committed
Formatting for __def__
1 parent 13f2857 commit 0535347

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

transcrypt/modules/org/transcrypt/__core__.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ export var __proxy__ = false; // No use assigning it to __all__, only its trans
111111

112112
// Binds a function to the target class object
113113
export var __def__ = function (cls, method, name) {
114-
let method_name = (name ? name : method.name);
115-
Object.defineProperty (cls, method_name, {
116-
'get': method, 'set': (func) => __def__ (this, func, method_name),
117-
'configurable': true, 'enumerable': true
114+
let method_name = (name ? name : method.name);
115+
Object.defineProperty (cls, method_name, {
116+
get: method, set: (func) => __def__ (this, func, method_name),
117+
configurable: true, enumerable: true
118118
});
119119
};
120120

0 commit comments

Comments
 (0)