All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
"use strict";
|
|
|
|
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];
|
|
}
|
|
}; |