(node)
| 8301 | function lst(arr) { return arr[arr.length-1]; } |
| 8302 | |
| 8303 | var selectInput = function(node) { node.select(); }; |
| 8304 | if (ios) // Mobile Safari apparently has a bug where select() is broken. |
| 8305 | selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; }; |
| 8306 | else if (ie) // Suppress mysterious IE10 errors |
no outgoing calls
no test coverage detected