dalisoft/nanoexpress

View on GitHub
src/helpers/is-http-code.js

Summary

Maintainability
A
0 mins
Test Coverage
export default (code) => {
  code = +code;
  if (typeof code === 'number' && code > 100 && code < 600) {
    return true;
  }
  return false;
};