1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/security-logger.js

10 lines
283 B
JavaScript
Raw Normal View History

export const writeWarning = () => {
// eslint-disable-next-line no-console
console.log(
`%cThis is a warning!
Please do not use any JavaScript using copy/paste
from elsewhere on the web or any person.`,
'color:white;font-size: 1.8em;background:red'
);
};