Skip to main content
Module

x/denofun/values.ts

Small utility library containing functions, monads and other fun stuff.
Latest
File
/** * **values** returns values from a provided object * @param x input object * @returns list of values */export default function values(x: object): any[] { return Object.values(x);}