Skip to content

Instantly share code, notes, and snippets.

@palpich
Created July 4, 2022 21:20
Show Gist options
  • Save palpich/f61841a643ce75831f8006886d053bcc to your computer and use it in GitHub Desktop.
Save palpich/f61841a643ce75831f8006886d053bcc to your computer and use it in GitHub Desktop.
Assign By Key
function assignByKey<T, S extends T, K extends keyof T & keyof S>(
target: T,
source: S,
key: K
) {
target[key] = source[key]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment