Merge 0.9->trunk
[prosody.git] / util / http.lua
1 -- Prosody IM
2 -- Copyright (C) 2013 Florian Zeitz
3 --
4 -- This project is MIT/X11 licensed. Please see the
5 -- COPYING file in the source package for more information.
6 --
7
8 local http = {};
9
10 function http.contains_token(field, token)
11         field = ","..field:gsub("[ \t]", ""):lower()..",";
12         return field:find(","..token:lower()..",", 1, true) ~= nil;
13 end
14
15 return http;