
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
utils-extend
Advanced tools
Extend nodejs util api, and it is light weight and simple.
var util = require('utils-extend');
npm install utils-extend --save
Extend api in nodejs util module,
Deep clone soure object to target
var target = {};
var source = {
k: 'v',
k2: []
};
var source2 = {
k3: { }
};
util.extend(target, source, source2);
Check target is object, array and function return false.
Chck target is array
uitl.isArray = Array.isArray
Empty function
Make array unique.
var arr = [4, 5, 5, 6];
var result = uitl.unique(arr);
Return a copy of the object with list keys
util.pick({ key: 'value' }, 'key');
util.pick({ key: 'value' }, function(value, key, object) { });
Escapes a string for insertion into HTML, replacing &, <, >, ", `, and ' characters.
var html = '<div></div>'
var result = util.escape('<div></div>')
The opposite of escape
Return true is path isabsolute, otherwise return false.
util.path.isAbsolute('C:\\file\\path'); // windows
util.path.isAbsolute('/file/path'); // unix
Normalize \ paths to / paths.
FAQs
Extend nodejs util api, and it is light weight and simple
The npm package utils-extend receives a total of 54,475 weekly downloads. As such, utils-extend popularity was classified as popular.
We found that utils-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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.