jasmine-core 6.0.0 → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,6 +43,9 @@ var getJasmineRequireObj = (function() {
43
43
  return jasmineRequire;
44
44
  }
45
45
 
46
+ const loadedAsBrowserEsm =
47
+ globalThis.document && !globalThis.document.currentScript;
48
+
46
49
  getJasmineRequire().core = function(jRequire) {
47
50
  const j$ = {};
48
51
  Object.defineProperty(j$, 'private', {
@@ -124,8 +127,7 @@ var getJasmineRequireObj = (function() {
124
127
  j$.private.matchers = jRequire.requireMatchers(jRequire, j$);
125
128
  j$.private.asyncMatchers = jRequire.requireAsyncMatchers(jRequire, j$);
126
129
 
127
- j$.private.loadedAsBrowserEsm =
128
- globalThis.document && !globalThis.document.currentScript;
130
+ j$.private.loadedAsBrowserEsm = loadedAsBrowserEsm;
129
131
 
130
132
  j$.private.deprecateMonkeyPatching(j$, [
131
133
  // These are meant to be set by users.
@@ -12406,5 +12408,5 @@ getJasmineRequireObj().UserContext = function(j$) {
12406
12408
  };
12407
12409
 
12408
12410
  getJasmineRequireObj().version = function() {
12409
- return '6.0.0';
12411
+ return '6.0.1';
12410
12412
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "6.0.0",
4
+ "version": "6.0.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"