UNPKG

functionfoundry

Version:
10 lines (8 loc) 180 B
import test from 'tape' import eq from '../src/eq' test('eq', (t) => { t.plan(3) t.equal( eq( 1, 1), true) t.equal( eq( 2, 4), false) t.equal( eq( 'FOO', 'fOo'), true) })