@palett/enum-font-effects
Advanced tools
Comparing version 0.7.9 to 0.7.10
@@ -5,10 +5,28 @@ 'use strict'; | ||
const BOLD = 'bold'; | ||
const ITALIC = 'italic'; | ||
const UNDERLINE = 'underline'; | ||
const INVERSE = 'inverse'; | ||
const NORMAL = 'normal'; // 0 | ||
const BOLD = 'bold'; // 1 - 21 | ||
const DIM = 'dim'; // 2 - 22 | ||
const ITALIC = 'italic'; // 3 - 23 | ||
const UNDERLINE = 'underline'; // 4 - 24 | ||
const BLINK = 'blink'; // 5 - 25 | ||
const INVERSE = 'inverse'; // 7 - 27 | ||
const HIDE = 'hide'; // 8 - 28 | ||
const STRIKE = 'strike'; // 9 - 29 | ||
exports.BLINK = BLINK; | ||
exports.BOLD = BOLD; | ||
exports.DIM = DIM; | ||
exports.HIDE = HIDE; | ||
exports.INVERSE = INVERSE; | ||
exports.ITALIC = ITALIC; | ||
exports.NORMAL = NORMAL; | ||
exports.STRIKE = STRIKE; | ||
exports.UNDERLINE = UNDERLINE; |
@@ -1,6 +0,19 @@ | ||
const BOLD = 'bold'; | ||
const ITALIC = 'italic'; | ||
const UNDERLINE = 'underline'; | ||
const INVERSE = 'inverse'; | ||
const NORMAL = 'normal'; // 0 | ||
export { BOLD, INVERSE, ITALIC, UNDERLINE }; | ||
const BOLD = 'bold'; // 1 - 21 | ||
const DIM = 'dim'; // 2 - 22 | ||
const ITALIC = 'italic'; // 3 - 23 | ||
const UNDERLINE = 'underline'; // 4 - 24 | ||
const BLINK = 'blink'; // 5 - 25 | ||
const INVERSE = 'inverse'; // 7 - 27 | ||
const HIDE = 'hide'; // 8 - 28 | ||
const STRIKE = 'strike'; // 9 - 29 | ||
export { BLINK, BOLD, DIM, HIDE, INVERSE, ITALIC, NORMAL, STRIKE, UNDERLINE }; |
{ | ||
"name": "@palett/enum-font-effects", | ||
"version": "0.7.9", | ||
"version": "0.7.10", | ||
"description": "A colorant to string", | ||
@@ -35,3 +35,3 @@ "main": "dist/index.cjs.js", | ||
"homepage": "https://github.com/hoyeungw/palett/enum-font-effects#readme", | ||
"gitHead": "122d02cbfff85a82d703afb1ee1a30b38789cd02" | ||
"gitHead": "ddfad2a10d138a1f32f77faa7916bbc60c7e89cc" | ||
} |
4503
30