(type, obj)
| 271 | |
| 272 | // Safe object type checking |
| 273 | function is(type, obj) { |
| 274 | return objectType(obj) === type; |
| 275 | } |
| 276 | |
| 277 | // Based on Java's String.hashCode, a simple but not |
| 278 | // rigorously collision resistant hashing function |
no test coverage detected