Skip to main content
Module

x/rambda/immutable.d.ts>values

Faster and smaller alternative to Ramda
Go to Latest
function values
import { values } from "https://deno.land/x/rambda@v7.0.1/immutable.d.ts";

With correct input, this is nothing more than Object.values(obj). If obj is not an object, then it returns an empty array.

Type Parameters

T extends object
K extends keyof T

Returns

readonly T[K][]