UNPKG

node-ff

Version:
54 lines 2.3 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.WriteFile = void 0; class WriteFile { constructor(writeFile, check) { this.writeFile = writeFile; this.check = check; } execute({ filename, text, directory_name, formate, json, }) { return __awaiter(this, void 0, void 0, function* () { try { if (typeof filename === 'object') { filename.forEach((file, i) => __awaiter(this, void 0, void 0, function* () { yield this.writeFile.write({ filename: file, text: text[i], directory_name: typeof directory_name === 'object' ? directory_name[i] : directory_name, formate: typeof formate === 'object' ? formate[i] : formate, json: typeof json === 'object' ? json[i] : json, }); })); } else { yield this.writeFile.write({ filename, text, directory_name, formate, json, }); } } catch (_a) { this.check.checkWrite({ filename, text, }); } }); } } exports.WriteFile = WriteFile; //# sourceMappingURL=index.js.map