source: trip-planner-front/node_modules/colors/lib/colors.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 5.7 KB
Line 
1/*
2
3The MIT License (MIT)
4
5Original Library
6 - Copyright (c) Marak Squires
7
8Additional functionality
9 - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
10
11Permission is hereby granted, free of charge, to any person obtaining a copy
12of this software and associated documentation files (the "Software"), to deal
13in the Software without restriction, including without limitation the rights
14to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15copies of the Software, and to permit persons to whom the Software is
16furnished to do so, subject to the following conditions:
17
18The above copyright notice and this permission notice shall be included in
19all copies or substantial portions of the Software.
20
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27THE SOFTWARE.
28
29*/
30
31var colors = {};
32module['exports'] = colors;
33
34colors.themes = {};
35
36var util = require('util');
37var ansiStyles = colors.styles = require('./styles');
38var defineProps = Object.defineProperties;
39var newLineRegex = new RegExp(/[\r\n]+/g);
40
41colors.supportsColor = require('./system/supports-colors').supportsColor;
42
43if (typeof colors.enabled === 'undefined') {
44 colors.enabled = colors.supportsColor() !== false;
45}
46
47colors.enable = function() {
48 colors.enabled = true;
49};
50
51colors.disable = function() {
52 colors.enabled = false;
53};
54
55colors.stripColors = colors.strip = function(str) {
56 return ('' + str).replace(/\x1B\[\d+m/g, '');
57};
58
59// eslint-disable-next-line no-unused-vars
60var stylize = colors.stylize = function stylize(str, style) {
61 if (!colors.enabled) {
62 return str+'';
63 }
64
65 var styleMap = ansiStyles[style];
66
67 // Stylize should work for non-ANSI styles, too
68 if(!styleMap && style in colors){
69 // Style maps like trap operate as functions on strings;
70 // they don't have properties like open or close.
71 return colors[style](str);
72 }
73
74 return styleMap.open + str + styleMap.close;
75};
76
77var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
78var escapeStringRegexp = function(str) {
79 if (typeof str !== 'string') {
80 throw new TypeError('Expected a string');
81 }
82 return str.replace(matchOperatorsRe, '\\$&');
83};
84
85function build(_styles) {
86 var builder = function builder() {
87 return applyStyle.apply(builder, arguments);
88 };
89 builder._styles = _styles;
90 // __proto__ is used because we must return a function, but there is
91 // no way to create a function with a different prototype.
92 builder.__proto__ = proto;
93 return builder;
94}
95
96var styles = (function() {
97 var ret = {};
98 ansiStyles.grey = ansiStyles.gray;
99 Object.keys(ansiStyles).forEach(function(key) {
100 ansiStyles[key].closeRe =
101 new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g');
102 ret[key] = {
103 get: function() {
104 return build(this._styles.concat(key));
105 },
106 };
107 });
108 return ret;
109})();
110
111var proto = defineProps(function colors() {}, styles);
112
113function applyStyle() {
114 var args = Array.prototype.slice.call(arguments);
115
116 var str = args.map(function(arg) {
117 // Use weak equality check so we can colorize null/undefined in safe mode
118 if (arg != null && arg.constructor === String) {
119 return arg;
120 } else {
121 return util.inspect(arg);
122 }
123 }).join(' ');
124
125 if (!colors.enabled || !str) {
126 return str;
127 }
128
129 var newLinesPresent = str.indexOf('\n') != -1;
130
131 var nestedStyles = this._styles;
132
133 var i = nestedStyles.length;
134 while (i--) {
135 var code = ansiStyles[nestedStyles[i]];
136 str = code.open + str.replace(code.closeRe, code.open) + code.close;
137 if (newLinesPresent) {
138 str = str.replace(newLineRegex, function(match) {
139 return code.close + match + code.open;
140 });
141 }
142 }
143
144 return str;
145}
146
147colors.setTheme = function(theme) {
148 if (typeof theme === 'string') {
149 console.log('colors.setTheme now only accepts an object, not a string. ' +
150 'If you are trying to set a theme from a file, it is now your (the ' +
151 'caller\'s) responsibility to require the file. The old syntax ' +
152 'looked like colors.setTheme(__dirname + ' +
153 '\'/../themes/generic-logging.js\'); The new syntax looks like '+
154 'colors.setTheme(require(__dirname + ' +
155 '\'/../themes/generic-logging.js\'));');
156 return;
157 }
158 for (var style in theme) {
159 (function(style) {
160 colors[style] = function(str) {
161 if (typeof theme[style] === 'object') {
162 var out = str;
163 for (var i in theme[style]) {
164 out = colors[theme[style][i]](out);
165 }
166 return out;
167 }
168 return colors[theme[style]](str);
169 };
170 })(style);
171 }
172};
173
174function init() {
175 var ret = {};
176 Object.keys(styles).forEach(function(name) {
177 ret[name] = {
178 get: function() {
179 return build([name]);
180 },
181 };
182 });
183 return ret;
184}
185
186var sequencer = function sequencer(map, str) {
187 var exploded = str.split('');
188 exploded = exploded.map(map);
189 return exploded.join('');
190};
191
192// custom formatter methods
193colors.trap = require('./custom/trap');
194colors.zalgo = require('./custom/zalgo');
195
196// maps
197colors.maps = {};
198colors.maps.america = require('./maps/america')(colors);
199colors.maps.zebra = require('./maps/zebra')(colors);
200colors.maps.rainbow = require('./maps/rainbow')(colors);
201colors.maps.random = require('./maps/random')(colors);
202
203for (var map in colors.maps) {
204 (function(map) {
205 colors[map] = function(str) {
206 return sequencer(colors.maps[map], str);
207 };
208 })(map);
209}
210
211defineProps(colors, init());
Note: See TracBrowser for help on using the repository browser.