personn-colors 0.0.1-security → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of personn-colors might be problematic. Click here for more details.
- package/LICENSE +25 -0
- package/index.d.ts +136 -0
- package/lib/colors.js +1 -0
- package/lib/custom/trap.js +46 -0
- package/lib/custom/zalgo.js +110 -0
- package/lib/extendStringPrototype.js +110 -0
- package/lib/index.js +13 -0
- package/lib/maps/america.js +10 -0
- package/lib/maps/rainbow.js +12 -0
- package/lib/maps/random.js +11 -0
- package/lib/maps/zebra.js +5 -0
- package/lib/styles.js +95 -0
- package/lib/system/has-flag.js +35 -0
- package/lib/system/supports-colors.js +151 -0
- package/package.json +13 -3
- package/safe.d.ts +48 -0
- package/safe.js +10 -0
- package/themes/generic-logging.js +12 -0
- package/README.md +0 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Original Library
|
|
4
|
+
- Copyright (c) Marak Squires
|
|
5
|
+
|
|
6
|
+
Additional Functionality
|
|
7
|
+
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in
|
|
17
|
+
all copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
25
|
+
THE SOFTWARE.
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
// Type definitions for Colors.js 1.2
|
|
2
|
+
// Project: https://github.com/Marak/colors.js
|
|
3
|
+
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>, Staffan Eketorp <https://github.com/staeke>
|
|
4
|
+
// Definitions: https://github.com/Marak/colors.js
|
|
5
|
+
|
|
6
|
+
export interface Color {
|
|
7
|
+
(text: string): string;
|
|
8
|
+
|
|
9
|
+
strip: Color;
|
|
10
|
+
stripColors: Color;
|
|
11
|
+
|
|
12
|
+
black: Color;
|
|
13
|
+
red: Color;
|
|
14
|
+
green: Color;
|
|
15
|
+
yellow: Color;
|
|
16
|
+
blue: Color;
|
|
17
|
+
magenta: Color;
|
|
18
|
+
cyan: Color;
|
|
19
|
+
white: Color;
|
|
20
|
+
gray: Color;
|
|
21
|
+
grey: Color;
|
|
22
|
+
|
|
23
|
+
bgBlack: Color;
|
|
24
|
+
bgRed: Color;
|
|
25
|
+
bgGreen: Color;
|
|
26
|
+
bgYellow: Color;
|
|
27
|
+
bgBlue: Color;
|
|
28
|
+
bgMagenta: Color;
|
|
29
|
+
bgCyan: Color;
|
|
30
|
+
bgWhite: Color;
|
|
31
|
+
|
|
32
|
+
reset: Color;
|
|
33
|
+
bold: Color;
|
|
34
|
+
dim: Color;
|
|
35
|
+
italic: Color;
|
|
36
|
+
underline: Color;
|
|
37
|
+
inverse: Color;
|
|
38
|
+
hidden: Color;
|
|
39
|
+
strikethrough: Color;
|
|
40
|
+
|
|
41
|
+
rainbow: Color;
|
|
42
|
+
zebra: Color;
|
|
43
|
+
america: Color;
|
|
44
|
+
trap: Color;
|
|
45
|
+
random: Color;
|
|
46
|
+
zalgo: Color;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function enable(): void;
|
|
50
|
+
export function disable(): void;
|
|
51
|
+
export function setTheme(theme: any): void;
|
|
52
|
+
|
|
53
|
+
export let enabled: boolean;
|
|
54
|
+
|
|
55
|
+
export const strip: Color;
|
|
56
|
+
export const stripColors: Color;
|
|
57
|
+
|
|
58
|
+
export const black: Color;
|
|
59
|
+
export const red: Color;
|
|
60
|
+
export const green: Color;
|
|
61
|
+
export const yellow: Color;
|
|
62
|
+
export const blue: Color;
|
|
63
|
+
export const magenta: Color;
|
|
64
|
+
export const cyan: Color;
|
|
65
|
+
export const white: Color;
|
|
66
|
+
export const gray: Color;
|
|
67
|
+
export const grey: Color;
|
|
68
|
+
|
|
69
|
+
export const bgBlack: Color;
|
|
70
|
+
export const bgRed: Color;
|
|
71
|
+
export const bgGreen: Color;
|
|
72
|
+
export const bgYellow: Color;
|
|
73
|
+
export const bgBlue: Color;
|
|
74
|
+
export const bgMagenta: Color;
|
|
75
|
+
export const bgCyan: Color;
|
|
76
|
+
export const bgWhite: Color;
|
|
77
|
+
|
|
78
|
+
export const reset: Color;
|
|
79
|
+
export const bold: Color;
|
|
80
|
+
export const dim: Color;
|
|
81
|
+
export const italic: Color;
|
|
82
|
+
export const underline: Color;
|
|
83
|
+
export const inverse: Color;
|
|
84
|
+
export const hidden: Color;
|
|
85
|
+
export const strikethrough: Color;
|
|
86
|
+
|
|
87
|
+
export const rainbow: Color;
|
|
88
|
+
export const zebra: Color;
|
|
89
|
+
export const america: Color;
|
|
90
|
+
export const trap: Color;
|
|
91
|
+
export const random: Color;
|
|
92
|
+
export const zalgo: Color;
|
|
93
|
+
|
|
94
|
+
declare global {
|
|
95
|
+
interface String {
|
|
96
|
+
strip: string;
|
|
97
|
+
stripColors: string;
|
|
98
|
+
|
|
99
|
+
black: string;
|
|
100
|
+
red: string;
|
|
101
|
+
green: string;
|
|
102
|
+
yellow: string;
|
|
103
|
+
blue: string;
|
|
104
|
+
magenta: string;
|
|
105
|
+
cyan: string;
|
|
106
|
+
white: string;
|
|
107
|
+
gray: string;
|
|
108
|
+
grey: string;
|
|
109
|
+
|
|
110
|
+
bgBlack: string;
|
|
111
|
+
bgRed: string;
|
|
112
|
+
bgGreen: string;
|
|
113
|
+
bgYellow: string;
|
|
114
|
+
bgBlue: string;
|
|
115
|
+
bgMagenta: string;
|
|
116
|
+
bgCyan: string;
|
|
117
|
+
bgWhite: string;
|
|
118
|
+
|
|
119
|
+
reset: string;
|
|
120
|
+
// @ts-ignore
|
|
121
|
+
bold: string;
|
|
122
|
+
dim: string;
|
|
123
|
+
italic: string;
|
|
124
|
+
underline: string;
|
|
125
|
+
inverse: string;
|
|
126
|
+
hidden: string;
|
|
127
|
+
strikethrough: string;
|
|
128
|
+
|
|
129
|
+
rainbow: string;
|
|
130
|
+
zebra: string;
|
|
131
|
+
america: string;
|
|
132
|
+
trap: string;
|
|
133
|
+
random: string;
|
|
134
|
+
zalgo: string;
|
|
135
|
+
}
|
|
136
|
+
}
|