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

@opencreek/ext

Package Overview
Dependencies
Maintainers
4
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opencreek/ext - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2--canary.27.5822301571.0

1

build/collections.d.ts

@@ -33,2 +33,3 @@ type PairSplit<T> = T extends [infer F, infer L] ? [Chain<F>, Chain<L>] : never;

constructor(val: ReadonlyArray<T>);
asSet(): Set<T>;
writableValue(): Array<T>;

@@ -35,0 +36,0 @@ value(): ReadonlyArray<T>;

@@ -101,2 +101,5 @@ "use strict";

}
asSet() {
return new Set(this.val);
}
writableValue() {

@@ -103,0 +106,0 @@ return [...this.val];

2

package.json
{
"name": "@opencreek/ext",
"version": "2.1.1",
"version": "2.1.2--canary.27.5822301571.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "build/index.js",

@@ -180,2 +180,6 @@ import {

asSet(): Set<T> {
return new Set(this.val)
}
writableValue(): Array<T> {

@@ -182,0 +186,0 @@ return [...this.val]

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