PR-URL: https://github.com/nodejs/node/pull/58442 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
11 lines
349 B
JavaScript
11 lines
349 B
JavaScript
'use strict';
|
|
|
|
const { SecureContext, createSecureContext, translatePeerCertificate } = require('internal/tls/common');
|
|
module.exports = {
|
|
SecureContext,
|
|
createSecureContext,
|
|
translatePeerCertificate,
|
|
};
|
|
process.emitWarning('The _tls_common module is deprecated. Use `node:tls` instead.',
|
|
'DeprecationWarning', 'DEP0192');
|