cafe-utility 33.11.0 → 34.0.0
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.
- package/module.mjs +1 -31
- package/package.json +2 -1
package/module.mjs
CHANGED
|
@@ -1,31 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export const Arrays = utility.Arrays
|
|
4
|
-
export const Assertions = utility.Assertions
|
|
5
|
-
export const Binary = utility.Binary
|
|
6
|
-
export const Cache = utility.Cache
|
|
7
|
-
export const Dates = utility.Dates
|
|
8
|
-
export const Elliptic = utility.Elliptic
|
|
9
|
-
export const Numbers = utility.Numbers
|
|
10
|
-
export const Objects = utility.Objects
|
|
11
|
-
export const Pagination = utility.Pagination
|
|
12
|
-
export const Promises = utility.Promises
|
|
13
|
-
export const Random = utility.Random
|
|
14
|
-
export const Strings = utility.Strings
|
|
15
|
-
export const System = utility.System
|
|
16
|
-
export const Types = utility.Types
|
|
17
|
-
export const Optional = utility.Optional
|
|
18
|
-
export const Vector = utility.Vector
|
|
19
|
-
export const PubSubChannel = utility.PubSubChannel
|
|
20
|
-
export const Chunk = utility.Chunk
|
|
21
|
-
export const MerkleTree = utility.MerkleTree
|
|
22
|
-
export const FixedPointNumber = utility.FixedPointNumber
|
|
23
|
-
export const Lazy = utility.Lazy
|
|
24
|
-
export const AsyncLazy = utility.AsyncLazy
|
|
25
|
-
export const AsyncQueue = utility.AsyncQueue
|
|
26
|
-
export const Uint8ArrayReader = utility.Uint8ArrayReader
|
|
27
|
-
export const Uint8ArrayWriter = utility.Uint8ArrayWriter
|
|
28
|
-
export const TrieRouter = utility.TrieRouter
|
|
29
|
-
export const RollingValueProvider = utility.RollingValueProvider
|
|
30
|
-
export const Solver = utility.Solver
|
|
31
|
-
export const Lock = utility.Lock
|
|
1
|
+
export { Arrays, Assertions, AsyncLazy, AsyncQueue, Binary, Cache, Chunk, Dates, Elliptic, FixedPointNumber, Lazy, Lock, MerkleTree, Numbers, Objects, Optional, Promises, PubSubChannel, Random, RollingValueProvider, Solver, Strings, System, TrieRouter, Types, Uint8ArrayReader, Uint8ArrayWriter, Vector } from './index.js'
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cafe-utility",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "34.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"require": "./index.js",
|
|
9
|
+
"react-native": "./index.js",
|
|
9
10
|
"types": "./index.d.ts",
|
|
10
11
|
"default": "./module.mjs"
|
|
11
12
|
},
|