🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

stryker-api

Package Overview
Dependencies
Maintainers
3
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stryker-api - npm Package Compare versions

Comparing version

to
0.21.2

8

CHANGELOG.md

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

<a name="0.21.2"></a>
## [0.21.2](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.21.1...stryker-api@0.21.2) (2018-10-03)
**Note:** Version bump only for package stryker-api
<a name="0.21.1"></a>

@@ -8,0 +16,0 @@ ## [0.21.1](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.21.0...stryker-api@0.21.1) (2018-09-14)

2

package.json
{
"name": "stryker-api",
"version": "0.21.1",
"version": "0.21.2",
"description": "The api for the extendable JavaScript mutation testing framework Stryker",

@@ -5,0 +5,0 @@ "scripts": {

import Config from './Config';
/**
* Represents a ConfigEditor plugin
*
* ConfigEditors can change the content of the stryker runtime configuration
* ConfigEditors are implemented as a chain of ConfigEditors, the result of
* any previous ConfigEditor can be passed thru to the next. Please not that
* editing of the configuration object is done by reference.
*
*/
interface ConfigEditor {
/**
* Extending classes only need to implement the edit method, this method
* receives a writable config object that can be editted in any way.
* Please be aware that editting is done via object reference. Therefore
* the return type is void.
*
* @param config: The stryker configuration object
*/
edit(config: Config): void;
}
export default ConfigEditor;