Skip to main content
Module

x/rambda/range-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {range} from 'rambda'
describe('R.range', () => { it('happy', () => { const result = range(1, 4)
result // $ExpectType readonly number[] }) it('curried', () => { const result = range(1)(4)
result // $ExpectType readonly number[] })})