Class zebkit.Dummy | <zebkit> |
Dummy class that implements nothing but can be useful to instantiate anonymous classes with some on "the fly" functionality:
// instantiate and use zebkit class with method "a()" implemented
var ac = new zebkit.Dummy([
function a() {
...
}
]);
// use it
ac.a();
zebkit.Dummy
(
)