gpt4 book ai didi

javascript - 如何让 Ramda 对面?

转载 作者:行者123 更新时间:2023-11-30 11:11:05 28 4
gpt4 key购买 nike

如何使用 ramda 获得相反的值?我正在尝试归档以下内容:

R.opposite(true) //false
R.opposite(false) // true

最佳答案

如 Felix 所述,您可以使用 not否定一个值:

A function that returns the ! of its argument. It will return true when passed false-y value, and false when passed a truth-y one.

not(true) //=> false

如果您需要否定函数的结果,您可以使用 complement :

Takes a function f and returns a function g such that if called with the same arguments when f returns a "truthy" value, g returns false and when f returns a "falsy" value g returns true.

complement(equals(true))(true) //=> false

关于javascript - 如何让 Ramda 对面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53663628/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com