UNPKG

moy-fp

Version:
18 lines (15 loc) 328 B
import __ from '../../src/Function/__' /** * String -> Number */ import lengthString from '../../src/String/lengthString' test('lengthString(not using __)', () => { expect( lengthString('hello world') ).toBe(11) }) test('lengthString(using __)', () => { expect( lengthString(__)('hello world') ).toBe(11) })