UNPKG

functionfoundry

Version:
10 lines (8 loc) 188 B
import test from 'tape' import ne from '../src/ne' test('ne', function(t) { t.plan(3); t.equal( ne(1, 0), true); t.equal( ne(1, 1), false); t.equal( ne('FOO', 'foo'), false); });