main.js 162 B

12345678
  1. "use strict";
  2. var XmlRpc = (function () {
  3. function XmlRpc(helper) {
  4. this.helper = helper;
  5. console.log(helper);
  6. }
  7. return XmlRpc;
  8. }());