Socket
Socket
Sign inDemoInstall

@angular/core

Package Overview
Dependencies
2
Maintainers
1
Versions
810
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-4 to 0.0.0-5

esm/private_export.metadata.json

8

esm/index.js
/**
* @module
* @description
* Starting point to import all public core APIs.
*/
* @module
* @description
* Starting point to import all public core APIs.
*/
export * from './src/metadata';

@@ -7,0 +7,0 @@ export * from './src/util';

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { NgZone } from './zone/ng_zone';

@@ -117,3 +108,3 @@ import { isBlank, isPresent, assertionsEnabled, lockMode, isPromise } from '../src/facade/lang';

}
export let PlatformRef_ = class PlatformRef_ extends PlatformRef {
export class PlatformRef_ extends PlatformRef {
constructor(_injector) {

@@ -145,7 +136,9 @@ super();

_applicationDisposed(app) { ListWrapper.remove(this._applications, app); }
};
PlatformRef_ = __decorate([
Injectable(),
__metadata('design:paramtypes', [Injector])
], PlatformRef_);
}
PlatformRef_.decorators = [
{ type: Injectable },
];
PlatformRef_.ctorParameters = [
{ type: Injector, },
];
/**

@@ -173,4 +166,3 @@ * A reference to an Angular application running on a page.

}
let ApplicationRef_1;
export let ApplicationRef_ = ApplicationRef_1 = class ApplicationRef_ extends ApplicationRef {
export class ApplicationRef_ extends ApplicationRef {
constructor(_platform, _zone, _injector) {

@@ -305,3 +297,3 @@ super();

}
var s = ApplicationRef_1._tickScope();
var s = ApplicationRef_._tickScope();
try {

@@ -326,9 +318,13 @@ this._runningTick = true;

get componentTypes() { return this._rootComponentTypes; }
};
}
/** @internal */
ApplicationRef_._tickScope = wtfCreateScope('ApplicationRef#tick()');
ApplicationRef_ = ApplicationRef_1 = __decorate([
Injectable(),
__metadata('design:paramtypes', [PlatformRef_, NgZone, Injector])
], ApplicationRef_);
ApplicationRef_.decorators = [
{ type: Injectable },
];
ApplicationRef_.ctorParameters = [
{ type: PlatformRef_, },
{ type: NgZone, },
{ type: Injector, },
];
/**

@@ -335,0 +331,0 @@ * @internal

/**
* @module
* @description
* Change detection enables data binding in Angular.
*/
* @module
* @description
* Change detection enables data binding in Angular.
*/
export { ChangeDetectionStrategy, ChangeDetectorRef, WrappedValue, SimpleChange, DefaultIterableDiffer, IterableDiffers, KeyValueDiffers, CollectionChangeRecord, KeyValueChangeRecord } from './change_detection/change_detection';
//# sourceMappingURL=change_detection.js.map

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { print, warn } from './facade/lang';

@@ -15,11 +6,10 @@ import { Injectable } from './di/decorators';

let _warnImpl = warn;
export let Console = class Console {
export class Console {
log(message) { print(message); }
// Note: for reporting errors use `DOM.logError()` as it is platform specific
warn(message) { _warnImpl(message); }
};
Console = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], Console);
}
Console.decorators = [
{ type: Injectable },
];
//# sourceMappingURL=console.js.map
/**
* @module
* @description
* The `di` module provides dependency injection container services.
*/
* @module
* @description
* The `di` module provides dependency injection container services.
*/
export { InjectMetadata, OptionalMetadata, InjectableMetadata, SelfMetadata, HostMetadata, SkipSelfMetadata, DependencyMetadata } from './di/metadata';

@@ -7,0 +7,0 @@ // we have to reexport * because Dart and TS export two different sets of types

