1.0.0 • Published 1 year ago

valida-cor v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Projeto Valida Cor

Descrição

Projeto para validar se o RGB de uma cor é válido.

Instalação

npm install valida-cor

Uso

const validaCor = require("valida-cor");

console.log(validarCorRgb("rgb(x)")); //false
console.log(validarCorRgb("rgb(255, 255, 255)")); //true

Contribuição

Cria sua branch

git checkout -b my-new-feature

Adiciona suas alterações

git add .

Commit suas alterações

git commit -m "Add some feature"

Push para a branch

git push origin my-new-feature