
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.
object-adaptation-js
Advanced tools
Adapt plain objects freely
Object Adaption Js allows you to adapt plain objects through mutations. Mutations are functions used to partially adapt object properties. Decide what properties to adapt and write structured mutations for it, quite easy! See below examples on how it may look in practice.
const {
createShapeMutation,
createShapeConfiguration,
adaptToShape,
} = require('object-adaptation-js')
const person = { firstName: 'john', lastName: 'doe' }
const capitalizeString = string =>
string.charAt(0).toUpperCase() + string.slice(1)
const firstNameMutation = createShapeMutation(['firstName'], (key, value) => {
const capitalizedFirstName = capitalizeString(value)
return { [key]: capitalizedFirstName }
})
const lastNameMutation = createShapeMutation(['lastName'], (key, value) => {
const capitalizedLastName = capitalizeString(value)
return { [key]: capitalizedLastName }
})
const shapeConfiguration = createShapeConfiguration(['firstName', 'lastName'], {
mutations: [firstNameMutation, lastNameMutation],
})
// Results in: { firstName: 'John', lastName: 'Doe' }
return adaptToShape(person, shapeConfiguration)
const {
createShapeMutation,
createShapeConfiguration,
adaptToShape,
} = require('object-adaptation-js')
const person = { firstName: 'John', lastName: 'Doe' }
const fullNameMutation = createShapeMutation(
['firstName', 'lastName'],
(key, value, mutatedPerson) => {
if (key === 'firstName') {
return { [key]: value, fullName: value }
}
if (key === 'lastName') {
const { fullName } = mutatedPerson
return { [key]: value, fullName: `${fullName} ${value}` }
}
return mutatedPerson
}
)
const shapeConfiguration = createShapeConfiguration(['firstName', 'lastName'], {
mutations: [fullNameMutation],
})
// Results in: { firstName: 'John', lastName: 'Doe', fullName: 'John Doe' }
return adaptToShape(person, shapeConfiguration)
const {
createShapeMutation,
createShapeConfiguration,
adaptToShape,
} = require('object-adaptation-js')
const person = {
firstName: 'John',
lastName: 'Doe',
address: {
street: 'John Doe Street 12',
city: 'Stockholm',
country: 'Sweden',
zip: 12345,
},
}
const addressMutation = createShapeMutation(['address'], (key, value) => {
const { street, city, zip } = value
return { [key]: `${street}, ${zip}, ${city}` }
})
const shapeConfiguration = createShapeConfiguration(
['firstName', 'lastName', 'address'],
{
mutations: [addressMutation],
}
)
// Results in: { firstName: 'John', lastName: 'Doe', address: 'John Doe Street 12, 12345, Stockholm' }
return adaptToShape(person, shapeConfiguration)
FAQs
Utility to adapt plain objects into desired shapes.
We found that object-adaptation-js 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.