Skip to main content
Module

x/rambda/source/and.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function and(a, b) { if (arguments.length === 1) return _b => and(a, _b)
return a && b}