/**
* Creates a token that can be used in a DI Provider.
*
* ### Example ([live demo](http://plnkr.co/edit/Ys9ezXpj2Mnoy3Uc8KBp?p=preview))
*
* ```typescript
* var t = new OpaqueToken("value");
*
* var injector = Injector.resolveAndCreate([
* provide(t, {useValue: "bindingValue"})
* ]);
*
* expect(injector.get(t)).toEqual("bindingValue");
* ```
*
* Using an `OpaqueToken` is preferable to using strings as tokens because of possible collisions
* caused by multiple providers using the same string as two different tokens.
*
* Using an `OpaqueToken` is preferable to using an `Object` as tokens because it provides better
* error messages.
* @ts2dart_const
*/
* Creates a token that can be used in a DI Provider.
*
* ### Example ([live demo](http://plnkr.co/edit/Ys9ezXpj2Mnoy3Uc8KBp?p=preview))
*
* ```typescript
* var t = new OpaqueToken("value");
*
* var injector = Injector.resolveAndCreate([
* provide(t, {useValue: "bindingValue"})
* ]);
*
* expect(injector.get(t)).toEqual("bindingValue");
* ```
*
* Using an `OpaqueToken` is preferable to using strings as tokens because of possible collisions
* caused by multiple providers using the same string as two different tokens.
*
* Using an `OpaqueToken` is preferable to using an `Object` as tokens because it provides better
* error messages.
* @ts2dart_const
*/
export class OpaqueToken {

@@ -24,0 +24,0 @@ constructor(_desc) {

/**
* A base class for the WrappedException that can be used to identify
* a WrappedException from ExceptionHandler without adding circular
* dependency.
*/
* A base class for the WrappedException that can be used to identify
* a WrappedException from ExceptionHandler without adding circular
* dependency.
*/
export class BaseWrappedException extends Error {

@@ -7,0 +7,0 @@ constructor(message) {

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { isBlank, stringify } from '../../src/facade/lang';

@@ -25,3 +16,3 @@ import { BaseException } from '../../src/facade/exceptions';

}
export let ReflectorComponentResolver = class ReflectorComponentResolver extends ComponentResolver {
export class ReflectorComponentResolver extends ComponentResolver {
resolveComponent(componentType) {

@@ -36,7 +27,6 @@ var metadatas = reflector.annotations(componentType);

clearCache() { }
};
ReflectorComponentResolver = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], ReflectorComponentResolver);
}
ReflectorComponentResolver.decorators = [
{ type: Injectable },
];
//# sourceMappingURL=component_resolver.js.map

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { ComponentResolver } from './component_resolver';

@@ -21,3 +12,3 @@ import { isPresent } from '../../src/facade/lang';

}
export let DynamicComponentLoader_ = class DynamicComponentLoader_ extends DynamicComponentLoader {
export class DynamicComponentLoader_ extends DynamicComponentLoader {
constructor(_compiler) {

@@ -45,7 +36,9 @@ super();

}
};
DynamicComponentLoader_ = __decorate([
Injectable(),
__metadata('design:paramtypes', [ComponentResolver])
], DynamicComponentLoader_);
}
DynamicComponentLoader_.decorators = [
{ type: Injectable },
];
DynamicComponentLoader_.ctorParameters = [
{ type: ComponentResolver, },
];
//# sourceMappingURL=dynamic_component_loader.js.map
/**
* A wrapper around a native element inside of a View.
*
* An `ElementRef` is backed by a render-specific element. In the browser, this is usually a DOM
* element.
*/
* A wrapper around a native element inside of a View.
*
* An `ElementRef` is backed by a render-specific element. In the browser, this is usually a DOM
* element.
*/
// Note: We don't expose things like `Injector`, `ViewContainer`, ... here,

@@ -8,0 +8,0 @@ // i.e. users have to ask for what they need. With that, we can build better analysis tools

@@ -1,13 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import { isBlank, isPresent, looseIdentical } from '../../src/facade/lang';

@@ -23,3 +11,3 @@ import { ListWrapper, StringMapWrapper } from '../../src/facade/collection';

import { uninitialized } from "../change_detection/change_detection_util";
export let ViewUtils = class ViewUtils {
export class ViewUtils {
constructor(_renderer, _appId) {

@@ -40,8 +28,10 @@ this._renderer = _renderer;

}
};
ViewUtils = __decorate([
Injectable(),
__param(1, Inject(APP_ID)),
__metadata('design:paramtypes', [RootRenderer, String])
], ViewUtils);
}
ViewUtils.decorators = [
{ type: Injectable },
];
ViewUtils.ctorParameters = [
{ type: RootRenderer, },
{ type: undefined, decorators: [{ type: Inject, args: [APP_ID,] },] },
];
export function flattenNestedViewRenderNodes(nodes) {

@@ -48,0 +38,0 @@ return _flattenNestedViewRenderNodes(nodes, []);

/**
* This indirection is needed to free up Component, etc symbols in the public API
* to be used by the decorator versions of these annotations.
*/
* This indirection is needed to free up Component, etc symbols in the public API
* to be used by the decorator versions of these annotations.
*/
export { QueryMetadata, ContentChildrenMetadata, ContentChildMetadata, ViewChildrenMetadata, ViewQueryMetadata, ViewChildMetadata, AttributeMetadata } from './metadata/di';

@@ -6,0 +6,0 @@ export { ComponentMetadata, DirectiveMetadata, PipeMetadata, InputMetadata, OutputMetadata, HostBindingMetadata, HostListenerMetadata } from './metadata/directives';

/**
* This is here because DART requires it. It is noop in JS.
*/
* This is here because DART requires it. It is noop in JS.
*/
export function wtfInit() { }
//# sourceMappingURL=wtf_init.js.map

@@ -89,2 +89,10 @@ import { isPresent, isFunction, global, stringify } from '../../src/facade/lang';

}
// API of tsickle for lowering decorators to properties on the class.
if (isPresent(typeOrFunc.ctorParameters)) {
let ctorParameters = typeOrFunc.ctorParameters;
let paramTypes = ctorParameters.map(ctorParam => ctorParam && ctorParam.type);
let paramAnnotations = ctorParameters.map(ctorParam => ctorParam && convertTsickleDecoratorIntoMetadata(ctorParam.decorators));
return this._zipTypesAndAnnotations(paramTypes, paramAnnotations);
}
// API for metadata created by invoking the decorators.
if (isPresent(this._reflect) && isPresent(this._reflect.getMetadata)) {

@@ -111,2 +119,7 @@ var paramAnnotations = this._reflect.getMetadata('parameters', typeOrFunc);

}
// API of tsickle for lowering decorators to properties on the class.
if (isPresent(typeOrFunc.decorators)) {
return convertTsickleDecoratorIntoMetadata(typeOrFunc.decorators);
}
// API for metadata created by invoking the decorators.
if (isPresent(this._reflect) && isPresent(this._reflect.getMetadata)) {

@@ -128,2 +141,12 @@ var annotations = this._reflect.getMetadata('annotations', typeOrFunc);

}
// API of tsickle for lowering decorators to properties on the class.
if (isPresent(typeOrFunc.propDecorators)) {
let propDecorators = typeOrFunc.propDecorators;
let propMetadata = {};
Object.keys(propDecorators).forEach(prop => {
propMetadata[prop] = convertTsickleDecoratorIntoMetadata(propDecorators[prop]);
});
return propMetadata;
}
// API for metadata created by invoking the decorators.
if (isPresent(this._reflect) && isPresent(this._reflect.getMetadata)) {

@@ -151,2 +174,15 @@ var propMetadata = this._reflect.getMetadata('propMetadata', typeOrFunc);

}
function convertTsickleDecoratorIntoMetadata(decoratorInvocations) {
if (!decoratorInvocations) {
return [];
}
return decoratorInvocations.map(decoratorInvocation => {
var decoratorType = decoratorInvocation.type;
var annotationCls = decoratorType.annotationCls;
var annotationArgs = decoratorInvocation.args ? decoratorInvocation.args : [];
var annotation = Object.create(annotationCls.prototype);
annotationCls.apply(annotation, annotationArgs);
return annotation;
});
}
//# sourceMappingURL=reflection_capabilities.js.map
/**
* Provides read-only access to reflection data about symbols. Used internally by Angular
* to power dependency injection and compilation.
*/
* Provides read-only access to reflection data about symbols. Used internally by Angular
* to power dependency injection and compilation.
*/
export class ReflectorReader {
}
//# sourceMappingURL=reflector_reader.js.map

@@ -1,10 +0,1 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Map, MapWrapper } from '../../src/facade/collection';

@@ -16,8 +7,3 @@ import { scheduleMicroTask } from '../../src/facade/lang';

import { Injectable } from '../di/decorators';
/**
* The Testability service provides testing hooks that can be accessed from
* the browser and by services such as Protractor. Each bootstrapped Angular
* application on the page will have an instance of Testability.
*/
export let Testability = class Testability {
export class Testability {
constructor(_ngZone) {

@@ -101,11 +87,10 @@ this._ngZone = _ngZone;

}
};
Testability = __decorate([
Injectable(),
__metadata('design:paramtypes', [NgZone])
], Testability);
/**
* A global registry of {@link Testability} instances for specific elements.
*/
export let TestabilityRegistry = class TestabilityRegistry {
}
Testability.decorators = [
{ type: Injectable },
];
Testability.ctorParameters = [
{ type: NgZone, },
];
export class TestabilityRegistry {
constructor() {

@@ -125,7 +110,7 @@ /** @internal */

}
};
TestabilityRegistry = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], TestabilityRegistry);
}
TestabilityRegistry.decorators = [
{ type: Injectable },
];
TestabilityRegistry.ctorParameters = [];
/* @ts2dart_const */

@@ -132,0 +117,0 @@ class _NoopGetTestability {

@@ -149,2 +149,2 @@ import { ConcreteType, Type } from '../../src/facade/lang';

export declare function makeParamDecorator(annotationCls: any): any;
export declare function makePropDecorator(decoratorCls: any): any;
export declare function makePropDecorator(annotationCls: any): any;

@@ -190,2 +190,3 @@ import { global, isFunction, stringify } from '../../src/facade/lang';

DecoratorFactory.prototype = Object.create(annotationCls.prototype);
DecoratorFactory.annotationCls = annotationCls;
return DecoratorFactory;

@@ -220,9 +221,10 @@ }

ParamDecoratorFactory.prototype = Object.create(annotationCls.prototype);
ParamDecoratorFactory.annotationCls = annotationCls;
return ParamDecoratorFactory;
}
export function makePropDecorator(decoratorCls) {
export function makePropDecorator(annotationCls) {
function PropDecoratorFactory(...args) {
var decoratorInstance = Object.create(decoratorCls.prototype);
decoratorCls.apply(decoratorInstance, args);
if (this instanceof decoratorCls) {
var decoratorInstance = Object.create(annotationCls.prototype);
annotationCls.apply(decoratorInstance, args);
if (this instanceof annotationCls) {
return decoratorInstance;

@@ -240,5 +242,6 @@ }

}
PropDecoratorFactory.prototype = Object.create(decoratorCls.prototype);
PropDecoratorFactory.prototype = Object.create(annotationCls.prototype);
PropDecoratorFactory.annotationCls = annotationCls;
return PropDecoratorFactory;
}
//# sourceMappingURL=decorators.js.map
/**
* Stores error information; delivered via [NgZone.onError] stream.
*/
* Stores error information; delivered via [NgZone.onError] stream.
*/
export class NgZoneError {

@@ -5,0 +5,0 @@ constructor(error, stackTrace) {

/**
* Wraps a test function in an asynchronous test zone. The test will automatically
* complete when all asynchronous calls within this zone are done. Can be used
* to wrap an {@link inject} call.
*
* Example:
*
* ```
* it('...', async(inject([AClass], (object) => {
* object.doSomething.then(() => {
* expect(...);
* })
* });
* ```
*/
* Wraps a test function in an asynchronous test zone. The test will automatically
* complete when all asynchronous calls within this zone are done. Can be used
* to wrap an {@link inject} call.
*
* Example:
*
* ```
* it('...', async(inject([AClass], (object) => {
* object.doSomething.then(() => {
* expect(...);
* })
* });
* ```
*/
export function async(fn) {

@@ -17,0 +17,0 @@ return () => {

@@ -1,12 +0,3 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Injectable } from '../index';
export let Log = class Log {
export class Log {
constructor() {

@@ -23,7 +14,7 @@ this.logItems = [];

result() { return this.logItems.join("; "); }
};
Log = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], Log);
}
Log.decorators = [
{ type: Injectable },
];
Log.ctorParameters = [];
//# sourceMappingURL=logger.js.map

@@ -1,15 +0,3 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { ApplicationRef, Injectable } from '../index';
/**
* A no-op implementation of {@link ApplicationRef}, useful for testing.
*/
export let MockApplicationRef = class MockApplicationRef extends ApplicationRef {
export class MockApplicationRef extends ApplicationRef {
registerBootstrapListener(listener) { }

@@ -28,7 +16,6 @@ registerDisposeListener(dispose) { }

;
};
MockApplicationRef = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], MockApplicationRef);
}
MockApplicationRef.decorators = [
{ type: Injectable },
];
//# sourceMappingURL=mock_application_ref.js.map

@@ -1,16 +0,4 @@

var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Injectable, NgZone } from '../index';
import { EventEmitter, ObservableWrapper } from '../src/facade/async';
/**
* A mock implementation of {@link NgZone}.
*/
export let MockNgZone = class MockNgZone extends NgZone {
export class MockNgZone extends NgZone {
constructor() {

@@ -25,7 +13,7 @@ super({ enableLongStackTrace: false });

simulateZoneExit() { ObservableWrapper.callNext(this.onStable, null); }
};
MockNgZone = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], MockNgZone);
}
MockNgZone.decorators = [
{ type: Injectable },
];
MockNgZone.ctorParameters = [];
//# sourceMappingURL=ng_zone_mock.js.map

@@ -6,6 +6,6 @@ "use strict";

/**
* @module
* @description
* Starting point to import all public core APIs.
*/
* @module
* @description
* Starting point to import all public core APIs.
*/
__export(require('./src/metadata'));

@@ -12,0 +12,0 @@ __export(require('./src/util'));

{
"name": "@angular/core",
"version": "0.0.0-4",
"version": "0.0.0-5",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -7,11 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var ng_zone_1 = require('./zone/ng_zone');

@@ -179,6 +170,8 @@ var lang_1 = require('../src/facade/lang');

PlatformRef_.prototype._applicationDisposed = function (app) { collection_1.ListWrapper.remove(this._applications, app); };
PlatformRef_ = __decorate([
di_1.Injectable(),
__metadata('design:paramtypes', [di_1.Injector])
], PlatformRef_);
PlatformRef_.decorators = [
{ type: di_1.Injectable },
];
PlatformRef_.ctorParameters = [
{ type: di_1.Injector, },
];
return PlatformRef_;

@@ -393,6 +386,10 @@ }(PlatformRef));

ApplicationRef_._tickScope = profile_1.wtfCreateScope('ApplicationRef#tick()');
ApplicationRef_ = __decorate([
di_1.Injectable(),
__metadata('design:paramtypes', [PlatformRef_, ng_zone_1.NgZone, di_1.Injector])
], ApplicationRef_);
ApplicationRef_.decorators = [
{ type: di_1.Injectable },
];
ApplicationRef_.ctorParameters = [
{ type: PlatformRef_, },
{ type: ng_zone_1.NgZone, },
{ type: di_1.Injector, },
];
return ApplicationRef_;

@@ -399,0 +396,0 @@ }(ApplicationRef));

@@ -0,7 +1,7 @@

"use strict";
/**
* @module
* @description
* Change detection enables data binding in Angular.
*/
"use strict";
* @module
* @description
* Change detection enables data binding in Angular.
*/
var change_detection_1 = require('./change_detection/change_detection');

@@ -8,0 +8,0 @@ exports.ChangeDetectionStrategy = change_detection_1.ChangeDetectionStrategy;

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var lang_1 = require('./facade/lang');

@@ -22,6 +13,5 @@ var decorators_1 = require('./di/decorators');

Console.prototype.warn = function (message) { _warnImpl(message); };
Console = __decorate([
decorators_1.Injectable(),
__metadata('design:paramtypes', [])
], Console);
Console.decorators = [
{ type: decorators_1.Injectable },
];
return Console;

@@ -28,0 +18,0 @@ }());

@@ -1,6 +0,1 @@

/**
* @module
* @description
* The `di` module provides dependency injection container services.
*/
"use strict";

@@ -10,2 +5,7 @@ function __export(m) {

}
/**
* @module
* @description
* The `di` module provides dependency injection container services.
*/
var metadata_1 = require('./di/metadata');

@@ -12,0 +12,0 @@ exports.InjectMetadata = metadata_1.InjectMetadata;

"use strict";
/**
* Creates a token that can be used in a DI Provider.
*
* ### Example ([live demo](http://plnkr.co/edit/Ys9ezXpj2Mnoy3Uc8KBp?p=preview))
*
* ```typescript
* var t = new OpaqueToken("value");
*
* var injector = Injector.resolveAndCreate([
* provide(t, {useValue: "bindingValue"})
* ]);
*
* expect(injector.get(t)).toEqual("bindingValue");
* ```
*
* Using an `OpaqueToken` is preferable to using strings as tokens because of possible collisions
* caused by multiple providers using the same string as two different tokens.
*
* Using an `OpaqueToken` is preferable to using an `Object` as tokens because it provides better
* error messages.
* @ts2dart_const
*/
* Creates a token that can be used in a DI Provider.
*
* ### Example ([live demo](http://plnkr.co/edit/Ys9ezXpj2Mnoy3Uc8KBp?p=preview))
*
* ```typescript
* var t = new OpaqueToken("value");
*
* var injector = Injector.resolveAndCreate([
* provide(t, {useValue: "bindingValue"})
* ]);
*
* expect(injector.get(t)).toEqual("bindingValue");
* ```
*
* Using an `OpaqueToken` is preferable to using strings as tokens because of possible collisions
* caused by multiple providers using the same string as two different tokens.
*
* Using an `OpaqueToken` is preferable to using an `Object` as tokens because it provides better
* error messages.
* @ts2dart_const
*/
var OpaqueToken = (function () {

@@ -25,0 +25,0 @@ function OpaqueToken(_desc) {

@@ -8,6 +8,6 @@ "use strict";

/**
* A base class for the WrappedException that can be used to identify
* a WrappedException from ExceptionHandler without adding circular
* dependency.
*/
* A base class for the WrappedException that can be used to identify
* a WrappedException from ExceptionHandler without adding circular
* dependency.
*/
var BaseWrappedException = (function (_super) {

@@ -14,0 +14,0 @@ __extends(BaseWrappedException, _super);

@@ -7,11 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var lang_1 = require('../../src/facade/lang');

@@ -50,6 +41,5 @@ var exceptions_1 = require('../../src/facade/exceptions');

ReflectorComponentResolver.prototype.clearCache = function () { };
ReflectorComponentResolver = __decorate([
decorators_1.Injectable(),
__metadata('design:paramtypes', [])
], ReflectorComponentResolver);
ReflectorComponentResolver.decorators = [
{ type: decorators_1.Injectable },
];
return ReflectorComponentResolver;

@@ -56,0 +46,0 @@ }(ComponentResolver));

@@ -7,11 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var component_resolver_1 = require('./component_resolver');

@@ -58,6 +49,8 @@ var lang_1 = require('../../src/facade/lang');

};
DynamicComponentLoader_ = __decorate([
decorators_1.Injectable(),
__metadata('design:paramtypes', [component_resolver_1.ComponentResolver])
], DynamicComponentLoader_);
DynamicComponentLoader_.decorators = [
{ type: decorators_1.Injectable },
];
DynamicComponentLoader_.ctorParameters = [
{ type: component_resolver_1.ComponentResolver, },
];
return DynamicComponentLoader_;

@@ -64,0 +57,0 @@ }(DynamicComponentLoader));

"use strict";
/**
* A wrapper around a native element inside of a View.
*
* An `ElementRef` is backed by a render-specific element. In the browser, this is usually a DOM
* element.
*/
* A wrapper around a native element inside of a View.
*
* An `ElementRef` is backed by a render-specific element. In the browser, this is usually a DOM
* element.
*/
// Note: We don't expose things like `Injector`, `ViewContainer`, ... here,

@@ -9,0 +9,0 @@ // i.e. users have to ask for what they need. With that, we can build better analysis tools

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
var lang_1 = require('../../src/facade/lang');

@@ -40,7 +28,9 @@ var collection_1 = require('../../src/facade/collection');

};
ViewUtils = __decorate([
decorators_1.Injectable(),
__param(1, decorators_1.Inject(application_tokens_1.APP_ID)),
__metadata('design:paramtypes', [api_1.RootRenderer, String])
], ViewUtils);
ViewUtils.decorators = [
{ type: decorators_1.Injectable },
];
ViewUtils.ctorParameters = [
{ type: api_1.RootRenderer, },
{ type: undefined, decorators: [{ type: decorators_1.Inject, args: [application_tokens_1.APP_ID,] },] },
];
return ViewUtils;

@@ -47,0 +37,0 @@ }());

@@ -0,6 +1,6 @@

"use strict";
/**
* This indirection is needed to free up Component, etc symbols in the public API
* to be used by the decorator versions of these annotations.
*/
"use strict";
* This indirection is needed to free up Component, etc symbols in the public API
* to be used by the decorator versions of these annotations.
*/
var di_1 = require('./metadata/di');

@@ -7,0 +7,0 @@ exports.QueryMetadata = di_1.QueryMetadata;

"use strict";
/**
* This is here because DART requires it. It is noop in JS.
*/
* This is here because DART requires it. It is noop in JS.
*/
function wtfInit() { }
exports.wtfInit = wtfInit;
//# sourceMappingURL=wtf_init.js.map

@@ -120,2 +120,12 @@ "use strict";

}
// API of tsickle for lowering decorators to properties on the class.
if (lang_1.isPresent(typeOrFunc.ctorParameters)) {
var ctorParameters = typeOrFunc.ctorParameters;
var paramTypes_1 = ctorParameters.map(function (ctorParam) { return ctorParam && ctorParam.type; });
var paramAnnotations_1 = ctorParameters.map(function (ctorParam) {
return ctorParam && convertTsickleDecoratorIntoMetadata(ctorParam.decorators);
});
return this._zipTypesAndAnnotations(paramTypes_1, paramAnnotations_1);
}
// API for metadata created by invoking the decorators.
if (lang_1.isPresent(this._reflect) && lang_1.isPresent(this._reflect.getMetadata)) {

@@ -142,2 +152,7 @@ var paramAnnotations = this._reflect.getMetadata('parameters', typeOrFunc);

}
// API of tsickle for lowering decorators to properties on the class.
if (lang_1.isPresent(typeOrFunc.decorators)) {
return convertTsickleDecoratorIntoMetadata(typeOrFunc.decorators);
}
// API for metadata created by invoking the decorators.
if (lang_1.isPresent(this._reflect) && lang_1.isPresent(this._reflect.getMetadata)) {

@@ -159,2 +174,12 @@ var annotations = this._reflect.getMetadata('annotations', typeOrFunc);

}
// API of tsickle for lowering decorators to properties on the class.
if (lang_1.isPresent(typeOrFunc.propDecorators)) {
var propDecorators_1 = typeOrFunc.propDecorators;
var propMetadata_1 = {};
Object.keys(propDecorators_1).forEach(function (prop) {
propMetadata_1[prop] = convertTsickleDecoratorIntoMetadata(propDecorators_1[prop]);
});
return propMetadata_1;
}
// API for metadata created by invoking the decorators.
if (lang_1.isPresent(this._reflect) && lang_1.isPresent(this._reflect.getMetadata)) {

@@ -183,2 +208,15 @@ var propMetadata = this._reflect.getMetadata('propMetadata', typeOrFunc);

exports.ReflectionCapabilities = ReflectionCapabilities;
function convertTsickleDecoratorIntoMetadata(decoratorInvocations) {
if (!decoratorInvocations) {
return [];
}
return decoratorInvocations.map(function (decoratorInvocation) {
var decoratorType = decoratorInvocation.type;
var annotationCls = decoratorType.annotationCls;
var annotationArgs = decoratorInvocation.args ? decoratorInvocation.args : [];
var annotation = Object.create(annotationCls.prototype);
annotationCls.apply(annotation, annotationArgs);
return annotation;
});
}
//# sourceMappingURL=reflection_capabilities.js.map
"use strict";
/**
* Provides read-only access to reflection data about symbols. Used internally by Angular
* to power dependency injection and compilation.
*/
* Provides read-only access to reflection data about symbols. Used internally by Angular
* to power dependency injection and compilation.
*/
var ReflectorReader = (function () {

@@ -7,0 +7,0 @@ function ReflectorReader() {

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var collection_1 = require('../../src/facade/collection');

@@ -17,7 +8,2 @@ var lang_1 = require('../../src/facade/lang');

var decorators_1 = require('../di/decorators');
/**
* The Testability service provides testing hooks that can be accessed from
* the browser and by services such as Protractor. Each bootstrapped Angular
* application on the page will have an instance of Testability.
*/
var Testability = (function () {

@@ -104,12 +90,11 @@ function Testability(_ngZone) {

};
Testability = __decorate([
decorators_1.Injectable(),
__metadata('design:paramtypes', [ng_zone_1.NgZone])
], Testability);
Testability.decorators = [
{ type: decorators_1.Injectable },
];
Testability.ctorParameters = [
{ type: ng_zone_1.NgZone, },
];
return Testability;
}());
exports.Testability = Testability;
/**
* A global registry of {@link Testability} instances for specific elements.
*/
var TestabilityRegistry = (function () {

@@ -131,6 +116,6 @@ function TestabilityRegistry() {

};
TestabilityRegistry = __decorate([
decorators_1.Injectable(),
__metadata('design:paramtypes', [])
], TestabilityRegistry);
TestabilityRegistry.decorators = [
{ type: decorators_1.Injectable },
];
TestabilityRegistry.ctorParameters = [];
return TestabilityRegistry;

@@ -137,0 +122,0 @@ }());

@@ -149,2 +149,2 @@ import { ConcreteType, Type } from '../../src/facade/lang';

export declare function makeParamDecorator(annotationCls: any): any;
export declare function makePropDecorator(decoratorCls: any): any;
export declare function makePropDecorator(annotationCls: any): any;

@@ -193,2 +193,3 @@ "use strict";

DecoratorFactory.prototype = Object.create(annotationCls.prototype);
DecoratorFactory.annotationCls = annotationCls;
return DecoratorFactory;

@@ -228,6 +229,7 @@ }

ParamDecoratorFactory.prototype = Object.create(annotationCls.prototype);
ParamDecoratorFactory.annotationCls = annotationCls;
return ParamDecoratorFactory;
}
exports.makeParamDecorator = makeParamDecorator;
function makePropDecorator(decoratorCls) {
function makePropDecorator(annotationCls) {
function PropDecoratorFactory() {

@@ -238,5 +240,5 @@ var args = [];

}
var decoratorInstance = Object.create(decoratorCls.prototype);
decoratorCls.apply(decoratorInstance, args);
if (this instanceof decoratorCls) {
var decoratorInstance = Object.create(annotationCls.prototype);
annotationCls.apply(decoratorInstance, args);
if (this instanceof annotationCls) {
return decoratorInstance;

@@ -254,3 +256,4 @@ }

}
PropDecoratorFactory.prototype = Object.create(decoratorCls.prototype);
PropDecoratorFactory.prototype = Object.create(annotationCls.prototype);
PropDecoratorFactory.annotationCls = annotationCls;
return PropDecoratorFactory;

@@ -257,0 +260,0 @@ }

"use strict";
/**
* Stores error information; delivered via [NgZone.onError] stream.
*/
* Stores error information; delivered via [NgZone.onError] stream.
*/
var NgZoneError = (function () {

@@ -6,0 +6,0 @@ function NgZoneError(error, stackTrace) {

"use strict";
/**
* Wraps a test function in an asynchronous test zone. The test will automatically
* complete when all asynchronous calls within this zone are done. Can be used
* to wrap an {@link inject} call.
*
* Example:
*
* ```
* it('...', async(inject([AClass], (object) => {
* object.doSomething.then(() => {
* expect(...);
* })
* });
* ```
*/
* Wraps a test function in an asynchronous test zone. The test will automatically
* complete when all asynchronous calls within this zone are done. Can be used
* to wrap an {@link inject} call.
*
* Example:
*
* ```
* it('...', async(inject([AClass], (object) => {
* object.doSomething.then(() => {
* expect(...);
* })
* });
* ```
*/
function async(fn) {

@@ -18,0 +18,0 @@ return function () {

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var index_1 = require('../index');

@@ -30,6 +21,6 @@ var Log = (function () {

Log.prototype.result = function () { return this.logItems.join("; "); };
Log = __decorate([
index_1.Injectable(),
__metadata('design:paramtypes', [])
], Log);
Log.decorators = [
{ type: index_1.Injectable },
];
Log.ctorParameters = [];
return Log;

@@ -36,0 +27,0 @@ }());

@@ -7,15 +7,3 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var index_1 = require('../index');
/**
* A no-op implementation of {@link ApplicationRef}, useful for testing.
*/
var MockApplicationRef = (function (_super) {

@@ -51,6 +39,5 @@ __extends(MockApplicationRef, _super);

;
MockApplicationRef = __decorate([
index_1.Injectable(),
__metadata('design:paramtypes', [])
], MockApplicationRef);
MockApplicationRef.decorators = [
{ type: index_1.Injectable },
];
return MockApplicationRef;

@@ -57,0 +44,0 @@ }(index_1.ApplicationRef));

@@ -7,16 +7,4 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var index_1 = require('../index');
var async_1 = require('../src/facade/async');
/**
* A mock implementation of {@link NgZone}.
*/
var MockNgZone = (function (_super) {

@@ -37,6 +25,6 @@ __extends(MockNgZone, _super);

MockNgZone.prototype.simulateZoneExit = function () { async_1.ObservableWrapper.callNext(this.onStable, null); };
MockNgZone = __decorate([
index_1.Injectable(),
__metadata('design:paramtypes', [])
], MockNgZone);
MockNgZone.decorators = [
{ type: index_1.Injectable },
];
MockNgZone.ctorParameters = [];
return MockNgZone;

@@ -43,0 +31,0 @@ }(index_1.NgZone));

"use strict";
/**
* Public Test Library for unit testing Angular2 Applications. Uses the
* Jasmine framework.
*/
* Public Test Library for unit testing Angular2 Applications. Uses the
* Jasmine framework.
*/
var test_injector_1 = require('./test_injector');

@@ -7,0 +7,0 @@ var lang_1 = require('../src/facade/lang');

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc