5fae594
1
2
3
4
5
6
7
8
module.exports = function copy (obj) { var o = {} Object.keys(obj).forEach(function (i) { o[i] = obj[i] }) return o }