dicom-microscopy-viewer-changed
Version:
Interactive web-based viewer for DICOM Microscopy Images
21 lines (14 loc) • 399 B
JavaScript
;
var define = require('define-properties');
var shimUnscopables = require('es-shim-unscopables');
var getPolyfill = require('./polyfill');
module.exports = function shimFlat() {
var polyfill = getPolyfill();
define(
Array.prototype,
{ flat: polyfill },
{ flat: function () { return Array.prototype.flat !== polyfill; } }
);
shimUnscopables('flat');
return polyfill;
};