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

conclure

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conclure - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

combinators.js

2

conclude.d.ts

@@ -15,3 +15,3 @@ type Continuation<TResult> = (error: unknown | null, result?: TResult) => void

type TYPE = '@@conclude-effect';
declare const TYPE = '@@conclude-effect';

@@ -18,0 +18,0 @@ type EffectType = 'CALL' | 'CPS' | 'CPS_NO_CANCEL';

{
"name": "conclure",
"version": "1.1.1",
"version": "1.1.2",
"description": "Generator runner",
"main": "src/conclude.js",
"module": "src/conclude.js",
"main": "conclude.js",
"module": "conclude.js",
"types": "conclude.d.ts",

@@ -8,0 +8,0 @@ "repository": {

import test from 'ava';
import { conclude, inProgress, getResult } from '../src/conclude';
import { delay, call } from '../src/effects';
import * as Conclude from '../src/combinators';
import { conclude, inProgress, getResult } from '../conclude';
import { delay, call } from '../effects';
import * as Conclude from '../combinators';

@@ -6,0 +6,0 @@ test('all', async t => {

import test from 'ava';
import { conclude, finished, inProgress, whenFinished, getResult } from '../src/conclude';
import { conclude, finished, inProgress, whenFinished, getResult } from '../conclude';

@@ -4,0 +4,0 @@ test('conclude generator sync', t => {

import test from 'ava';
import { conclude, inProgress, getResult } from '../src/conclude';
import { cps, cps_no_cancel, call } from '../src/effects';
import { conclude, inProgress, getResult } from '../conclude';
import { cps, cps_no_cancel, call } from '../effects';

@@ -5,0 +5,0 @@ test('cps', async t => {

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