UNPKG
style-outline
Version:
latest (0.3.0)
1.1.0
0.3.0
Style Outline
github.com/stremann/style-outline
stremann/style-outline
style-outline
/
index.js
6 lines
(5 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
export
default
function
outline
(
) { [].
forEach
.
call
(
document
.
querySelectorAll
(
'*'
),
el
=>
{ el.
style
.
outline
=
`1px solid #
${(~~(
Math
.random() * (
1
<<
24
))).toString(
16
)}
`
; }); }