You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
294 B
13 lines
294 B
|
2 months ago
|
'use strict';
|
||
|
|
|
||
|
|
const BaseConnection = require('./base/connection.js');
|
||
|
|
|
||
|
|
class Connection extends BaseConnection {
|
||
|
|
promise(promiseImpl) {
|
||
|
|
const PromiseConnection = require('./promise/connection.js');
|
||
|
|
return new PromiseConnection(this, promiseImpl);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = Connection;
|