all files / lib/deps/ promise.js

100% Statements 8/8
83.33% Branches 5/6
100% Functions 1/1
100% Lines 7/7
1 branch Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                   
'use strict';
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
var _lie = require('lie');
 
var _lie2 = _interopRequireDefault(_lie);
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
/* istanbul ignore next */
var PouchPromise = typeof Promise === 'function' ? Promise : _lie2.default;
 
exports.default = PouchPromise;
module.exports = exports['default'];