MoM Test Lib

Just a test

As of 2019-04-30. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/382412/693948/MoM%20Test%20Lib.js

var MyTest = {version: 1};

(function() {
  if (!window.MyTest) {
    window.MyTest = MyTest;
    console.log('window.MyTest initialized to version ' + MyTest.version);
  } else if (window.MyTest.version < MyTest.version) {
    window.MyTest = MyTest;
    console.log('window.MyTest overwritten to ' + MyTest.version);
  }
})();