(ctor)
| 954 | } |
| 955 | |
| 956 | function createProperty(ctor) { |
| 957 | return { |
| 958 | __proto__: null, |
| 959 | configurable: true, |
| 960 | enumerable: true, |
| 961 | value: function(options) { |
| 962 | return new ctor(options); |
| 963 | }, |
| 964 | }; |
| 965 | } |
| 966 | |
| 967 | function crc32(data, value = 0) { |
| 968 | if (typeof data !== 'string' && !isArrayBufferView(data)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…