(str2)
| 28417 | strictNullHandling: false |
| 28418 | }; |
| 28419 | var interpretNumericEntities = function(str2) { |
| 28420 | return str2.replace(/&#(\d+);/g, function($0, numberStr) { |
| 28421 | return String.fromCharCode(parseInt(numberStr, 10)); |
| 28422 | }); |
| 28423 | }; |
| 28424 | var parseArrayValue = function(val, options) { |
| 28425 | if (val && typeof val === "string" && options.comma && val.indexOf(",") > -1) { |
| 28426 | return val.split(","); |
no outgoing calls
no test coverage detected
searching dependent graphs…