Huge News!Announcing our $40M Series B led by Abstract Ventures.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-e80ccd96 to 0.0.1-eabef0a0

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-e80ccd96",
"version": "0.0.1-eabef0a0",
"description": "various streamcards utilities",

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

"dependencies": {
"@streamplace/ssb-keys": "^7.0.16"
"@streamplace/ssb-keys": "7.0.18",
"isomorphic-fetch": "^2.2.1",
"json-stable-stringify": "^1.0.1"
},
"gitHead": "e80ccd9627337c33e9f62eed0f17f765917c1713"
"gitHead": "eabef0a0394971b4774eeda9d1ea4aa1fc9f1e9f"
}

@@ -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