Remove obsolete lib directory

This commit is contained in:
hensm
2018-06-09 12:03:55 +01:00
parent 61aaa01968
commit b63ddb9df9

View File

@@ -1,11 +0,0 @@
"use strict";
export function cloneIntoWithProto (obj, destination) {
const ret = cloneInto(obj, destination);
for (const key of Object.getOwnPropertyNames(obj.__proto__)) {
exportFunction(obj.__proto__[key].bind(obj), ret, { defineAs: key });
}
return ret;
}