Printers

printPriceTable.mjs

@mr_ozio/scraper-utils · v2.5.0 · Generated April 21, 2026

Target Style

Target Style

1 exports

const

printPriceDiff

Target Style
export const printPriceDiff = ({ from, to }) => {

Prints a price difference table using named values.

Target style API. Preferred for new code.

Parameters

  • options{ from: Record<string, number>, to: Record<string, number> }

Returns

void

Legacy Style

Legacy Style

1 exports

const

printPriceTable

Legacy Style
export const printPriceTable = (prevValue, nextValue) => printPriceDiff({ from: prevValue, to: nextValue })

No description provided.

Legacy API. Kept for older code and not the preferred choice for new code.