(obj)
| 187 | } |
| 188 | |
| 189 | function keys(obj) { |
| 190 | var key_array = []; |
| 191 | for ( var prop in obj ) { |
| 192 | if ( obj.hasOwnProperty(prop) ) key_array.push(prop); |
| 193 | } |
| 194 | return key_array; |
| 195 | } |
| 196 | |
| 197 | function purl( url, strictMode ) { |
| 198 | if ( arguments.length === 1 && url === true ) { |
no outgoing calls
no test coverage detected
searching dependent graphs…