blob: 8316060dbb5542e0c2ce2f6af69e2947cfe9a3b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { styles } from "./styles.ts";
type Styles = { readonly [S in keyof typeof styles]: Color };
type Color = Styles & {
(str: string): string;
};
const styleStack: string[] = [];
export const color = function color(str: string): string {
styleStack.reverse();
while (styleStack.length) {
const style = styleStack.pop();
const code = styles[style];
str = `${code.open}${str.replace(code.closeRe, code.open)}${
code.close
}`.replace(/\r?\n/g, `${code.close}$&${code.open}`);
}
return str;
} as Color;
for (const style of Object.keys(styles)) {
Object.defineProperty(color, style, {
get() {
styleStack.push(style);
return color;
},
enumerable: true,
configurable: false
});
}
|