(f)
| 144 | { selectInput = function(node) { try { node.select(); } catch(_e) {} }; } |
| 145 | |
| 146 | function bind(f) { |
| 147 | var args = Array.prototype.slice.call(arguments, 1); |
| 148 | return function(){return f.apply(null, args)} |
| 149 | } |
| 150 | |
| 151 | function copyObj(obj, target, overwrite) { |
| 152 | if (!target) { target = {}; } |
no outgoing calls
no test coverage detected