This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const getEnumKeyByValue = (enumerated, value: string) => { | |
return Object.keys(enumerated)[ | |
Object.values(enumerated).indexOf(value as typeof enumerated) | |
]; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example: exclude (separate) 'notifyUser' property from 'request' object | |
const request = { | |
id: 1, | |
title: 'ID 1 title', | |
notifyUser: true | |
}; | |
const { notifyUser, ...updateSet } = request; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove containers | |
docker rm -f $(docker ps -a -q) | |
# Remove images | |
docker rmi -f $(docker images -a -q) | |
# Remove volumes | |
docker volume rm $(docker volume ls -q) | |
docker volume prune | |
docker system prune --volumes |
OlderNewer