@accitdg/web-helpers 0.0.10 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ A collection of utility functions for web development, including currency conver
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install web-helpers
8
+ npm install @accitdg/web-helpers
9
9
  ```
10
10
 
11
11
  ## Usage
@@ -13,12 +13,12 @@ npm install web-helpers
13
13
  ### Import the package
14
14
 
15
15
  ```javascript
16
- import webHelpers from "web-helpers";
16
+ import webHelpers from "@accitdg/web-helpers";
17
17
  // or
18
18
  import {
19
19
  convertNumberToCurrency,
20
20
  arrayBufferToBase64 /* ... */,
21
- } from "web-helpers";
21
+ } from "@accitdg/web-helpers";
22
22
  ```
23
23
 
24
24
  ## Functions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accitdg/web-helpers",
3
- "version": "0.0.10",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",