New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cardcore/util

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cardcore/util - npm Package Compare versions

Comparing version 0.0.1-4a0572cd to 0.0.1-6bc8c162

14

dist/index.js

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

});
exports.hashState = exports.Box = undefined;

@@ -73,4 +74,17 @@ var _targetHelper = require("./target-helper");

});
exports.serverFetch = serverFetch;
var _isomorphicFetch = require("isomorphic-fetch");
var _isomorphicFetch2 = _interopRequireDefault(_isomorphicFetch);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function serverFetch(url) {
for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
return _isomorphicFetch2.default.apply(undefined, ["" + url].concat(args));
}
//# sourceMappingURL=index.js.map

8

package.json
{
"name": "@cardcore/util",
"version": "0.0.1-4a0572cd",
"version": "0.0.1-6bc8c162",
"description": "various streamcards utilities",

@@ -14,5 +14,7 @@ "main": "dist/index.js",

"dependencies": {
"@streamplace/ssb-keys": "^7.0.16"
"@streamplace/ssb-keys": "7.0.20",
"isomorphic-fetch": "^2.2.1",
"json-stable-stringify": "^1.0.1"
},
"gitHead": "4a0572cd286ae86d011a80c5b81ac8fcfe50072b"
"gitHead": "6bc8c16251389fba21cae27a880a47427697b61f"
}

@@ -7,1 +7,6 @@ export * from "./target-helper";

export { default as hashState } from "./hash-state";
import fetch from "isomorphic-fetch";
export function serverFetch(url, ...args) {
return fetch(`${url}`, ...args);
}

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