PR-URL: https://github.com/nodejs/node/pull/54563 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
8 lines
110 B
JavaScript
8 lines
110 B
JavaScript
const output = {
|
|
a: 'cjs a',
|
|
b: 'cjs b'
|
|
};
|
|
|
|
export default output;
|
|
|
|
export { output as 'module.exports' }
|