module.exports = { clone: clone, } function clone(obj) { return Object.assign({}, obj); }