* Transform a css string using postcss. * @param {string} contents the css text to transform * @param {!Object=} opt_filename the filename of the file being transformed. Used for sourcemaps generation. * @return {!Promise } that resolves with the css content after * pro
(contents, opt_filename)
| 85 | * processing |
| 86 | */ |
| 87 | async function transformCssString(contents, opt_filename) { |
| 88 | const hash = md5(contents); |
| 89 | return transformCss(contents, hash, opt_filename); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * 'Jsify' a CSS file - Adds vendor specific css prefixes to the css file, |
no test coverage detected