@startuml
class AcctId {
+@value : string
}
class AcctType {
+@value : string
}
class ActiveFIAccountHolderId {
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
| import R from 'ramda' | |
| const isObject = R.compose(R.equals('Object'), R.type); | |
| const allAreObjects = R.compose(R.all(isObject), R.values); | |
| const hasLeft = R.has('left'); | |
| const hasRight = R.has('right'); | |
| const hasBoth = R.both(hasLeft, hasRight); | |
| const isEqual = R.both(hasBoth, R.compose(R.apply(R.equals), R.values)); | |
| const markAdded = R.compose(R.append(undefined), R.values); |
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
| #!/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |
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
| /* Modern Font Stacks */ | |
| /* System (2026 update) */ | |
| font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; | |
| /* System-Only Minimal 2026 */ | |
| font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; | |
| /* System Max Consistency on Modern OS 2026 */ | |
| font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; |