mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 06:30:07 +01:00
17 lines
No EOL
216 B
JavaScript
17 lines
No EOL
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); |