summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js
blob: f375b5fb3aa3920204e342dc8dad2531e6d4f681 (plain)
1
2
3
4
5
6
if ("Deno" in globalThis && typeof globalThis.Deno === 'object') {
  require('./helper.js');
  console.log('deno preinstall.js');
} else {
  console.log('node preinstall.js');
}