mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 05:38:47 +02:00

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>
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
'use strict';
|
|
const { emitExperimentalWarning } = require('internal/util');
|
|
|
|
emitExperimentalWarning('SQLite');
|
|
|
|
module.exports = internalBinding('sqlite');
|