mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 04:52:22 +00:00
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
module.exports = function cloneObject(obj) {
|
|
const cloned = Object.create(obj);
|
|
Object.assign(cloned, obj);
|
|
|
|
return cloned;
|
|
};
|