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

@heliosgraphics/utils

Package Overview
Dependencies
Maintainers
0
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@heliosgraphics/utils - npm Package Compare versions

Comparing version 5.3.11 to 5.3.12

2

clipboard.spec.ts

@@ -20,3 +20,3 @@ import { describe, it, expect, vi } from "vitest"

copyValue(TEXT_STRING)
expect(spyCreateElement).toHaveBeenCalledWith("input")
expect(spyCreateElement).toHaveBeenCalledWith("textarea")
expect(spyAppendChild).toHaveBeenCalled()

@@ -23,0 +23,0 @@ expect(document.execCommand).toHaveBeenCalledWith("copy", false)

@@ -1,4 +0,3 @@

// copy the given value to the clipboard
export const copyValue = (text: string): void => {
const input: HTMLInputElement = document.createElement("input")
const input: HTMLTextAreaElement = document.createElement("textarea")

@@ -5,0 +4,0 @@ document.body.appendChild(input)

{
"name": "@heliosgraphics/utils",
"version": "5.3.11",
"version": "5.3.12",
"type": "module",

@@ -14,3 +14,3 @@ "author": "03b8 <03b8@helios.graphics>",

"dependencies": {
"xss": "1.0.15"
"xss": "^1.0.15"
},

@@ -17,0 +17,0 @@ "devDependencies": {

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