3.2.18 • Published 1 month ago

@carry0987/utils v3.2.18

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

Utils-JS

version
A library for using common tools and alias methods

Installation

npm install @carry0987/utils -D

Usage

Importing Entire Modules

You can import the entire set of utilities if you prefer, like this:

import { storageUtils } from '@carry0987/utils';

// Usage
storageUtils.setLocalValue('key', 'value');
const value = storageUtils.getLocalValue('key');

Importing Specific Functions (Tree Shaking)

To help with optimizing your bundle size, you can import only the functions you need from @carry0987/utils. This helps to reduce the size of your final bundle because unused code will not be included if your bundler supports tree shaking.

// Import specific utilities
import { setLocalValue, getLocalValue, removeLocalValue } from '@carry0987/utils';

// Usage
setLocalValue('key', 'value');
const value = getLocalValue('key');
removeLocalValue('key');

By using specific imports, you can take advantage of tree shaking in bundlers like Webpack or Rollup, which can statically analyze the imports and remove unused code.

3.2.18

1 month ago

3.2.15

2 months ago

3.2.17

2 months ago

3.2.16

2 months ago

3.2.14

2 months ago

3.2.13

2 months ago

3.2.12

2 months ago

3.2.9

2 months ago

3.2.11

2 months ago

3.2.10

2 months ago

3.2.7-rc2

3 months ago

3.2.7-rc3

3 months ago

3.2.7-rc1

3 months ago

3.2.8

3 months ago

3.2.7

3 months ago

3.2.2

3 months ago

3.2.6

3 months ago

3.2.5

3 months ago

3.2.4

3 months ago

3.2.3

3 months ago

3.2.1

4 months ago

3.2.0-rc3

4 months ago

3.2.0-rc4

4 months ago

3.2.0-rc2

4 months ago

3.2.0-rc1

4 months ago

3.1.3

4 months ago

3.1.2

4 months ago

3.2.0

4 months ago

3.1.1

4 months ago

3.1.0

6 months ago

3.0.3

6 months ago

3.0.2

6 months ago

3.0.1

6 months ago

3.0.0

6 months ago

3.0.0-rc5

6 months ago

3.0.0-rc4

6 months ago

3.0.0-rc3

6 months ago

3.0.0-rc2

6 months ago

3.0.0-rc1

6 months ago

2.2.4

6 months ago

2.2.3

6 months ago

2.2.2

6 months ago

2.2.1

6 months ago

2.2.0

6 months ago

2.1.10

6 months ago

2.1.9

6 months ago

2.1.8

6 months ago

2.1.7

6 months ago

2.1.6

6 months ago

2.1.5

6 months ago

2.1.4

6 months ago

2.1.3

6 months ago

2.1.2

6 months ago

2.1.1

6 months ago

2.1.0

6 months ago

2.0.3

7 months ago

2.0.2

7 months ago

2.0.1

7 months ago

2.0.0

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago