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

@webshrine/stdtyp

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webshrine/stdtyp - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

2

package.json
{
"name": "@webshrine/stdtyp",
"type": "module",
"version": "0.0.19",
"version": "0.0.20",
"private": false,

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

@@ -1,2 +0,2 @@

import type { AnyArrayOptional, AnyObject, CollectionKey, Decrement } from '..'
import type { AnyArrayOptional, AnyObject, CollectionKey, Decrement, OmitByValueExact } from '..'

@@ -104,2 +104,8 @@ /** @category Utilities */

/** @category Utilities */
export type Remap<T extends AnyObject, M extends { readonly [K in Extract<keyof T, string>]?: string }> = Omit<T, keyof M> & OmitByValueExact<{
[K in keyof M as Extract<M[K], string>]: K extends keyof T ? T[K] : never;
}, never>
export type {

@@ -106,0 +112,0 @@ Assign,

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