Skip to main content
Module

x/lume/core/searcher.ts>buildSort

🔥 Static site generator for Deno 🦕
Extremely Popular
Go to Latest
function buildSort
import { buildSort } from "https://deno.land/x/lume@v2.2.4/core/searcher.ts";

Convert a query to sort to a function

example: "title=desc" returns: (a, b) => a.title > b.title

Parameters

sort: string

Returns

(a: Data, b: Data) => number