1
0
Fork 0
freesewing/sites/dev/jargon.mjs

7 lines
299 B
JavaScript
Raw Normal View History

const jargon = {
2022-07-18 18:50:34 +02:00
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