]> git.r.bdr.sh - rbdr/tomato-sauce/blobdiff - lib/renderers/ansi.js
Update Documentation
[rbdr/tomato-sauce] / lib / renderers / ansi.js
index c3975da9e7ef4ae0eba0470e7be6cd3c63b0203e..b3a461d5f449f37cba1c2bac66887a11c7913c19 100644 (file)
@@ -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`;
 };
-
-module.exports = ANSI;