Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add changes to allow mode=OPM|ILE to be passed on to xmlservice from itoolkit #362

Open
sagartyagi121 opened this issue Nov 15, 2022 · 1 comment

Comments

@sagartyagi121
Copy link

this.xml = `<pgm name='${program}'`;

@sagartyagi121
Copy link
Author

Possible change

  constructor(program, options = {}) {
    this.xml = `<pgm name='${program}'`;
    if (options.lib) this.xml += ` lib='${options.lib}'`;
    if (options.func) this.xml += ` func='${options.func}'`;
    if (options.mode) this.xml += ` mode='${options.mode}'`;
    this.xml += ` error='${options.error || 'fast'}'>`;
  } 

sagartyagi121 added a commit to sagartyagi121/nodejs-itoolkit that referenced this issue Nov 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant