rename node Recipe > NodeRecipe to avoid naming confusion

This commit is contained in:
d98762625 2018-08-31 14:52:14 +01:00
parent f51d924ec9
commit c6a292bccb
2 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ import { sanitise } from "./apiUtils";
* the SyncDish the operate on. However, this Recipe is for the node * the SyncDish the operate on. However, this Recipe is for the node
* environment. * environment.
*/ */
class Recipe { class NodeRecipe {
/** /**
* Recipe constructor * Recipe constructor
@ -88,4 +88,4 @@ class Recipe {
} }
} }
export default Recipe; export default NodeRecipe;

View file

@ -8,7 +8,7 @@
import Dish from "../core/Dish"; import Dish from "../core/Dish";
import SyncDish from "./SyncDish"; import SyncDish from "./SyncDish";
import Recipe from "./Recipe"; import NodeRecipe from "./NodeRecipe";
import OperationConfig from "./config/OperationConfig.json"; import OperationConfig from "./config/OperationConfig.json";
import { sanitise } from "./apiUtils"; import { sanitise } from "./apiUtils";
import ExludedOperationError from "../core/errors/ExcludedOperationError"; import ExludedOperationError from "../core/errors/ExcludedOperationError";
@ -242,7 +242,7 @@ export function bake(operations){
* @throws {TypeError} if invalid recipe given. * @throws {TypeError} if invalid recipe given.
*/ */
return function(input, recipeConfig) { return function(input, recipeConfig) {
const recipe = new Recipe(recipeConfig); const recipe = new NodeRecipe(recipeConfig);
const dish = ensureIsDish(input); const dish = ensureIsDish(input);
return recipe.execute(dish); return recipe.execute(dish);
}; };
@ -259,7 +259,7 @@ export function explainExludedFunction(name) {
const func = () => { const func = () => {
throw new ExludedOperationError(`Sorry, the ${name} operation is not available in the Node.js version of CyberChef.`); throw new ExludedOperationError(`Sorry, the ${name} operation is not available in the Node.js version of CyberChef.`);
}; };
// Add opName prop so Recipe can handle it, just like wrap does. // Add opName prop so NodeRecipe can handle it, just like wrap does.
func.opName = name; func.opName = name;
return func; return func;
} }