855.index.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. "use strict";
  2. exports.id = 855;
  3. exports.ids = [855];
  4. exports.modules = {
  5. /***/ 66855:
  6. /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
  7. Object.defineProperty(exports, "__esModule", ({ value: true }));
  8. const getWoof_1 = __webpack_require__(76993);
  9. function woof(...args) {
  10. const woof = getWoof_1.default(args);
  11. console.log(`
  12. | |
  13. /| |\\
  14. | | | |
  15. | |/-------\\| |
  16. \\ /
  17. | \\ / |
  18. | \\o/ \\o/ |
  19. | | | |
  20. \\/ | | \\/
  21. | | | |
  22. \\ ( ) /
  23. \\_/ \\_/ /-----\\
  24. \\U/ --( ${woof} )
  25. \\-----/
  26. `);
  27. }
  28. exports.default = woof;
  29. /***/ }),
  30. /***/ 76993:
  31. /***/ ((__unused_webpack_module, exports) => {
  32. Object.defineProperty(exports, "__esModule", ({ value: true }));
  33. const woofs = {
  34. en: 'Woof!',
  35. he: ' !הב ',
  36. ru: ' Гав!',
  37. es: 'Guau!',
  38. cs: ' Haf!',
  39. uk: ' Гав!',
  40. };
  41. function getWoof(args) {
  42. const options = args.pop();
  43. let lang = 'en';
  44. if (typeof options.language === 'string' &&
  45. Object.keys(woofs).includes(options.language)) {
  46. lang = options.language;
  47. }
  48. return woofs[lang];
  49. }
  50. exports.default = getWoof;
  51. /***/ })
  52. };
  53. ;
  54. //# sourceMappingURL=855.index.js.map