wishthis/node_modules/inquirer/lib/objects/separator.js

38 lines
784 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
'use strict';
2022-06-08 10:36:39 +00:00
const chalk = require('chalk');
const figures = require('figures');
2022-01-21 08:28:41 +00:00
/**
* Separator object
* Used to space/separate choices group
* @constructor
* @param {String} line Separation line content (facultative)
*/
class Separator {
constructor(line) {
this.type = 'separator';
this.line = chalk.dim(line || new Array(15).join(figures.line));
}
/**
* Stringify separator
* @return {String} the separator display string
*/
toString() {
return this.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
*/
2022-06-08 10:36:39 +00:00
Separator.exclude = function (obj) {
2022-01-21 08:28:41 +00:00
return obj.type !== 'separator';
};
module.exports = Separator;