UNPKG

wawebsj

Version:

whasapp web js

22 lines (18 loc) 407 B
'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;