Simple EventEmitter

emit and receive events!

Tính đến 21-06-2021. Xem phiên bản mới nhất.

Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta // @require https://update.greatest.deepsurf.us/scripts/426233/942855/Simple%20EventEmitter.js

Tác giả
Nuro#9818
Phiên bản
0.0.1.20210621181155
Đã tạo
09-05-2021
Đã cập nhật
21-06-2021
Kích thước
325 Byte
Giấy phép
N/A

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