UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

8 lines (5 loc) 134 B
import { type } from './type.js' export function values(obj){ if (type(obj) !== 'Object') return [] return Object.values(obj) }