/**
 * Minified by jsDelivr using Terser v5.39.0.
 * Original file: /npm/@omar-sarfraz/caesar-cipher@2.0.1/build/index.js
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
"use strict";var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:!0}),exports.decrypt=exports.encrypt=void 0;const Cipher_1=__importDefault(require("./Cipher")),encrypt=(e,r)=>{if(!e||e<1||"number"!=typeof e)throw new Error("Key must be a positive integer greater than 0");return new Cipher_1.default(e).encrypt(r)};exports.encrypt=encrypt;const decrypt=(e,r)=>{if(!e||e<1||"number"!=typeof e)throw new Error("Key must be a positive integer greater than 0");return new Cipher_1.default(e).decrypt(r)};exports.decrypt=decrypt;
//# sourceMappingURL=/sm/68b47bf0c1a282282337735cd9a514a2ebea1e191ef94f2250b7d7a06f055ffc.map