summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js')
-rw-r--r--tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js b/tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js
new file mode 100644
index 0000000000..abfaef17f2
--- /dev/null
+++ b/tools/node_modules/eslint/node_modules/inquirer/lib/objects/separator.js
@@ -0,0 +1,34 @@
+'use strict';
+var chalk = require('chalk');
+var figures = require('figures');
+
+/**
+ * Separator object
+ * Used to space/separate choices group
+ * @constructor
+ * @param {String} line Separation line content (facultative)
+ */
+
+var Separator = module.exports = function (line) {
+ this.type = 'separator';
+ this.line = chalk.dim(line || new Array(15).join(figures.line));
+};
+
+/**
+ * Helper function returning false if object is a separator
+ * @param {Object} obj object to test against
+ * @return {Boolean} `false` if object is a separator
+ */
+
+Separator.exclude = function (obj) {
+ return obj.type !== 'separator';
+};
+
+/**
+ * Stringify separator
+ * @return {String} the separator display string
+ */
+
+Separator.prototype.toString = function () {
+ return this.line;
+};