type-challenge 7日目: 268-If

問題 & 解答

https://github.com/type-challenges/type-challenges/blob/main/questions/00268-easy-if/README.md

条件CがtruthyであればTを、falsyであればFを返すIfを実装する。

type If<C extends boolean, T, F> = C extends true ? T : F

感想

さすがにConditional Typesは慣れてきました。


Buy Me A Coffeeikuma-tにお恵みを!