Skip to content

Commit

Permalink
Fix line endings CRLF -> LF
Browse files Browse the repository at this point in the history
- itoolkit.js
- ixml.js
  • Loading branch information
abmusse committed Mar 7, 2019
1 parent 9786e14 commit 0541748
Show file tree
Hide file tree
Showing 2 changed files with 513 additions and 513 deletions.
144 changes: 72 additions & 72 deletions lib/itoolkit.js
Original file line number Diff line number Diff line change
@@ -1,72 +1,72 @@
// Copyright (c) International Business Machines Corp. 2019
// All Rights Reserved

// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
// associated documentation files (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge, publish, distribute,
// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:

// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.

// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

/**
* main entry point for itoolkit package
*/

const { ProgramCall } = require('./ProgramCall');
const { SqlCall } = require('./SqlCall');
const { Connection } = require('./Connection');
const { Toolkit } = require('./Toolkit');
const { xmlToJson } = require('./utils');

const {
generateCmdXml,
generateQshXml,
generateShXml,
} = require('./commands');

const {
iPgm,
iSql,
iConn,
iDataQueue,
iNetwork,
iObj,
iProd,
iUserSpace,
iWork,
iCmd,
iQsh,
iSh,
} = require('./Deprecated');

module.exports = {
ProgramCall,
SqlCall,
Connection,
Toolkit,
xmlToJson,
generateCmdXml,
generateQshXml,
generateShXml,
// deprecated exports below, replaced by functionality above
iCmd,
iConn,
iDataQueue,
iNetwork,
iObj,
iPgm,
iProd,
iQsh,
iSh,
iSql,
iUserSpace,
iWork,
};
// Copyright (c) International Business Machines Corp. 2019
// All Rights Reserved

// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
// associated documentation files (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge, publish, distribute,
// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:

// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.

// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

/**
* main entry point for itoolkit package
*/

const { ProgramCall } = require('./ProgramCall');
const { SqlCall } = require('./SqlCall');
const { Connection } = require('./Connection');
const { Toolkit } = require('./Toolkit');
const { xmlToJson } = require('./utils');

const {
generateCmdXml,
generateQshXml,
generateShXml,
} = require('./commands');

const {
iPgm,
iSql,
iConn,
iDataQueue,
iNetwork,
iObj,
iProd,
iUserSpace,
iWork,
iCmd,
iQsh,
iSh,
} = require('./Deprecated');

module.exports = {
ProgramCall,
SqlCall,
Connection,
Toolkit,
xmlToJson,
generateCmdXml,
generateQshXml,
generateShXml,
// deprecated exports below, replaced by functionality above
iCmd,
iConn,
iDataQueue,
iNetwork,
iObj,
iPgm,
iProd,
iQsh,
iSh,
iSql,
iUserSpace,
iWork,
};
Loading

0 comments on commit 0541748

Please sign in to comment.