kiutils
Version:
🎑 (Library) an Javascript library that provide various utilities, including Image manipulation tools, Discord-related utilities, and a logger.
19 lines • 521 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.print = void 0;
/**
* Prints the input to the console as string
* @param {any} input - The text to print
* @returns {void}
* @example
* const { print } = require("kiutils")
* print("Hello World")
*/
function print(input) {
if (input === undefined || input === null) {
throw new Error("The parameter 'input' is missing");
}
console.log(String(input));
}
exports.print = print;
//# sourceMappingURL=print.js.map
;