New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@meteorwallet/utils

Package Overview
Dependencies
Maintainers
0
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meteorwallet/utils - npm Package Compare versions

Comparing version

to
1.4.0-0

2

dist/esm/javascript_type_utils/object.utils.d.ts
declare function isEmptyObject(obj: object): obj is Record<string, never>;
declare function isObject(obj: any): obj is Record<PropertyKey, unknown>;
export declare const object_utils: {
isEmptyObject: typeof isEmptyObject;
isObject: typeof isObject;
};
export {};
//# sourceMappingURL=object.utils.d.ts.map

@@ -6,4 +6,8 @@ function isEmptyObject(obj) {

}
function isObject(obj) {
return obj !== null && typeof obj === "object" && !Array.isArray(obj);
}
export const object_utils = {
isEmptyObject,
isObject,
};

2

package.json
{
"name": "@meteorwallet/utils",
"version": "1.3.0-0",
"version": "1.4.0-0",
"description": "Utility functions used in Meteor Wallet",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is not supported yet