blob: cb0642677409593e20e0e4280ca1e6c25d02fae5 [file] [log] [blame] [edit]
>>>
experimentalBootstrap = document
.querySelectorAll('link')
.any((link) => link.attributes['rel'] ==
'import' && link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML);
<<<
experimentalBootstrap = document.querySelectorAll('link').any(
(link) =>
link.attributes['rel'] == 'import' &&
link.attributes['href'] == POLYMER_EXPERIMENTAL_HTML,
);