Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ephox/katamari

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ephox/katamari - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

lib/test/ts/atomic/api/obj/ObjIsEmptyTest.d.ts

1

lib/main/ts/ephox/katamari/api/Obj.d.ts

@@ -31,2 +31,3 @@ import { Option } from './Option';

export declare const has: <T, K extends keyof T>(obj: T, key: K) => boolean;
export declare const isEmpty: (r: Record<any, any>) => boolean;
//# sourceMappingURL=Obj.d.ts.map

@@ -81,2 +81,10 @@ import { Option } from './Option';

};
export var isEmpty = function (r) {
for (var x in r) {
if (hasOwnProperty.call(r, x)) {
return false;
}
}
return true;
};
//# sourceMappingURL=Obj.js.map

4

package.json
{
"name": "@ephox/katamari",
"version": "2.5.0",
"version": "2.5.1",
"description": "Basic data type library",

@@ -35,3 +35,3 @@ "repository": {

"types": "./lib/main/ts/ephox/katamari/api/Main.d.ts",
"gitHead": "fdb1cfec005c228b09a618df693c0ea43d8d9f92"
"gitHead": "14a2a47cb6124fa605cee20ee7b27248c3ab8d5a"
}

@@ -93,1 +93,10 @@ import { Option } from './Option';

};
export const isEmpty = (r: Record<any, any>): boolean => {
for (const x in r) {
if (hasOwnProperty.call(r, x)) {
return false;
}
}
return true;
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc