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

b2utils

v0.3.3

Published

TS utils functions by `<a href="https://b2bit.company">`B2bit Company `</a>`

Downloads

1,301

Readme

b2utils

TS utils functions by <a href="https://b2bit.company">B2bit Company </a>

Installing

Using npm:

$ npm i b2utils

Using yarn:

$ yarn add b2utils

Usage

CEP

import { cep } from 'b2utils';

cep.mask('12345678'); // 12345-678

cep.validate('12345678'); // true
cep.validate('12.345-678'); // true
cep.validate('123456'); // false

CNPJ

import { cnpj } from 'b2utils';

cnpj.mask('99497228000104'); // 99.497.228/0001-04

cnpj.validate('99497228000104'); // true
cnpj.validate('99.497.228/0001-04'); // true
cnpj.validate('994972280001'); // false
cnpj.validate('11.111.111/1111-11'); // false

CPF

import { cpf } from 'b2utils';

cpf.mask('14187511032'); // 141.875.110-32

cpf.validate('14187511032'); // true
cpf.validate('141.875.110-32'); // true
cpf.validate('1418751103'); // false
cpf.validate('141.875.110-33'); // false

CURRENCY

import { currency } from 'b2utils';

currency.centsToBrl(100); // R$ 1,00

Phone

import { phone } from 'b2utils';

phone.mask('5584988776655'); // +55 (84) 98877-6655
phone.mask('84988776655'); // (84) 98877-6655
phone.mask('988776655'); // 98877-6655

phone.validate('5584988776655'); // true
phone.validate('84988776655'); // true
phone.validate('988776655'); // true
phone.validate('98877665'); // false

phone.fromObject({
  countryCode: '55',
  areaCode: '84',
  number: '988776655',
}); // +55 (84) 98877-6655
phone.fromObject({
  areaCode: '84',
  number: '988776655',
}); // (84) 98877-6655
phone.fromObject({
  number: '988776655',
}); // 98877-6655

phone.toObject('+55 (84) 98877-6655'); // { countryCode: '55', areaCode: '84', number: '988776655' }
phone.toObject('(84) 98877-6655'); // { areaCode: '84', number: '988776655' }
phone.toObject('98877-6655'); // { number: '988776655' }

Color

import { color } from 'b2utils';

color.addOpacityOnHexColor('#000000', 0.5); // #00000080

YouTube

import { youtube } from 'b2utils';

youtube.getIdFromUrl('https://www.youtube.com/watch?v=05h6KvLvC8A'); // 105h6KvLvC8A

Transform object in array

import { transformObjectInArray } from 'b2utils';

const obj = {
  cpf: 'invalid cpf',
  cnpj: 'invalid cnpj',
};

transformObjectInArray(obj); // ['invalid cpf', 'invalid cnpj']