MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / interpretNumericEntities

Function interpretNumericEntities

out/cli.cjs:28419–28423  ·  view source on GitHub ↗
(str2)

Source from the content-addressed store, hash-verified

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(",");

Callers 1

parseValuesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…