Skip to main content
Module

x/rambda/source/values.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {type} from './type'
export function values(obj) { if (type(obj) !== 'Object') return []
return Object.values(obj)}