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