UNPKG

@svta/common-media-library

Version:
17 lines 432 B
import { serializeList } from './serialize/serializeList.js'; /** * Encode a list into a structured field dictionary * * @param value - The structured field list to encode * @param options - Encoding options * * @returns The structured field string * * @group Structured Field * * @beta */ export function encodeSfList(value, options) { return serializeList(value, options); } //# sourceMappingURL=encodeSfList.js.map