othermodule.js 223 B

1234567891011
  1. // micro-module to test functionality
  2. (function() {
  3. 'use strict';
  4. var hello = function () {
  5. return "hello";
  6. }
  7. module.exports = hello;
  8. }()); // benalman.com/news/2010/11/immediately-invoked-function-expression