1
0
Fork 0
freesewing/sites/dev/jargon.mjs
2022-07-18 18:50:34 +02:00

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