
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
immutable-transform-matrix
Advanced tools
A library for creating affine transform matrix (3x3) that extend an Immutable Map.
These matrices can be used for matrix calcuations on SVG CTMs (current transform matrix).
Inspired by transformation-matrix-js
yarn add immutable-transform-matrix
import { Matrix } from 'immutable-transform-matrix'
import { isImmutable } from 'immutable'
const m1 = new Matrix()
const m2 = m1.translate(10, 20)
isImmutable(m1) // true
m1.get('e') // 0
m2.get('e') // 10
const transform = new Matrix()
.scale(2)
.toString()
const ViewPort = () => <g transform={transform} />
FAQs
A matrix library using ImmutableJS data structutes
The npm package immutable-transform-matrix receives a total of 16 weekly downloads. As such, immutable-transform-matrix popularity was classified as not popular.
We found that immutable-transform-matrix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.