stylesModuleUrl function

String stylesModuleUrl(
  1. String stylesheetUrl,
  2. bool shim
)

Implementation

String stylesModuleUrl(String stylesheetUrl, bool shim) {
  return shim
      ? '$stylesheetUrl.shim$moduleSuffix'
      : '$stylesheetUrl$moduleSuffix';
}