Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

alternative for lodash omit in javascript

const omitSingle = (key, { [key]: _, ...obj }) => obj
const profile = { name: 'Maria', age: 30 }

const result = omitSingle('name', profile)

console.log(result)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #alternative #lodash #omit #javascript
ADD COMMENT
Topic
Name
7+5 =