This file contains hidden or 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
const services = { | |
dbsql: { | |
management: true, | |
provisioning: true, | |
}, | |
nosql: true, | |
queue: { | |
general: true, | |
financial: true, | |
payments: true, |
This file contains hidden or 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
const obj = { | |
id: 'abcd12345', | |
timezone: 'America/Mexico_City', | |
card: null, | |
phone: '987654321', | |
receipt: null, | |
date: new Date(), | |
summary: undefined, | |
all: true, | |
}; |
This file contains hidden or 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
[alias] | |
disappear = !(git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d) |