UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

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