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 { Map, List } = require('immutable'); | |
| const mapBeforeI = Map({ a: 1, b: List([1, 2]) }); | |
| // First let's experiment with an Immutable structure | |
| // Perform set operation, but make the values the same | |
| const mapAfterI = mapBeforeI.set('a', 1); | |
| console.log(mapBeforeI === mapAfterI); // true | |
| // Perform set operation, but make the values different |
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
| docker rmi -f $(docker images --format "{{.ID}} {{.Repository}}" | grep <name to search> | awk ' {print $1} ') |
NewerOlder