/utils

🦮 Various development utilities by BlazingWorks

Primary LanguageTypeScriptMIT LicenseMIT

@blazingworks/utils

Lines of code npm Downloads GitHub issues GitHub pull requests GitHub GitHub Repo stars npm Version GitHub contributors

🦮 Various development utilities by BlazingWorks

Tech Stack

Installation

NPM

npm install @blazingworks/utils

Yarn

yarn add @blazingworks/utils

Usage

TypeScript

import { prettyNumber } from "@blazingworks/utils/numbers";
import { surround } from "@blazingworks/utils/text";

prettyNumber(74854); // 74,854
surround("Hello World", ["👋 ", " 🌍"]); // 👋 Hello World 🌍

// or

import { numbers, text } from "@blazingworks/utils";

numbers.prettyNumber(74854); // 74,854
text.surround("Hello World", ["👋 ", " 🌍"]); // 👋 Hello World 🌍

JavaScript

const { prettyNumber } = require("@blazingworks/utils/numbers");
const { surround } = require("@blazingworks/utils/text");

prettyNumber(74854); // 74,854
surround("Hello World", ["👋 ", " 🌍"]); // 👋 Hello World 🌍

// or

const { numbers, text } = require("@blazingworks/utils");

numbers.prettyNumber(74854); // 74,854
text.surround("Hello World", ["👋 ", " 🌍"]); // 👋 Hello World 🌍

How to report issues/questions

License

As this is an open-source project, support is limited. Please use GitHub Issues for community support or contact opensource@blazing.works for very important matters.

ℹ️ All code in this repository is licensed under the MIT License.