mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
const tls = require('tls');
|
|
|
|
// Used by val-loader to export the NodeJS trust store during compile time
|
|
module.exports = () => {
|
|
return {
|
|
code: 'module.exports = `' + tls.rootCertificates.join('\n') + '`',
|
|
};
|
|
};
|