
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@stdlib/utils-omit
Advanced tools
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Return a partial object copy excluding specified keys.
npm install @stdlib/utils-omit
var omit = require( '@stdlib/utils-omit' );
Returns a partial copy of an object
, which excludes specified keys
.
var obj1 = {
'a': 1,
'b': 2,
'c': 3
};
var obj2 = omit( obj1, 'b' );
// returns { 'a': 1, 'c': 3 }
var obj3 = omit( obj1, [ 'b', 'c' ] );
// returns { 'a': 1 }
The function ignores non-existent and inherited keys.
var obj1 = {
'a': 1,
'b': 2,
'c': 3
};
var obj2 = omit( obj1, 'd' );
// returns { 'a': 1, 'b': 2, 'c': 3 }
var omit = require( '@stdlib/utils-omit' );
var obj1 = {
'a': 1,
'b': 2,
'c': 3,
'd': 4,
'e': 5
};
var obj2 = omit( obj1, [ 'b', 'c', 'e' ] );
// returns { 'a': 1, 'd': 4 }
@stdlib/utils-omit-by
: return a partial object copy excluding properties for which a predicate (function) returns a truthy value.This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.
FAQs
Return a partial object copy excluding specified keys.
The npm package @stdlib/utils-omit receives a total of 1,550 weekly downloads. As such, @stdlib/utils-omit popularity was classified as popular.
We found that @stdlib/utils-omit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.