
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
utils-copy-error
Advanced tools
Copy an
errorobject.
$ npm install utils-copy-error
var copy = require( 'utils-copy-error' );
Copy an error object.
var err1 = new TypeError( 'beep' );
var err2 = copy( err1 );
// returns <TypeError>
Supported built-in error types:
The function also supports custom error types which are Error instances (e.g., ES2015 subclasses).
The function deep copies over all enumerable properties, including property descriptors.
var copy = require( 'utils-copy-error' );
var err1;
var err2;
err1 = new Error( 'beep' );
err2 = copy( err1 );
console.log( err1 === err2 );
// returns false
console.log( err1.message === err2.message );
// returns true
err1 = new TypeError( 'bad type' );
err2 = copy (err1 );
console.log( err1 === err2 );
// returns false
console.log( err1.stack === err2.stack );
// returns true
err1 = new RangeError( 'invalid value' );
err2 = copy( err1 );
console.log( err1 === err2 );
// returns false
console.log( err1.name === err2.name );
// returns true
To run the example code from the top-level application directory,
$ node ./examples/index.js
This repository uses tape for unit tests. To run the tests, execute the following command in the top-level application directory:
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-cov
Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,
$ make view-cov
This repository uses Testling for browser testing. To run the tests in a (headless) local web browser, execute the following command in the top-level application directory:
$ make test-browsers
To view the tests in a local web browser,
$ make view-browser-tests
Copyright © 2015. Athan Reines.
FAQs
Copy an error object.
The npm package utils-copy-error receives a total of 18,544 weekly downloads. As such, utils-copy-error popularity was classified as popular.
We found that utils-copy-error 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.