๐ฆฎ Various development utilities by BlazingWorks
npm install @blazingworks/utils
yarn add @blazingworks/utils
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 ๐
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 ๐
- For general issues/questions, open an issue
- For security issues, please email [email protected]
- For important questions, please email [email protected]
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.