MCPcopy Create free account
hub / github.com/TruthHun/BookStack / stylizeWithColor

Function stylizeWithColor

static/word2md/mammoth.browser.js:29670–29679  ·  view source on GitHub ↗
(str, styleType)

Source from the content-addressed store, hash-verified

29668
29669
29670function stylizeWithColor(str, styleType) {
29671 var style = inspect.styles[styleType];
29672
29673 if (style) {
29674 return '\u001b[' + inspect.colors[style][0] + 'm' + str +
29675 '\u001b[' + inspect.colors[style][1] + 'm';
29676 } else {
29677 return str;
29678 }
29679}
29680
29681
29682function stylizeNoColor(str, styleType) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected