Appearance
Shorthand Object.values
Object.values
import { vs } from 'tsu' const object = { frog: 'good', toad: 'bad' } vs(object) // ['good', 'bad']
/** * @param obj - The object to extract the values from. * @returns The values. */ function vs<T>(obj: Obj<T>): T[]