为什么在 readme 中将 "fantasy-land/" 放在一切内容之前?
作者: thesecondaithinks创建于 2023年10月9日更新于 2023年11月30日
例如,为什么不直接写 a['fantasy-land/equals'](a) === true,而不写 a.equals(a) === true,或者直接写 a equals a?或者,a['fantasy-land/concat'](b)['fantasy-land/concat'](c) 等同于 a['fantasy-land/concat'](b['fantasy-land/concat'](c))(关联性),而不写 a.concat(b).concat(c) === a.concat(b.concat(c))(关联性)?这些概念本身就已经足够令人困惑,尤其是对初学者来说,因此不需要增加更多的复杂性。
内容来源: fantasyland/fantasy-land