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

appolo-utils

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appolo-utils - npm Package Compare versions

Comparing version 0.0.52 to 0.0.53

8

lib/functions.js

@@ -56,4 +56,12 @@ "use strict";

}
static to(fn) {
try {
return [null, fn()];
}
catch (e) {
return [e];
}
}
}
exports.Functions = Functions;
//# sourceMappingURL=functions.js.map

@@ -70,2 +70,10 @@ import {Arrays} from "./arrays";

public static to<T, K>(fn: Function): [K, T?] {
try {
return [null, fn()]
} catch (e) {
return [e]
}
}
}

2

package.json

@@ -17,3 +17,3 @@ {

"main": "./index.js",
"version": "0.0.52",
"version": "0.0.53",
"license": "MIT",

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

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