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

result-tsk

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

result-tsk - npm Package Compare versions

Comparing version 2.1.6 to 2.1.7

6

CHANGELOG.md

@@ -119,1 +119,7 @@ # Changelog

- Packages was updated and the functions now can be call in a chained way
## [2.1.7] — 2024-05-07
### Update
- Packages was updated.

0

demo/runkitExample.js

@@ -0,0 +0,0 @@ const result_tsk = require("result-tsk");

2

lib/generic/Result.js

@@ -83,4 +83,4 @@ "use strict";

return __awaiter(this, void 0, void 0, function* () {
let value = undefined;
const execution = yield promise;
let value = execution === null || execution === undefined ? undefined : execution.value;
if (execution.error) {

@@ -87,0 +87,0 @@ this.setError(execution.error, execution.statusCode);

@@ -72,3 +72,2 @@ "use strict";

return __awaiter(this, void 0, void 0, function* () {
let value = undefined;
const execution = yield promise;

@@ -78,5 +77,3 @@ if (execution.error) {

}
else {
value = execution.value;
}
const value = execution.value;
return Object.assign(Object.assign({}, this), { value });

@@ -83,0 +80,0 @@ });

{
"name": "result-tsk",
"version": "2.1.6",
"version": "2.1.7",
"description": "result tool to use with or without NodeTskeleton template project",

@@ -16,3 +16,3 @@ "repository": {

],
"author": "Vickodev<harvic3@ingenieros.com>",
"author": "Vickodev<harvic3@proton.me>",
"license": "MIT",

@@ -19,0 +19,0 @@ "homepage": "https://github.com/harvic3/nodetskeleton-tools/blob/master/src/result-tsk/README.md",

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