UNPKG

1ff-chat-ui

Version:

chatbot to communicate with taught ai

7 lines 244 B
/** * Minifies CSS code by removing newlines and excess whitespace. * * @param {string} css - The CSS code to be minified. * @returns {string} The minified CSS code. */ export default (css) => css.replace(/\n/g, '').replace(/\s\s+/g, ' ');