Refactor <webview> tag tests (#12886)
This commit is contained in:
parent
cc2cd95ec5
commit
fc34076c2b
7 changed files with 632 additions and 635 deletions
|
@ -1,5 +1,12 @@
|
|||
try {
|
||||
console.log([typeof process, typeof setImmediate, typeof global, typeof Buffer, typeof global.Buffer].join(' '))
|
||||
const types = {
|
||||
process: typeof process,
|
||||
setImmediate: typeof setImmediate,
|
||||
global: typeof global,
|
||||
Buffer: typeof Buffer,
|
||||
'global.Buffer': typeof global.Buffer
|
||||
}
|
||||
console.log(JSON.stringify(types))
|
||||
} catch (e) {
|
||||
console.log(e.message)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue