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
| function evaluate( | |
| objectA: Record<number | string | symbol, unknown>, | |
| objectB: Record<number | string | symbol, unknown>, | |
| ): boolean { | |
| const keysA: Array<number | string | symbol> = Object.keys(objectA); | |
| const keysB: Array<number | string | symbol> = Object.keys(objectB); | |
| if (keysA.length !== keysB.length) { | |
| return false; | |
| } |
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
| function evaluate( | |
| objectA: Record<number | string | symbol, unknown>, | |
| objectB: Record<number | string | symbol, unknown>, | |
| ): boolean { | |
| const keysA: Array<number | string | symbol> = Object.keys(objectA); | |
| const keysB: Array<number | string | symbol> = Object.keys(objectB); | |
| if (keysA.length !== keysB.length) { | |
| return false; |
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
| #!/bin/bash | |
| set -euo pipefail | |
| FILE_PATH="$(realpath $BASH_SOURCE)" | |
| CURRENT_DIR="$(dirname $FILE_PATH)" | |
| cd $CURRENT_DIR; | |
| echo "Removing Jest and it's dependencies" |
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
| # Manual installation | |
| ## Windows | |
| This mod is NOT compatible with ZombieBuddy. Trying to run both at once will crash the game. Don't do it. Look at me. Don't. | |
| You need to copy a certain number of files from the ProjectZomboid game directory for this mod to function. | |
| 1) Go to Steam, right clcick on the game, go to "Manage" > "Browse Local Files". |