Correct documentation

This commit is contained in:
j433866 2019-07-01 13:42:06 +01:00
parent 86c37bab3f
commit ba4740a245

View file

@ -49,8 +49,8 @@ self.postMessage({
* options: {Object}, * options: {Object},
* progress: {number}, * progress: {number},
* step: {boolean}, * step: {boolean},
* inputNum: {number} | undefined * [inputNum=-1]: {number}
* } | undefined * }
* } * }
*/ */
self.addEventListener("message", function(e) { self.addEventListener("message", function(e) {
@ -105,7 +105,7 @@ async function bake(data) {
const response = await self.chef.bake( const response = await self.chef.bake(
data.input, // The user's input data.input, // The user's input
data.recipeConfig, // The configuration of the recipe data.recipeConfig, // The configuration of the recipe
data.options // Options set by the user data.options // Options set by the user
); );
const transferable = (data.input instanceof ArrayBuffer) ? [data.input] : undefined; const transferable = (data.input instanceof ArrayBuffer) ? [data.input] : undefined;