# prepend ```lua headers:prepend(NAME, VALUE) ``` {{since('2025.10.06-5ec871ab')}} Constructs a new header with `NAME` and `VALUE` and prepends it to the header map. If the header value is ascii then it will be soft wrapped at whitespace around 75 columns, and hard-wrapped regardless of whitespace at 900 columns. If the header value is non-ascii then it will be quoted printable encoded using RFC 2047 header encoding. ```lua headers:prepend('X-Something', 'Some value') ```