Code coverage report for src/amd.js

Statements: 33.33% (3 / 9)      Branches: 50% (3 / 6)      Functions: 50% (1 / 2)      Lines: 33.33% (3 / 9)     

All files » src/ » amd.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 221 1             1                          
(function (root, factory) {
  Iif (typeof exports === 'object') {
 
    var underscore = require('underscore');
    var backbone = require('backbone');
 
    module.exports = factory(underscore, backbone);
 
  } else Iif (typeof define === 'function' && define.amd) {
 
    define(['underscore', 'backbone'], factory);
 
  } 
}(this, function (_, Backbone) {
  "option strict";
 
  // @include childviewcontainer.js
  return Backbone.ChildViewContainer; 
 
}));