D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
whatsapp-api
/
node_modules
/
whatsapp-web.js
/
src
/
structures
/
Filename :
Base.js
back
Copy
'use strict'; /** * Represents a WhatsApp data structure */ class Base { constructor(client) { /** * The client that instantiated this * @readonly */ Object.defineProperty(this, 'client', { value: client }); } _clone() { return Object.assign(Object.create(this), this); } _patch(data) { return data; } } module.exports = Base;