(identifier)
| 899 | |
| 900 | // private methods |
| 901 | function wrapSingleQuote(identifier) { |
| 902 | if (identifier) { |
| 903 | return `'${ identifier }'`; |
| 904 | //return Utils.addTicks("'"); // It removes quote from center too. |
| 905 | } |
| 906 | return ''; |
| 907 | } |
| 908 | |
| 909 | module.exports = Db2QueryGenerator; |
no outgoing calls
no test coverage detected