typed-typings / npm-ramda

TypeScript's type definitions for Ramda
MIT License
384 stars 64 forks source link

Add dissoc(prop: number) #436

Open oleg-mtr opened 5 years ago

oleg-mtr commented 5 years ago

Now there is only string version dissoc(prop: string). But it also works with number keys

console.log(R.dissoc(1, {1: 3, 2: 4})) // {"2":4}

Test