mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
19 lines
503 B
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = doSeries;
|
|
|
|
var _eachOfSeries = require('../eachOfSeries');
|
|
|
|
var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function doSeries(fn) {
|
|
return function (obj, iteratee, callback) {
|
|
return fn(_eachOfSeries2.default, obj, iteratee, callback);
|
|
};
|
|
}
|
|
module.exports = exports['default'];
|