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

utilium

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utilium - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

11

dist/requests.d.ts

@@ -16,6 +16,14 @@ export interface ResourceCacheOptions {

}
type CacheRange = {
export type CacheRange = {
start: number;
end: number;
};
export interface CacheRegion {
/** The region's offset from the start of the resource */
offset: number;
/** Ranges cached in this region. These are absolute! */
ranges: CacheRange[];
/** Data for this region */
data: Uint8Array;
}
export type RequestError = {

@@ -59,2 +67,1 @@ tag: 'status';

};
export {};

2

package.json
{
"name": "utilium",
"version": "1.2.1",
"version": "1.2.2",
"description": "Typescript utilities",

@@ -5,0 +5,0 @@ "funding": {

@@ -24,5 +24,5 @@ /* Utilities for `fetch` when using range requests. It also allows you to handle errors easier */

type CacheRange = { start: number; end: number };
export type CacheRange = { start: number; end: number };
interface CacheRegion {
export interface CacheRegion {
/** The region's offset from the start of the resource */

@@ -29,0 +29,0 @@ offset: number;

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