Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@anselan/maprange
Advanced tools
Inspired by the map function in the creative coding framework Processing and its counterpart ofMap in openFrameworks. Especially useful for creative coding applications, e.g. animations.
The value 0.5
in the range [0,1] should return as 50
in the range [0,100]:
const result = remap(0.5, [0,1], [0, 100]); // result === 50
The value 10% should count as as 100% minus 10% (i.e. 90%) if we are counting backwards, i.e.
const result = remap(10, [0, 100], [100, 0]); // notice reversed output range; result === 90
// A pixel in the middle of the screen, normalised in the range [0,1]
const [x, y] = [0.5, 0.5]
// Convert it to a position on display with dimensions 1920x1080
const [px, py] = remapCoords([x,y], [1,1], [1920,1080])
console.log(px, py) // "960, 540"
You'll see the value of x
modulate from -1 to 1 smoothly over time.
The remapping keeps the result in a range between 10 and 1000 (mm? who knows)
const start = Date.now();
setInterval(() => {
const elapsed = Date.now() - start;
const x = Math.sin(elapsed / 1000);
const height = remap(x, [-1, 1], [10, 1000])
console.log(elapsed, x, height);
}, 40)
remap
Basic remapping of a value from one range to another.
remap (value, inputRange, targetRange, clamp, shouldRound)
...where the parameters are:
value
: a numberinputRange
, targetRange
: arrays of exactly 2 elements each, i.e [min,max]
clamp
(optional; default false
): whether to constrain the result within the given target rangeshouldRound
(optional; default false
): whether to round to nearest integer, i.e. only whole numbersProvide the range (inputMin
, inputMax
) that your value
is currently in, and specify a new range (outputMin
, outputMax
) and you'll get back a new value as per the target range.
remapArray
Remap many values at once.
remapArray (values, inputRange, targetRange, clamp, shouldRound)
... where the parameters are the same as above, except that values
is an array values, not a single value.
remapCoords
Remap coordinates in multiple dimensions.
remapCoords (inputCoords, inputDimensions, targetDimensions, clamp, shouldRound
Given a set of "coordinates" in X dimensions,
inputCoords
is an array representing coordinates in X dimensions, i.e. should have a length of XinputDimensions
is an array representing maximum extents for the input coordinate system, one per dimension. Should therefore also have a length of XtargetDimensions
is an array representing maximum extents for the target coordinate system you want to remap your coordinates to. Should therefore also have a length of XKeep in mind:
0
)remap
and remapArray
, the default for shouldRound
is true
because this is convenient for normalised-to-pixel translations which is the most common use casenpm install @anselan/maprange
Import the basics:
import { remap } from '@anselan/maprange'
...or import other functions you need:
import { remap, remapArray, remapCoords } from '@anselan/maprange'
If you cannot use import
, try require
:
const { remap } = require('@anselan/maprange`)
Differs from the following similar JS packages:
None of the above provide the following convenience features:
remapArray
remapCoords
Hopefully, you also find the array-format ranges ([0,1]
, etc.) more readable than the APIs referenced above, too.
FAQs
Map values from one range to another
The npm package @anselan/maprange receives a total of 24 weekly downloads. As such, @anselan/maprange popularity was classified as not popular.
We found that @anselan/maprange demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.