UNPKG

moy-fp

Version:
18 lines (15 loc) 245 B
import __ from '../../src/Function/__' /** * Number -> Number */ import inc from '../../src/Math/inc' test('inc(not using __', () => { expect( inc(3) ).toBe(4) }) test('inc(using __)', () => { expect( inc(__)(3) ).toBe(4) })