Skip to content

Commit 2e2b620

Browse files
♻️ refactor(nodes): Use more precise imports.
1 parent d9681d8 commit 2e2b620

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/2-node/2-Node2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Two} from '../1-digit/index.js';
1+
import {Two} from '../1-digit/2-Two.js';
22

33
export function Node2(v, a, b) {
44
this.v = v;

src/2-node/3-Node3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Three} from '../1-digit/index.js';
1+
import {Three} from '../1-digit/3-Three.js';
22

33
export function Node3(v, a, b, c) {
44
this.v = v;

0 commit comments

Comments
 (0)