All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
module.exports = function(a, b, reserved) {
|
|
reserved = reserved || {};
|
|
// This will get id, className, style, etc.
|
|
for (var x in b) {
|
|
if (!b.hasOwnProperty(x)) continue;
|
|
if (reserved[x]) continue;
|
|
a[x] = b[x];
|
|
}
|
|
};
|