
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@tuplo/cleanobj
Advanced tools
cleanobj Tiny (505B) removal of object properties that are undefined, functions, empty arrays or empty strings. <p a
Tiny (505B) removal of object properties that are undefined, functions, empty arrays or empty strings.
$ npm install @tuplo/cleanobj
# or with yarn
$ yarn add @tuplo/cleanobj
import clean from '@tuplo/cleanobj';
const obj = {
p1: ' ',
p2: ['', '', '', ['']],
p3: ' four ',
descriptions: ['SAMPLE SET', '', '', { foo: '', bar: null }],
badNews: [null, '', '', 'SAMPLE'],
p5: ['f ', ' ', ' do'],
p6: { thing: 'one', zap: null, un: undefined },
func: (foo) => foo,
width: '',
height: 0,
finish: false,
start: true,
'alice.bob@charlie.com': 'Dean Edward',
};
const after = clean(obj);
// {
// p3: 'four',
// descriptions: [ 'SAMPLE SET', { bar: null } ],
// badNews: [ null, 'SAMPLE' ],
// p5: [ 'f', 'do' ],
// p6: { thing: 'one', zap: null },
// height: 0,
// finish: false,
// start: true,
// 'alice.bob@charlie.com': 'Dean Edward',
// }
ignore(key: string, value: unknown) => boolean
A function that if it returns true for a given property, cleanobj will not clean that property.
const obj = {
p1: undefined,
p2: [],
p3: undefined,
};
function ignore(key: string, value: unknown) {
return key === 'p1' || (value as unknown[]).length === 0;
}
const result = clean(obj, { ignore });
// {
// p1: undefined,
// p2: []
// }
MIT
FAQs
cleanobj Tiny (505B) removal of object properties that are undefined, functions, empty arrays or empty strings. <p a
We found that @tuplo/cleanobj 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.