mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
git-subtree-dir: packages/pjax git-subtree-split: 8abb21e1e9d899217b03c489c9b2d9ecd92074b5
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
module.exports = function(obj) {
|
|
/* istanbul ignore if */
|
|
if (null === obj || "object" !== typeof obj) {
|
|
return obj
|
|
}
|
|
var copy = obj.constructor()
|
|
for (var attr in obj) {
|
|
if (obj.hasOwnProperty(attr)) {
|
|
copy[attr] = obj[attr]
|
|
}
|
|
}
|
|
return copy
|
|
}
|