Skip to main content
Module

x/rambda/clone-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {clone} from 'rambda'
describe('R.clone', () => { it('happy', () => { const obj = {a: 1, b: 2} const result = clone(obj) result // $ExpectType { a: number; b: number; } })})