pretty-easy-rgb-to-hex
Version:
Converts an rgb color to it's corresponding HEX color value
13 lines • 333 B
JavaScript
;
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