npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

conversor-fantastic

v1.0.5

Published

conversor mejorado que retorna un número y un string con el resultado

Downloads

7

Readme

Conversor-multiple.js

Instalar con npm

En la barra de comando escribir:

npm i conversor-fantastic

Inicializar la variable

Para inicializar el paquete se guarda en una variable de la siguiente forma:

let conversor = require("conversor-fantastic");

Con lo cuál uno obtiene el objeto.

Conversión de Longitudes

Para convetir de una longitud a otra se debe acceder a allLongitud, el método que nos permitira convertir.

let conversor = require("conversor-fantastic");

conversor.allLongitud(Argumrnto1, Argumento2, Argumento3, ArgumrntoOpcional); //Usa 4 argumentos de los cuales 3 son obligatorios y uno opcional.

Taxonomía de los argumrntos

Argumento1: Se le agrega la medida que se quiere convertir, por ejemplo si se quiere convertir de metros a centimetros se pone como el primer argumento metro, que es la medida que se quiere convertir. Argumento2: Se le agrega el número que se quiere convertir, por ejemplo si se quiere convertir 100 metros a centimetros, aqui se coloca 100. Argumento3: Se le agrega la medida que se que se convertira, por ejemplo si se quiere convertir de metros a centimetros se pone como el tercer argumento centimetro, que es la medida a la que se quiere convertir. ArgumentoOpcional: Se utiliza si se quieren convertir medidas a exponenciales, por ejemplo si se quiere convertir 100 metros^2 a centimetros, se pone 2 que es la exponencial.

Si quieres convertir 100 metros a centimetros se debe poner:

let conversor = require("conversor-fantastic");

conversor.allLongitud("m", 100, "cm"); //resultado: [10000,'El resultado de la conversión de la medida de m a la medida cm es: 10000cm']

Una cosa a dejar en claro es que los argumrntos 1 y 3 ya estan definidos, y los valores que pueden tomar son los siguientes:

'mm': Que significa milimetros. 'cm': Que significa centimetros. 'dm': Que significa decimetros. 'm': Que significa metros. 'dam': Que significa decametros. 'hm': Que significa hectometros. 'km': Que significa kilometros.

Resultado

El resultado de las operación siempre sera un arreglo que el primer valor es el resultado en número y el segundo es una cadena de texto con el resultado. Se puede verificar.

let conversor = require("conversor-fantastic");

let converitir = conversor.allLongitud("m", 100, "cm");

console.log(convertir[0]); // 10000 (como número)
console.log(convertir[1]); // El resultado de la conversión de la medida de m a la medida cm es: 10000cm (como string)