Build: Add `exports` to package.json, export slim & esm builds
[jquery.git] / test / node_smoke_tests / commonjs / lib / ensure_jquery.cjs
blobbe23e990060d7e5851153850a07d55ed9b8186aa
1 "use strict";
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" );
9 };
11 module.exports = { ensureJQuery };