mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
17 lines
216 B
JavaScript
17 lines
216 B
JavaScript
|
import { TagsInput } from './tag_input';
|
||
|
|
||
|
class Meme {
|
||
|
constructor() {
|
||
|
alert('xss');
|
||
|
}
|
||
|
|
||
|
meme() {
|
||
|
console.log('meme');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const meme = new Meme();
|
||
|
|
||
|
meme.meme();
|
||
|
|
||
|
new TagsInput(null);
|