UNPKG

functionfoundry

Version:
9 lines (7 loc) 175 B
import test from 'tape' import exact from '../src/exact' test('exact', (t) => { t.plan(2) t.equal( exact( 'FOO', 'Foo'), false) t.equal( exact( 'FOO', 'FOO'), true) })