moy-fp
Version:
A functional programming library.
18 lines (15 loc) • 328 B
JavaScript
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)
})