Code coverage report for asset-builder/index.js

Statements: 100% (4 / 4)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: none     

All files » asset-builder/ » index.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25            1                 1 2             1  
/**
 * Manifest
 * @module asset-builder
 */
'use strict';
 
var Manifest = require('./lib/Manifest.js');
 
/**
 * Create an instance of [Manifest]{@link module:lib/Manifest~Manifest}
 * @see [Manifest]{@link module:lib/Manifest~Manifest}
 * @param {String} path File path to the manifest JSON file
 * @param {Object} options
 * @return {Manifest}
 */
module.exports = function(path, options) {
  return new Manifest(path, options);
};
 
/**
 * The Manifest constructor
 * @see [Manifest]{@link module:lib/Manifest~Manifest}
 */
module.exports.Manifest = Manifest;