UNPKG
@azu/style-format
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
Library to easily style texts with string formatting
github.com/azu/style-format
azu/style-format
@azu/style-format
/
index.js
9 lines
(6 loc)
•
171 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
format =
require
(
"@azu/format-text"
);
var
ansi =
require
(
"./ansi-codes"
);
module
.
exports
= styleFormat;
function
styleFormat
(
text
) {
return
format
(text, ansi); }