UNPKG

functionfoundry

Version:
9 lines (7 loc) 149 B
import test from 'tape' import char from '../src/char' test('char', (t) => { t.plan(2) t.equal( char( 65 ), 'A') t.equal( char( 97 ), 'a') })