You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 26, 2024. It is now read-only.
if (e.MsgType === 1) {
var reg = /hen+[a-z0-9-A-Z]+/;
if (reg.exec(e.Content)) {
const subprocess = self.getT5Key(e.Content);
subprocess.stdout.on('data', (data) => {
window.alert(`${data}`);
});
}
}
报DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
有什么解决办法没?