area-51/lib/video.js-main/test/sinon.js
2025-01-30 04:21:55 +01:00

12 lines
382 B
JavaScript

/* eslint-disable no-undef */
const s = document.createElement('script');
// on IE11 and Safari 9, load the last supported sinon version
if (/(?:MSIE|Trident\/7.0|Version\/9.*Safari)/.test(navigator.userAgent)) {
s.src = 'https://unpkg.com/sinon@9.2.4/pkg/sinon-no-sourcemaps.js';
} else {
s.src = '/test/base/node_modules/sinon/pkg/sinon.js';
}
document.write(s.outerHTML);