🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@flagg2/data-structures

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flagg2/data-structures - npm Package Compare versions

Comparing version

to
0.0.4

6

CHANGELOG.md
# @flagg2/data-structures
## 0.0.4
### Patch Changes
- export more functions
## 0.0.2

@@ -4,0 +10,0 @@

5

dist/index.d.ts

@@ -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 };

8

dist/index.js

@@ -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