UNPKG

rambdax

Version:

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

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