Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
void在ramda 的 arity 函数中返回之前调用有什么意义?
void
据我所知,只是确保没有出现奇怪的错误/警告。如果通过任何更改,变量将在其他地方使用值进行。void 使其为空。
ramda 的合著者在这里。这是我们所做的一些代码检查的产物。如果函数定义中有未使用的参数,我们希望得到警告。在 的情况下arity,参数仅用于创建具有正确的,好,arity 的函数。添加void arg_n通行证 linter。
arity
void arg_n