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

@ephox/polaris

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ephox/polaris - npm Package Compare versions

Comparing version 4.0.5 to 4.0.7

README.md

7

lib/main/ts/ephox/polaris/parray/Query.d.ts

@@ -1,2 +0,2 @@

import { Arr, Optional } from '@ephox/katamari';
import { Optional } from '@ephox/katamari';
import { PRange } from '../pattern/Types';

@@ -15,4 +15,7 @@ /**

declare const sublist: <T extends PRange>(parray: T[], start: number, finish: number) => T[];
declare const find: typeof Arr.find;
declare const find: {
<T, U extends T>(xs: ArrayLike<T>, pred: (x: T, i: number) => x is U): Optional<U>;
<T_1 = any>(xs: ArrayLike<T_1>, pred: (x: T_1, i: number) => boolean): Optional<T_1>;
};
export { get, find, inUnit, sublist };
//# sourceMappingURL=Query.d.ts.map

@@ -36,6 +36,4 @@ import { Arr, Optional } from '@ephox/katamari';

};
var find = function (parray, pred) {
return Arr.find(parray, pred);
};
var find = Arr.find;
export { get, find, inUnit, sublist };
//# sourceMappingURL=Query.js.map
{
"name": "@ephox/polaris",
"description": "This project does data manipulation on arrays and strings.",
"version": "4.0.5",
"version": "4.0.7",
"repository": {

@@ -15,3 +15,3 @@ "type": "git",

"tsconfig.json",
"readme.md",
"README.md",
"LEGAL.txt",

@@ -22,7 +22,7 @@ "CHANGELOG.txt",

"dependencies": {
"@ephox/katamari": "^7.1.3",
"@ephox/katamari": "^7.2.1",
"tslib": "^2.0.0"
},
"devDependencies": {
"@ephox/katamari-assertions": "^2.0.5"
"@ephox/katamari-assertions": "^2.0.7"
},

@@ -40,3 +40,3 @@ "scripts": {

"types": "./lib/main/ts/ephox/polaris/api/Main.d.ts",
"gitHead": "d5160f5bf01a61fa4ae91656f4eaac1cf5654492"
"gitHead": "17afb1a332b0093cbc017a0d40b1651b55b2a196"
}

@@ -43,5 +43,3 @@ import { Arr, Optional } from '@ephox/katamari';

const find: typeof Arr.find = (parray, pred) => {
return Arr.find(parray, pred);
};
const find = Arr.find;

@@ -48,0 +46,0 @@ export {

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