Versions Compared

Key

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

...

An Error will be thrown if there are any problems loading the module, such as a file not found or syntax error.

ExampleExamples

Code Block
languagejavascript
titleModule 1 - increment.js
function increment() {
  // x and y must be declared in the parent scope where pjs.import() is used
  x += 1;
  y += 2;
}
exports.increment = increment;

...