Skip to content

Commit

Permalink
Remove 'node:' prefix from module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitinas committed Aug 30, 2024
1 parent f9e4d6f commit 5cb93ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions filediff-node-module/src/main/diffEngineImports.js.0
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use strict";

import { Worker } from 'node:worker_threads';
import fs from 'node:fs';
import path from 'node:path';
import { Worker } from 'worker_threads';
import fs from 'fs';
import path from 'path';

global.Worker = Worker;
global.fs = fs;
Expand Down

0 comments on commit 5cb93ed

Please sign in to comment.