blob: 398f354c425f313b321c9f166e7f05f0b40c8c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"use strict";
window.test = function () {
console.log("simple function");
};
window.test_bound_target = function () {
console.log("simple bound target function");
};
window.test_bound = window.test_bound_target.bind(window);
|