blob: fa6cd843be1fce4b979a0adc5cb0010b86a3bd4f [file] [log] [blame] [edit]
import { type } from './type.js'
export function values(obj){
if (type(obj) !== 'Object') return []
return Object.values(obj)
}