(key)
| 213 | |
| 214 | // Internal helper to generate a function to obtain property `key` from `obj`. |
| 215 | function shallowProperty(key) { |
| 216 | return function(obj) { |
| 217 | return obj == null ? void 0 : obj[key]; |
| 218 | }; |
| 219 | } |
| 220 | |
| 221 | // Internal helper to obtain the `byteLength` property of an object. |
| 222 | var getByteLength = shallowProperty('byteLength'); |
no outgoing calls
no test coverage detected
searching dependent graphs…