3martini's picture
Upload folder using huggingface_hub
ef12564 verified
raw
history blame contribute delete
No virus
229 Bytes
const redirectStatus = new Set([301, 302, 303, 307, 308]);
/**
* Redirect code matching
*
* @param {number} code - Status code
* @return {boolean}
*/
export const isRedirect = code => {
return redirectStatus.has(code);
};