kumabook/spread_beaver_frontend

View on GitHub
lib/utils/need_redirect_error.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function NeedRedirectError(path) {
  this.path = path;
}

NeedRedirectError.prototype.toString = function toString() {
  return `NeedRedirectError(${this.path})`;
};