UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

7 lines (5 loc) 158 B
import { path } from './path.js' import { sortBy } from './sortBy.js' export function sortByPath(sortPath) { return list => sortBy(path(sortPath))(list) }