* Wrapper for the asynchronous transformCssString that is used by transformCssSync() * in build-system/tasks/css/jsify-css-sync.js. * * @return {function(string, !Object=, !Object=): ReturnType }
()
| 9 | * @return {function(string, !Object=, !Object=): ReturnType<transformCssString>} |
| 10 | */ |
| 11 | function init() { |
| 12 | return function (cssStr, opt_filename) { |
| 13 | return Promise.resolve(transformCssString(cssStr, opt_filename)); |
| 14 | }; |
| 15 | } |
| 16 | module.exports = init; |
nothing calls this directly
no test coverage detected