1.13.2 • Published 5 months ago

@onbeam/utils v1.13.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@onbeam/utils

A collection of useful utility functions and hooks which can be used fully standalone or along with the rest of the @onbeam packages. View all utils, hooks and variables here.

Table of Contents

Installation

Install the package using your preferred package manager:

npm install @onbeam/utils
# or
yarn add @onbeam/utils
# or
pnpm add @onbeam/utils

To keep all @onbeam packages updated, you can use the CLI:

npx @onbeam/cli update -d [directory]

Tree-Shaking Support

This package is fully tree-shakable, ensuring that only the utils, hooks and variables you import are included in your final bundle, optimizing your app's performance.

Examples

Example 1: Utility function usage

import { formatNumber } from "@onbeam/utils";

formatNumber(1234567); // "1.23M"
formatNumber(1234567, { maximumFractionDigits: 1 }); // "1.2M"

Example 2: Hook usage

import { useClipboard } from "@onbeam/utils";

const App = () => {
  const { onCopy, hasCopied } = useClipboard("Hello, World!");

  return <button onClick={onCopy}>{hasCopied ? "Copied!" : "Copy"}</button>;
};

For more examples, check out the docs of all individual utils, hooks and variables here.

All @onbeam packages


That's it! Happy coding! 🌈

1.13.2

5 months ago

1.13.1

5 months ago

1.13.0

6 months ago

1.12.1

6 months ago

1.12.0

6 months ago

1.11.7

6 months ago

1.11.6

7 months ago

1.11.5

7 months ago

1.11.4

7 months ago

1.11.3

7 months ago

1.11.2

7 months ago

1.11.1

7 months ago

1.10.0

7 months ago

1.9.4

8 months ago

1.9.3

8 months ago

1.9.2

8 months ago

1.9.1

8 months ago

1.9.0

8 months ago

1.8.2

9 months ago

1.8.1

9 months ago

1.8.0

9 months ago

1.7.0

9 months ago

1.6.1

9 months ago

1.6.0

9 months ago

1.5.0

10 months ago

1.4.1

10 months ago

1.4.0

11 months ago

1.3.0

11 months ago

1.2.3

11 months ago

1.2.2

11 months ago

1.2.1

11 months ago

1.2.0

11 months ago

1.1.23

12 months ago

1.1.22

12 months ago

1.1.21

12 months ago

1.1.20

12 months ago

1.1.19

12 months ago

1.1.18

12 months ago

1.1.17

12 months ago

1.1.16

12 months ago

1.1.15

12 months ago

1.1.14

12 months ago

1.1.13

12 months ago

1.1.12

12 months ago

1.1.11

12 months ago

1.1.10

12 months ago

1.1.9

12 months ago

1.1.8

12 months ago

1.1.7

12 months ago

1.1.6

12 months ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago