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

stack-functions

v2.0.1

Published

Function stack for development support

Downloads

4

Readme

Stack Functions

GitHub License npm version Email LinkedIn

Uma coleção de funções utilitárias para formatar strings e valores monetários em JavaScript.

Instalação

Para utilizar essas funções em seu projeto, você pode instalá-las via npm:

npm install stack-functions

Funções Disponíveis

sfCcyBRLFormat(value)

Formata um valor numérico como uma string de moeda no formato brasileiro (BRL - Real). A função arredonda o valor para duas casas decimais e o formata como moeda no padrão "pt-BR".

const { sfCcyBRLFormat } = require('stack-functions');

console.log(sfCcyBRLFormat(1234.56)); // R$ 1.234,56

sfToLowerCase(value)

Converte uma string para minúsculas.

const { sfToLowerCase } = require('stack-functions');

console.log(sfToLowerCase('Hello World')); // hello world

sfToUpperCase(value)

Converte uma string para maiúsculas.

const { sfToUpperCase } = require('stack-functions');

console.log(sfToUpperCase('Hello World')); // HELLO WORLD

sfCcyFormat(value)

Formata um valor numérico com duas casas decimais fixas.

const { sfCcyFormat } = require('stack-functions');

console.log(sfCcyFormat(1234.5678)); // 1234.57

Exemplos de Uso:

Express.js

const express = require('express');
const { sfCcyBRLFormat } = require('stack-functions');

const app = express();

app.get('/', (req, res) => {
  const value = 1234.56;
  const formattedValue = sfCcyBRLFormat(value);

  res.send(`Formatted value: ${formattedValue}`);
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Express.js Versão Minificada:

const express = require('express');
const { sfCcyBRLFormat } = require('stack-functions/dist/sfCcyBRLFormat.min');

const app = express();

app.get('/', (req, res) => {
  const value = 1234.56;
  const formattedValue = sfCcyBRLFormat(value);

  res.send(`Formatted value: ${formattedValue}`);
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

React.js

import React from 'react';
import { sfToLowerCase, sfToUpperCase } from 'stack-functions';

const MyComponent = () => {
  const originalString = 'Hello World';
  const lowerCaseString = sfToLowerCase(originalString);
  const upperCaseString = sfToUpperCase(originalString);

  return (
    <div>
      <p>Original: {originalString}</p>
      <p>Lowercase: {lowerCaseString}</p>
      <p>Uppercase: {upperCaseString}</p>
    </div>
  );
};

export default MyComponent;

React.js Versão Minificada:

import React from 'react';
import { sfToLowerCase } from 'stack-functions/dist/sfToLowerCase.min';
import { sfToUpperCase } from 'stack-functions/dist/sfToUpperCase.min';

const MyComponent = () => {
  const originalString = 'Hello World';
  const lowerCaseString = sfToLowerCase(originalString);
  const upperCaseString = sfToUpperCase(originalString);

  return (
    <div>
      <p>Original: {originalString}</p>
      <p>Lowercase: {lowerCaseString}</p>
      <p>Uppercase: {upperCaseString}</p>
    </div>
  );
};

export default MyComponent;

Uso das Versões Minificadas

Ao utilizar nossas funções, você tem a opção de escolher entre as versões originais ou as versões minificadas. As versões minificadas têm nomes que terminam com .min.js e são otimizadas para reduzir o tamanho do pacote e melhorar o desempenho.

Contribuição

Sinta-se à vontade para contribuir com novas funcionalidades, correções de bugs ou melhorias! Basta seguir estas etapas:

  1. Faça um fork deste repositório.
  2. Crie um branch para a sua feature (git checkout -b feature/nova-feature).
  3. Faça o commit das suas mudanças (git commit -m 'Adiciona nova feature').
  4. Faça o push para o branch (git push origin feature/nova-feature).
  5. Abra um Pull Request.

Licença

Este projeto está licenciado sob a Licença Creative Commons Atribuição 4.0 Internacional.

Você é livre para:

  • Compartilhar — copiar e redistribuir o material em qualquer suporte ou formato.
  • Adaptar — remixar, transformar, e criar a partir do material para qualquer fim, mesmo que comercial.

Sob as seguintes condições:

  • Atribuição — Você deve dar o crédito apropriado, prover um link para a licença e indicar se mudanças foram feitas. Você pode fazê-lo de qualquer maneira razoável, mas não de maneira que sugira que o licenciador endossa você ou o seu uso.