1
0
Fork 0

Missed one

This commit is contained in:
Alan Plum 2016-05-02 17:23:49 +02:00
parent 4af0c67c5c
commit 571e07c613
No known key found for this signature in database
GPG Key ID: 8ED72A9A323B6EFD
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
Object.defineProperty(Object.prototype, '_shallowCopy', {
get() {
var self = this;
return Object.prototype.propertyKeys.reduce(function (previous, key) {
return this.propertyKeys.reduce(function (previous, key) {
previous[key] = self[key];
return previous;
}, {});