Code coverage report for lib\atoms\Response.js

Statements: 33.33% (2 / 6)      Branches: 0% (0 / 2)      Functions: 0% (0 / 1)      Lines: 33.33% (2 / 6)      Ignored: none     

All files » lib\atoms\ » Response.js
1 2 3 4 5 6 7 8 9 10  1               1
'use strict';
var Response = function Response(from) {
    if (this instanceof Response) {
        this.from = from;
        return this;
    }
    return new Response(from);
};
 
module.exports = Response;