6 lines
299 B
JavaScript
6 lines
299 B
JavaScript
const jargon = {
|
|
cjs: "<b>CJS</b> stands for CommonJS, it is the JavaScript module format popularized by NodeJS, but now increasingly phased out in favor of <b>ESM</b>",
|
|
esm: "<b>ESM</b> stands for EcmaScript Module, it is the standardized module syntax in JavaScript",
|
|
}
|
|
|
|
export default jargon
|