(key)
| 220 | |
| 221 | // Internal helper to generate a function to obtain property `key` from `obj`. |
| 222 | function shallowProperty(key) { |
| 223 | return function(obj) { |
| 224 | return obj == null ? void 0 : obj[key]; |
| 225 | }; |
| 226 | } |
| 227 | |
| 228 | // Internal helper to obtain the `byteLength` property of an object. |
| 229 | var getByteLength = shallowProperty('byteLength'); |
no outgoing calls
no test coverage detected
searching dependent graphs…