3 const assert = require( "node:assert" );
5 // Check if the object we got is the jQuery object by invoking a basic API.
6 const ensureJQuery = ( jQuery ) => {
7 assert( /^jQuery/.test( jQuery.expando ),
8 "jQuery.expando was not detected, the jQuery bootstrap process has failed" );
11 module.exports = { ensureJQuery };