
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
mock-property
Advanced tools
Given an object and a property, replaces a property descriptor (or deletes it), and returns a thunk to restore it.
Given an object and a property, replaces a property descriptor (or deletes it), and returns a thunk to restore it.
var mockProperty = require('mock-property');
var assert = require('assert');
var i = 0;
var object = {
a: 1,
get b() {
i += 1;
return 'b ' + i;
}
};
assert.equal(object.a, 1);
assert.equal(object.b, 'b 1');
assert.equal(object.b, 'b 2');
var restoreA = mockProperty(object, 'a', { 'delete': true });
assert.equal('a' in object, false);
var restoreB = mockProperty(object, 'b', { value: 42 });
assert.equal(object.b, 42);
restoreA();
assert.equal('a' in object, true);
restoreB();
assert.equal(object.b, 'b 3');
Simply clone the repo, npm install
, and run npm test
Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.
v1.1.0 - 2024-08-06
605c32e
848be58
369d824
9994626
@ljharb/eslint-config
, aud
, npmignore
, object-inspect
, tape
ebfaf9a
2deaf72
define-data-property
, has-property-descriptors
, hasown
e9f503d
aud
to npm audit
f5e6ce2
sideEffects
flag 2089940
FAQs
Given an object and a property, replaces a property descriptor (or deletes it), and returns a thunk to restore it.
We found that mock-property 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
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.