@blazingworks/utils
v1.2.0
Published
Various development utilities by BlazingWorks
Downloads
13
Readme
@blazingworks/utils
🦮 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
- For general issues/questions, open an issue
- For security issues, please email [email protected]
- For important questions, please email [email protected]
License
As this is an open-source project, support is limited. Please use GitHub Issues for community support or contact [email protected] for very important matters.
ℹ️ All code in this repository is licensed under the MIT License.