7 lines
258 B
JavaScript
7 lines
258 B
JavaScript
// Error: Unsupported circular dependency between test/feature/Modules/ImportCircular.module.js and test/feature/Modules/resources/clockwise.js
|
|
|
|
import {clockwise} from './resources/clockwise.js';
|
|
export function counterclockwise() {
|
|
return clockwise();
|
|
}
|