mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 16:39:04 -06:00
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
const http = require('http')
|
|
const isOkStatusCodeRe = /^[2|3]\d+$/
|
|
|
|
module.exports = {
|
|
isOk (code) {
|
|
return code && isOkStatusCodeRe.test(code)
|
|
},
|
|
|
|
getText (code) {
|
|
return http.STATUS_CODES[code] || 'Unknown Status Code'
|
|
},
|
|
}
|