polyfill.js 248 B

123456789101112
  1. 'use strict';
  2. var implementation = require('./implementation');
  3. var stream = require('stream');
  4. module.exports = function getPolyfill() {
  5. if (typeof stream.finished === 'function') {
  6. return stream.finished;
  7. }
  8. return implementation;
  9. };