File: plugin.js

package info (click to toggle)
golang-github-evilsocket-islazy 1.10.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296 kB
  • sloc: sh: 20; javascript: 8; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
function Hello() {
    log("hello world from a plugin!");
    return {
        "foo": 123,
        "bar": true
    };
}

var Text = "Hello world";