Skip to content

Commit b8bd801

Browse files
committed
Fix same babel-runtime issue that arose in 1.3.0.
1 parent 0eac52b commit b8bd801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const buildInitializerDefineProperty = template(`
4646
const buildApplyDecoratedDescriptor = template(`
4747
function NAME(target, property, decorators, descriptor, context){
4848
var desc = {};
49-
Object.keys(descriptor).forEach(function(key){
49+
Object['ke' + 'ys'](descriptor).forEach(function(key){
5050
desc[key] = descriptor[key];
5151
});
5252
desc.enumerable = !!desc.enumerable;

0 commit comments

Comments
 (0)