Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
perf: use node: prefix to bypass require.cache call for builtins (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Sep 10, 2023
1 parent a5b4c27 commit 3343dfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict'

const { readFileSync } = require('fs')
const { createServer } = require('http')
const { join } = require('path')
const { readFileSync } = require('node:fs')
const { createServer } = require('node:http')
const { join } = require('node:path')
const t = require('tap')
const fastifyBuilder = require('fastify')
const soap = require('soap')
Expand Down

0 comments on commit 3343dfc

Please sign in to comment.