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

@astropub/assist

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astropub/assist - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "@astropub/assist",
"description": "A library of tools to help you develop with Astro",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -8,3 +8,5 @@ import { createHash } from 'node:crypto'

export const fetch = globalThis.fetch || await import('@astropub/webapi').then(exports => exports.fetch)
export const fetch = await (async () => {
return globalThis.fetch || await import('@astropub/webapi').then(exports => exports.fetch)
})()

@@ -11,0 +13,0 @@ export const getFileName = (value) => String(String(value).split('/').pop() || '') || 'file.bin'

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