@flagg2/data-structures
Advanced tools
Comparing version
# @flagg2/data-structures | ||
## 0.0.4 | ||
### Patch Changes | ||
- export more functions | ||
## 0.0.2 | ||
@@ -4,0 +10,0 @@ |
@@ -33,2 +33,5 @@ declare class StructuralMap<K extends object, V> { | ||
export { StructuralMap, StructuralSet }; | ||
declare function stringifyObjectWithOrderedKeys(obj: object): string; | ||
declare function isPlainObject(obj: unknown): obj is object; | ||
export { StructuralMap, StructuralSet, isPlainObject, stringifyObjectWithOrderedKeys }; |
@@ -34,3 +34,5 @@ "use strict"; | ||
StructuralMap: () => StructuralMap, | ||
StructuralSet: () => StructuralSet | ||
StructuralSet: () => StructuralSet, | ||
isPlainObject: () => isPlainObject, | ||
stringifyObjectWithOrderedKeys: () => stringifyObjectWithOrderedKeys | ||
}); | ||
@@ -158,3 +160,5 @@ module.exports = __toCommonJS(src_exports); | ||
StructuralMap, | ||
StructuralSet | ||
StructuralSet, | ||
isPlainObject, | ||
stringifyObjectWithOrderedKeys | ||
}); |
{ | ||
"name": "@flagg2/data-structures", | ||
"version": "0.0.2", | ||
"version": "0.0.4", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
import { StructuralMap } from "./StructuralMap" | ||
import { StructuralSet } from "./StructuralSet" | ||
import { stringifyObjectWithOrderedKeys, isPlainObject } from "./helpers" | ||
export { StructuralMap, StructuralSet } | ||
export { | ||
StructuralMap, | ||
StructuralSet, | ||
stringifyObjectWithOrderedKeys, | ||
isPlainObject, | ||
} |
Sorry, the diff of this file is not supported yet
46600
1.26%1278
1.11%