Skip to content

Commit

Permalink
v1.0.0 🤘
Browse files Browse the repository at this point in the history
  • Loading branch information
jobsamuel committed Oct 2, 2015
1 parent b2101d5 commit 08b2250
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var pkg = require('./package.json');
var updateNotifier = require('update-notifier');
var program = require('commander');
var colors = require('colors');
var path = require('path');
var bandera = ' ' +
colors.yellow.bold('• ') +
colors.blue.bold('• ') +
Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function formato (nombre) {
return nombre.toLowerCase().replace(/á|é|í|ó|ú/g, re);
}

// Retorna un Municipio o parroquia aleatoria.
function aleatorio (tipo) {

var e = vzla[Math.floor(Math.random() * (23 - 1) + 1)];
Expand All @@ -56,6 +57,7 @@ function aleatorio (tipo) {
}
}

// Retorna información sobre un Estado.
Venezuela.prototype.estado = function (nombre, opciones) {
if (!nombre) {
return this.capital;
Expand Down Expand Up @@ -90,6 +92,7 @@ Venezuela.prototype.estado = function (nombre, opciones) {
return resultado || nombre + ' no es un Estado. Tal vez sea una Ciudad.';
}

// Retorna información sobre un Municipio.
Venezuela.prototype.municipio = function (nombre, opciones) {
if (!nombre) {
return aleatorio('municipio');
Expand Down Expand Up @@ -118,6 +121,7 @@ Venezuela.prototype.municipio = function (nombre, opciones) {
return resultado || nombre + ' no es un Municipio. Tal vez sea una Parroquia.';
}

// Retorna información sobre una Parroquia.
Venezuela.prototype.parroquia = function (nombre, opciones) {
if (!nombre) {
return aleatorio('parroquia');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "venezuela",
"version": "0.9.9",
"version": "1.0.0",
"description": "Analiza, verifica, utiliza y muestra la organización territorial de Venezuela con Javascript.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 08b2250

Please sign in to comment.