mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01:00
ESLint stuff...
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
'use strict';
|
||||
module.exports = function CloneObject(obj) {
|
||||
var cloned = Object.create(obj);
|
||||
Object.assign(cloned, obj);
|
||||
module.exports = function cloneObject(obj) {
|
||||
const cloned = Object.create(obj);
|
||||
Object.assign(cloned, obj);
|
||||
|
||||
return cloned;
|
||||
return cloned;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user