(entry)
| 936 | } |
| 937 | |
| 938 | function validateEntry(entry) { |
| 939 | if (entry !== Object(entry)) { |
| 940 | throw new TypeError('Expected [K, V] tuple: ' + entry); |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | function collectionClass(collection) { |
| 945 | return isKeyed(collection) |
no outgoing calls
no test coverage detected