11cb0ef41Sopenharmony_ciexport function initialize() {
21cb0ef41Sopenharmony_ci  if (this != null) {
31cb0ef41Sopenharmony_ci    throw new Error('hook function must not be bound to loader instance');
41cb0ef41Sopenharmony_ci  }
51cb0ef41Sopenharmony_ci}
61cb0ef41Sopenharmony_ci
71cb0ef41Sopenharmony_ciexport function resolve(url, _, next) {
81cb0ef41Sopenharmony_ci  if (this != null) {
91cb0ef41Sopenharmony_ci    throw new Error('hook function must not be bound to loader instance');
101cb0ef41Sopenharmony_ci  }
111cb0ef41Sopenharmony_ci
121cb0ef41Sopenharmony_ci  return next(url);
131cb0ef41Sopenharmony_ci}
141cb0ef41Sopenharmony_ci
151cb0ef41Sopenharmony_ciexport function load(url, _, next) {
161cb0ef41Sopenharmony_ci  if (this != null) {
171cb0ef41Sopenharmony_ci    throw new Error('hook function must not be bound to loader instance');
181cb0ef41Sopenharmony_ci  }
191cb0ef41Sopenharmony_ci
201cb0ef41Sopenharmony_ci  return next(url);
211cb0ef41Sopenharmony_ci}
22