Skip to content

Commit

Permalink
perf: use node: prefix to bypass require.cache call for builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Sep 10, 2023
1 parent 66ec946 commit 415ede4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/merge-proto-objects.test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict'

const fs = require('fs')
const fs = require('node:fs')

const { Readable } = require('stream')
const { Readable } = require('node:stream')
const deepmerge = require('../index')
const { test } = require('tape')

Expand Down

0 comments on commit 415ede4

Please sign in to comment.