build: enable JS semicolons (#22783)
This commit is contained in:
parent
24e21467b9
commit
5d657dece4
354 changed files with 21512 additions and 21510 deletions
12
spec/fixtures/module/access-blink-apis.js
vendored
12
spec/fixtures/module/access-blink-apis.js
vendored
|
@ -1,17 +1,17 @@
|
|||
window.delayed = true
|
||||
window.delayed = true;
|
||||
|
||||
global.getGlobalNames = () => {
|
||||
return Object.getOwnPropertyNames(global)
|
||||
.filter(key => typeof global[key] === 'function')
|
||||
.filter(key => key !== 'WebView')
|
||||
.sort()
|
||||
}
|
||||
.sort();
|
||||
};
|
||||
|
||||
const atPreload = global.getGlobalNames()
|
||||
const atPreload = global.getGlobalNames();
|
||||
|
||||
window.addEventListener('load', () => {
|
||||
window.test = {
|
||||
atPreload,
|
||||
atLoad: global.getGlobalNames()
|
||||
}
|
||||
})
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue