UNPKG

pretty-easy-rgb-to-hex

Version:
13 lines 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @description * Returns a instance of an Error class * with a message from an input * * @export * @param {string} info * @returns {Error} */ exports.returnError = function (info) { return new Error(info); }; //# sourceMappingURL=error.js.map