Socket
Socket
Sign inDemoInstall

@stryker-mutator/util

Package Overview
Dependencies
0
Maintainers
4
Versions
98
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

.nyc_output/1822b87b-90bf-4b15-b543-553fcb6e31ab.json

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

<a name="0.0.2"></a>
## [0.0.2](https://github.com/stryker-mutator/stryker/compare/@stryker-mutator/util@0.0.1...@stryker-mutator/util@0.0.2) (2018-11-07)
**Note:** Version bump only for package @stryker-mutator/util
<a name="0.0.1"></a>

@@ -8,0 +16,0 @@ ## 0.0.1 (2018-10-15)

2

package.json
{
"name": "@stryker-mutator/util",
"version": "0.0.1",
"version": "0.0.2",
"description": "Contains utilities for Stryker, the mutation testing framework for JavaScript and friends",

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

/// <reference types="node" />
import * as util from 'util';
export declare function innerPromisify(original: any): (...args: any[]) => Promise<{}>;
export declare function innerPromisify(original: any): (this: unknown, ...args: any[]) => Promise<{}>;
declare const _default: typeof util.promisify;
export default _default;

@@ -19,3 +19,3 @@ import { exec } from 'child_process';

export function innerPromisify(original: any) {
return function fn(...args: any[]) {
return function fn(this: unknown, ...args: any[]) {
return new Promise((resolve, reject) => {

@@ -22,0 +22,0 @@ original.call(this, ...args, (err: Error, ...values: any[]) => {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc