static-injector 6.0.0 → 6.0.2
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.
- package/import/index.d.ts +1 -0
- package/index.js +5 -5
- package/index.js.map +3 -3
- package/index.mjs +5 -5
- package/index.mjs.map +3 -3
- package/package.json +5 -3
- package/readme.md +2 -2
package/index.mjs
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
// src/import/di/interface/provider.ts
|
|
2
|
+
function isEnvironmentProviders(value) {
|
|
3
|
+
return value && !!value.ɵproviders;
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
// src/import/errors.ts
|
|
2
7
|
var RuntimeError = class extends Error {
|
|
3
8
|
constructor(code, message) {
|
|
@@ -344,11 +349,6 @@ var INJECTOR = new InjectionToken(
|
|
|
344
349
|
// Special value used by Ivy to identify `Injector`.
|
|
345
350
|
);
|
|
346
351
|
|
|
347
|
-
// src/import/di/interface/provider.ts
|
|
348
|
-
function isEnvironmentProviders(value) {
|
|
349
|
-
return value && !!value.ɵproviders;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
352
|
// src/import/di/internal_tokens.ts
|
|
353
353
|
var INJECTOR_DEF_TYPES = new InjectionToken("");
|
|
354
354
|
|