test-simple-function.js (232B)
1 "use strict"; 2 3 window.test = function () { 4 console.log("simple function"); 5 }; 6 7 window.test_bound_target = function () { 8 console.log("simple bound target function"); 9 }; 10 11 window.test_bound = window.test_bound_target.bind(window);