Simple EventEmitter

emit and receive events!

لا ينبغي أن لا يتم تثبيت هذا السكريت مباشرة. هو مكتبة لسكبتات لتشمل مع التوجيه الفوقية // @require https://update.greasyfork.org/scripts/426233/948861/Simple%20EventEmitter.js

المؤلف
Nuro#9818
الإصدار
0.0.1.20210709192810
تم إنشاؤه
09-05-2021
تم تحديثه
09-07-2021
الترخيص
لا يوجد

Example usage:

var EventEmitter = require('events')

var e = new EventEmitter()
e.on('message', function (text) {
  console.log(text)
})
e.emit('message', 'hello world')

If you have any questions, here's my Discord:
Stew#4055