1.2.0 ā€¢ Published 1 year ago

@blazingworks/utils v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@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.