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

3d-game-engine-canvas

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

3d-game-engine-canvas - npm Package Compare versions

Comparing version 0.1.24 to 0.1.25

.github/workflows/deploy-npm.yaml

2

package.json
{
"name": "3d-game-engine-canvas",
"version": "0.1.24",
"version": "0.1.25",
"type": "module",

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

@@ -22,2 +22,9 @@ import Vector3 from "./Vector3";

/**
* Clamp value between min and max values
* @param v number value
* @param min number min value
* @param max number max value
* @returns number
*/
export function clamp(v: number, min: number = 0, max: number = 1) {

@@ -24,0 +31,0 @@ if (v < min) v = min;

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