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

jasminewd2

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasminewd2 - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

8

CHANGELOG.md
# Changelog for jasminewd2
# 0.0.7
- ([55fd11e](https://github.com/angular/protractor/commit/55fd11e69c2f1ba8fba9a19a8acccbe933896084))
fix(index): forward it's return value
- ([f4c30a0](https://github.com/angular/protractor/commit/f4c30a0023c6ec33b15df762226c3fe8e741d26e))
fix: allow empty it functions
# 0.0.6

@@ -4,0 +12,0 @@

7

index.js

@@ -111,8 +111,11 @@ /**

description = validateString(arguments[0]);
if (!arguments[1]) {
return globalFn(description);
}
func = validateFunction(arguments[1]);
if (!arguments[2]) {
globalFn(description, asyncTestFn(func, description));
return globalFn(description, asyncTestFn(func, description));
} else {
timeout = validateNumber(arguments[2]);
globalFn(description, asyncTestFn(func, description), timeout);
return globalFn(description, asyncTestFn(func, description), timeout);
}

@@ -119,0 +122,0 @@ break;

@@ -29,3 +29,3 @@ {

"license": "MIT",
"version": "0.0.6"
"version": "0.0.7"
}
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