Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleModule - myexternfilemyexternalfile.js
linenumberstrue
function mainExternal() {
  let myOtherString = "I am imported.";
  return myOtherString;
}
exports.handleImport = mainExternal; //Assign a custom alias with the function name.

...