UNPKG

functionfoundry

Version:
12 lines (10 loc) 275 B
import test from 'tape' import error from '../src/error' import istext from '../src/istext' test('istext', (t) => { t.plan(4) t.equal( istext( '' ), true) t.equal( istext( 1 ), false) t.equal( istext( new Date() ), false) t.equal( istext( error.value ), false) })