6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
"use strict";
|
|
|
|
// Bundlers are able to synchronously require an ESM module from a CommonJS one.
|
|
const { jQuery } = require( "../../dist-module/jquery.module.js" );
|
|
module.exports = jQuery;
|