Update sqlite Session to support Symbol.dispose and move the definition of the dispose methods to c++ to close the open TODO PR-URL: https://github.com/nodejs/node/pull/58378 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
'use strict';
|
|
const { emitExperimentalWarning } = require('internal/util');
|
|
|
|
emitExperimentalWarning('SQLite');
|
|
|
|
module.exports = internalBinding('sqlite');
|