(str)
| 104 | }; |
| 105 | |
| 106 | const _handleValue = function(str) { |
| 107 | if (str[0] === str[str.length - 1] && (str[0] === '"' || str[0] === "'")) { |
| 108 | str = str.substr(1, str.length - 2); |
| 109 | } |
| 110 | return handleValue( |
| 111 | str |
| 112 | .replace(new RegExp(aUniqueVerticalStringNotFoundInData, 'g'), segmentSeparateChar) |
| 113 | .replace(new RegExp(aUniqueCommaStringNotFoundInData, 'g'), argsSeparateChar) |
| 114 | ); |
| 115 | }; |
| 116 | |
| 117 | class PowerString { |
| 118 | constructor(str) { |
no test coverage detected