nodejs/lib/_tls_common.js

11 lines
349 B
JavaScript
Raw Permalink Normal View History

'use strict';
const { SecureContext, createSecureContext, translatePeerCertificate } = require('internal/tls/common');
module.exports = {
SecureContext,
createSecureContext,
translatePeerCertificate,
2014-04-14 21:15:57 +04:00
};
process.emitWarning('The _tls_common module is deprecated. Use `node:tls` instead.',
'DeprecationWarning', 'DEP0192');