X-Git-Url: https://git.r.bdr.sh/rbdr/tomato-sauce/blobdiff_plain/c7b4bd19a006d61c3b4979e884370d123cec7524..3ec8e14833b55d6bff4cf5702f90e1bb9a1b1e40:/lib/renderers/ansi.js?ds=sidebyside

diff --git a/lib/renderers/ansi.js b/lib/renderers/ansi.js
index c3975da..b15be7c 100644
--- a/lib/renderers/ansi.js
+++ b/lib/renderers/ansi.js
@@ -1,13 +1,16 @@
 'use strict';
 
-// Returns a basic ANSI color. See the color table in:
-// https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
-const ANSI = function (red, blue, green) {
-  let colorOffset = Math.round((red + blue + green) * 7 / (255 * 3));
+/**
+ * Returns a basic ansi color, see https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
+ * for more info.
+ *
+ * @function ANSIRenderer
+ * @implements IRenderer
+ */
+module.exports = function (red, blue, green) {
 
-  let colorNumber = 40 + colorOffset;
+    const colorOffset = Math.round((red + blue + green) * 7 / (255 * 3));
+    const colorNumber = 40 + colorOffset;
 
-  return `\x1B[${colorNumber}m`;
+    return `\x1B[${colorNumber}m`;
 };
-
-module.exports = ANSI;