File: plugin.js

package info (click to toggle)
golang-github-evilsocket-islazy 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: 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";