Comparing version 1.2.1 to 1.2.2
41
app.js
@@ -11,3 +11,3 @@ // Import. | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -21,3 +21,3 @@ static black(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -31,3 +31,3 @@ static white(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -41,3 +41,3 @@ static blue(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -51,3 +51,3 @@ static green(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -61,3 +61,3 @@ static yellow(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -71,3 +71,3 @@ static red(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -81,3 +81,3 @@ static magenta(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -91,3 +91,3 @@ static cyan(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -101,3 +101,3 @@ static blackBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -111,3 +111,3 @@ static whiteBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -121,3 +121,3 @@ static blueBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -131,3 +131,3 @@ static greenBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -141,3 +141,3 @@ static yellowBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -151,3 +151,3 @@ static redBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -161,3 +161,3 @@ static magentaBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -171,3 +171,3 @@ static cyanBackground(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -181,3 +181,3 @@ static brightStyle(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -191,3 +191,3 @@ static dimStyle(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -201,3 +201,3 @@ static underscoreStyle(text = '') { | ||
* @param {string} text - Text. | ||
* @return {string} | ||
* @returns {string} | ||
*/ | ||
@@ -213,2 +213,3 @@ static blinkStyle(text = '') { | ||
* @param {string} color - Color. | ||
* @returns {string} | ||
*/ | ||
@@ -215,0 +216,0 @@ function setColor(text = '', color = colors.reset) { |
{ | ||
"name": "ccolor", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Console color", | ||
@@ -5,0 +5,0 @@ "main": "app.js", |
# CColor | ||
[![NPM Downloads][downloads-image]][downloads-url] | ||
## Description | ||
@@ -64,1 +66,4 @@ | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
[downloads-image]: https://img.shields.io/npm/dm/ccolor.svg | ||
[downloads-url]: https://npmjs.org/package/ccolor |
9691
245
69