ktongue's picture
download
raw
393 Bytes
import value from "./value.js";
export default function(a, b) {
var i = {},
c = {},
k;
if (a === null || typeof a !== "object") a = {};
if (b === null || typeof b !== "object") b = {};
for (k in b) {
if (k in a) {
i[k] = value(a[k], b[k]);
} else {
c[k] = b[k];
}
}
return function(t) {
for (k in i) c[k] = i[k](t);
return c;
};
}

Xet Storage Details

Size:
393 Bytes
·
Xet hash:
f63980d1f25a9d91b6914e4c56e7fd7166f220ce31ee2b3fcbf8678764fde870

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.