(object)
| 37 | } |
| 38 | |
| 39 | function shallowClone(object) { |
| 40 | var result = {}; |
| 41 | for (var key in object) if (object.hasOwnProperty(key)) |
| 42 | result[key] = object[key]; |
| 43 | return result; |
| 44 | } |
| 45 | |
| 46 | function match(string, word) { |
| 47 | var len = string.length; |
no outgoing calls
no test coverage detected