UNPKG

ember-introjs

Version:
13 lines (9 loc) 250 B
'use strict'; const FastBootHeaders = require('./fastboot-headers'); class FastbootResponse { constructor(response) { this.headers = new FastBootHeaders(response._headers); this.statusCode = 200; } } module.exports = FastbootResponse;