mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-10 09:05:58 +00:00
e3bf356461
* replace grunt with npm scripts * copy static assets to dist directory * build and copy library variants to dist directory Related to #725
23 lines
267 B
JavaScript
23 lines
267 B
JavaScript
'use strict';
|
|
|
|
module.exports.asyncSeries = function(fns, done) {
|
|
|
|
var idx = 0;
|
|
|
|
function next(err) {
|
|
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
var fn = fns[idx++];
|
|
|
|
if (!fn) {
|
|
return done();
|
|
} else {
|
|
fn(next);
|
|
}
|
|
}
|
|
|
|
next();
|
|
}; |