resolveModulePath function

String resolveModulePath(
  1. String modulePath
)

Returns the appropriate path for the module.

On web, the path is the same as the module path.

Implementation

String resolveModulePath(String modulePath) {
  return modulePath;
}