UNPKG

loveurl

Version:

A url builder and parser pack for handling url states in an easy way.(Beta Version)

6 lines (4 loc) 290 B
type PrimitivesInUrl = string | number | boolean | null | undefined; declare const decodePrimitive: (value: string) => PrimitivesInUrl; declare const encodeIfStringOrNull: (value: PrimitivesInUrl) => PrimitivesInUrl; export { type PrimitivesInUrl, decodePrimitive, encodeIfStringOrNull };