az-wind
Version:
A library for the exploration of motion in painting
14 lines (11 loc) • 364 B
JavaScript
function copyAttributesToObject(attributes, object) {
// this removes functions and leaves us with only serializable types
// which is what we care about
var attrs = JSON.parse(JSON.stringify(attributes));
for (var key in attrs) {
object[key] = attrs[key];
}
}
module.exports = {
copyAttributesToObject: copyAttributesToObject
};