mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
14 lines
211 B
JavaScript
14 lines
211 B
JavaScript
var Promise = require('../../utils/promise');
|
|
|
|
/**
|
|
Initialize the generator
|
|
|
|
@param {Output}
|
|
@return {Output}
|
|
*/
|
|
function onFinish(output) {
|
|
return Promise(output);
|
|
}
|
|
|
|
module.exports = onFinish;
|