build(deps-dev): apply updates
[poolifier.git] / examples / typescript / pool.ts
index ab6d4f268b38a76520cf15b919948eae3e9eb924..3d9d9e6f482723cdb634e98bd02a9bbd46df3314 100644 (file)
@@ -1,11 +1,11 @@
-import { dirname, extname, join } from 'path'
-import { fileURLToPath } from 'url'
+import { dirname, extname, join } from 'node:path'
+import { fileURLToPath } from 'node:url'
+import type { MyData, MyResponse } from './worker'
 import {
   DynamicThreadPool,
   FixedThreadPool,
   availableParallelism
 } from 'poolifier'
-import type { MyData, MyResponse } from './worker'
 
 const workerFile = join(
   dirname(fileURLToPath(import.meta.url)),