change-string-case/node_modules/undici/lib/dispatcher.js
Alex Szczuczko d0603cd0a7 npm install
2023-10-25 14:27:07 -06:00

20 lines
300 B
JavaScript

'use strict'
const EventEmitter = require('events')
class Dispatcher extends EventEmitter {
dispatch () {
throw new Error('not implemented')
}
close () {
throw new Error('not implemented')
}
destroy () {
throw new Error('not implemented')
}
}
module.exports = Dispatcher