Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@jalik/extend
Advanced tools
A utility to merge flat objects.
Warning: This library is doing a "flat merge", so if you need to merge deep objects, use the following library instead: @jalik/deep-extend
Useful to merge several objects into one, for creating a configuration based on default parameters for example.
In this example, all objects are merged into the first object, so the first object is modified, if you don't want to modify the object, pass en empty object {}
as the first argument.
Note that objects are merged based on their order, so the 2nd object is merged in the first, then the 3rd is merged in the first, and so on...
import extend from "@jalik/extend";
const coldColors = {
blue: "#0000FF",
cyan: "#00FFFF",
green: "#00FF00"
};
const hotColors = {
yellow: "#FFFF00",
orange: "#FFAA00",
red: "#FF0000"
};
const result = extend({}, coldColors, hotColors);
The result:
{
"blue": "#0000FF",
"cyan": "#00FFFF",
"green": "#00FF00",
"yellow": "#FFFF00",
"orange": "#FFAA00",
"red": "#FF0000"
}
Several arrays can be merged easily. Note that undefined
values are ignored when merging.
import extend from "@jalik/extend";
const a = [0, 0, 0, 7];
const b = [0, 0, 3];
const c = [1, 3, undefined, undefined];
const result = extend([], a, b, c);
The result:
[1, 3, 3, 7]
You can easily convert an array to an object with the extend method.
import extend from "@jalik/extend";
const numbers = [1, 3, 3, 7];
const object = { length: numbers.length };
const result = extend({}, object, numbers);
The result:
{
"length": 4,
"0": 1,
"1": 3,
"2": 3,
"3": 7
}
History of releases is in the changelog.
The code is released under the MIT License.
v2.2.1 (2023-04-14)
FAQs
A utility to merge flat objects.
The npm package @jalik/extend receives a total of 63 weekly downloads. As such, @jalik/extend popularity was classified as not popular.
We found that @jalik/extend 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.