Skip to main content
Module

x/rambda/source/benchmarks/and.js

Faster and smaller alternative to Ramda
Go to Latest
File
const R = require('../../dist/rambda.js')const Ramda = require('ramda')
const and = [ { label: 'Rambda', fn: () => { R.and(true, true) }, }, { label: 'Ramda', fn: () => { Ramda.and(true, true) }, },]
module.exports = and