aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/symbol-observable
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
commit6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch)
treec1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/symbol-observable
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/symbol-observable')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/CHANGELOG.md177
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/README.md70
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/es/index.js19
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/es/ponyfill.js34
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/index.d.ts8
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/index.js1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/index.js29
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/ponyfill.js40
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/license22
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/package.json50
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.d.ts2
-rw-r--r--sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.js1
12 files changed, 0 insertions, 453 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/CHANGELOG.md b/sandbox/testAppNevena/Front/node_modules/symbol-observable/CHANGELOG.md
deleted file mode 100644
index 168dd883..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/CHANGELOG.md
+++ /dev/null
@@ -1,177 +0,0 @@
-# [4.0.0](https://github.com/blesh/symbol-observable/compare/3.0.0...4.0.0) (2021-04-15)
-
-
-### Bug Fixes
-
-* If Symbol.for doesn't exist, just use Symbol ([ef81924](https://github.com/blesh/symbol-observable/commit/ef81924c506ba2fcc171a9b9b78a7a290fbff7b2)), closes [#53](https://github.com/blesh/symbol-observable/issues/53)
-
-
-### Code Refactoring
-
-* Revert to `symbol` from `unique symbol`, the latter caused compatibility issues and provided no real benefit. ([72ce7dc](https://github.com/blesh/symbol-observable/commit/72ce7dcc5d22f8a67ec928b61e879e1ded7a0869))
-
-
-### BREAKING CHANGES
-
-* Following the advice of the TypeScript team, the type for `Symbol.observable` is reverted back to `symbol` from `unique symbol`. This is to improve compatibility with other libraries using this module. Sincerely sorry for the trashing. Getting the types right for modules is hard. If this continues to cause issues for you, please file an issue with the [TypeScript project](https://github.com/microsoft/typescript).
-
-
-
-# [3.0.0](https://github.com/blesh/symbol-observable/compare/2.0.3...3.0.0) (2020-11-02)
-
-
-### Bug Fixes
-
-* **TypeScript:** `Symbol.observable` is now `unique symbol`. ([2ef1476](https://github.com/blesh/symbol-observable/commit/2ef147644cf78538b28c3fd9e66a3b8d569a1978)), closes [#41](https://github.com/blesh/symbol-observable/issues/41)
-* **TypeScript:** `Symbol[Symbol.observable]` is no longer incorrectly defined ([fe4301f](https://github.com/blesh/symbol-observable/commit/fe4301f37b54162e1a2db91e79c5b33d652496f1))
-
-
-### BREAKING CHANGES
-
-* **TypeScript:** Older versions of `@types/node` will clash with this, because `@types/node` incorrectly defined `Symbol.observable` has `symbol` and not `unique symbol`. Update to `@types/node@14.14.6` or higher.
-
-
-
-## [2.0.3](https://github.com/blesh/symbol-observable/compare/2.0.2...2.0.3) (2020-09-30)
-
-### Bug Fixes
-
-- **package.json** ponyfill.d.ts added to package ([b25f5bf](https://github.com/blesh/symbol-observable/commit/b25f5bfe7425ad21f510428795de8b38aee70b2e))
-
-## [2.0.2](https://github.com/blesh/symbol-observable/compare/2.0.1...2.0.2) (2020-09-29)
-
-### Bug Fixes
-
-- **TypeScript** ponyfill types added ([10d2ec8](https://github.com/blesh/symbol-observable/commit/10d2ec8f0809ac9134be91378fc45c3578f675d4))
-
-## [2.0.1](https://github.com/blesh/symbol-observable/compare/2.0.0...2.0.1) (2020-09-04)
-
-### Bug Fixes
-
-- **package.json:** es/ponyfill.js no longer typoed ([ad2c079](https://github.com/blesh/symbol-observable/commit/ad2c079c71536eaf972101a25eb18f5bca94ab62))
-- Resolve issues in environments with frozen Symbol ([2323882](https://github.com/blesh/symbol-observable/commit/23238827ea234188b11774f43afcb5c8deeb278e))
-
-# [2.0.0](https://github.com/blesh/symbol-observable/compare/1.2.0...2.0.0) (2020-09-01)
-
-### Bug Fixes
-
-- Resolve issues in environments with frozen Symbol ([2323882](https://github.com/blesh/symbol-observable/commit/23238827ea234188b11774f43afcb5c8deeb278e))
-
-**BREAKING CHANGE**: This moves to using `Symbol.for` to create the symbol instance. It's _possible_ that some runtimes that support `Symbol` do not support `Symbol.for`. Therefor, I'm marking this as a breaking change. If you find that you hit this issue, please report it. You can work around it by polyfilling `Symbol.for`.
-
-<a name="1.2.0"></a>
-
-# [1.2.0](https://github.com/blesh/symbol-observable/compare/1.1.0...v1.2.0) (2018-01-26)
-
-### Bug Fixes
-
-- **TypeScript:** Remove global Symbol declaration ([427c3d7](https://github.com/blesh/symbol-observable/commit/427c3d7))
-- common js usage example (#30) ([42c2ffa](https://github.com/blesh/symbol-observable/commit/42c2ffa))
-
-### Features
-
-- **bundlers:** Add module and main entries in package.json (#33) ([97673e1](https://github.com/blesh/symbol-observable/commit/97673e1))
-
-<a name="1.1.0"></a>
-
-# [1.1.0](https://github.com/blesh/symbol-observable/compare/1.0.4...v1.1.0) (2017-11-28)
-
-### Bug Fixes
-
-- **TypeScript:** update TS to 2.0, fix typings ([e08474e](https://github.com/blesh/symbol-observable/commit/e08474e)), closes [#27](https://github.com/blesh/symbol-observable/issues/27)
-
-### Features
-
-- **browser:** Fully qualified import for native esm browser support (#31) ([8ae5f8e](https://github.com/blesh/symbol-observable/commit/8ae5f8e))
-- **index.d.ts:** add type info to Symbol.observable ([e4be157](https://github.com/blesh/symbol-observable/commit/e4be157))
-
-<a name="1.0.4"></a>
-
-## [1.0.4](https://github.com/blesh/symbol-observable/compare/1.0.3...v1.0.4) (2016-10-13)
-
-### Bug Fixes
-
-- **global:** global variable location no longer assumes `module` exists ([4f85ede](https://github.com/blesh/symbol-observable/commit/4f85ede)), closes [#24](https://github.com/blesh/symbol-observable/issues/24)
-
-<a name="1.0.3"></a>
-
-## [1.0.3](https://github.com/blesh/symbol-observable/compare/1.0.2...v1.0.3) (2016-10-11)
-
-### Bug Fixes
-
-- **mozilla addons support:** fix obtaining global object (#23) ([38da34d](https://github.com/blesh/symbol-observable/commit/38da34d)), closes [#23](https://github.com/blesh/symbol-observable/issues/23)
-
-<a name="1.0.2"></a>
-
-## [1.0.2](https://github.com/blesh/symbol-observable/compare/1.0.1...v1.0.2) (2016-08-09)
-
-### Bug Fixes
-
-- **ECMAScript 3**: ensure output is ES3 compatible ([3f37af3](https://github.com/blesh/symbol-observable/commit/3f37af3))
-
-<a name="1.0.1"></a>
-
-## [1.0.1](https://github.com/blesh/symbol-observable/compare/1.0.0...v1.0.1) (2016-06-15)
-
-### Bug Fixes
-
-- **bundlers:** fix issue that caused some bundlers not to be able to locate `/lib` (#19) ([dd8fdfe](https://github.com/blesh/symbol-observable/commit/dd8fdfe)), closes [(#19](https://github.com/(/issues/19) [#17](https://github.com/blesh/symbol-observable/issues/17)
-
-<a name="1.0.0"></a>
-
-# [1.0.0](https://github.com/blesh/symbol-observable/compare/0.2.4...v1.0.0) (2016-06-13)
-
-### Bug Fixes
-
-- **index.js:** use typeof to check for global or window definitions (#8) ([5f4c2c6](https://github.com/blesh/symbol-observable/commit/5f4c2c6))
-- **types:** use default syntax for typedef ([240e3a6](https://github.com/blesh/symbol-observable/commit/240e3a6))
-- **TypeScript:** exported ponyfill now works with TypeScript ([c0b894e](https://github.com/blesh/symbol-observable/commit/c0b894e))
-
-### Features
-
-- **es2015:** add es2015 implementation to support rollup (#10) ([7a41de9](https://github.com/blesh/symbol-observable/commit/7a41de9))
-
-### BREAKING CHANGES
-
-- TypeScript: CJS users will now have to `require('symbol-observable').default` rather than just `require('symbol-observable')` this was done to better support ES6 module bundlers.
-
-<a name="0.2.4"></a>
-
-## [0.2.4](https://github.com/blesh/symbol-observable/compare/0.2.2...v0.2.4) (2016-04-25)
-
-### Bug Fixes
-
-- **IE8 support:** Ensure ES3 support so IE8 is happy ([9aaa7c3](https://github.com/blesh/symbol-observable/commit/9aaa7c3))
-- **Symbol.observable:** should NOT equal `Symbol.for('observable')`. ([3b0fdee](https://github.com/blesh/symbol-observable/commit/3b0fdee)), closes [#7](https://github.com/blesh/symbol-observable/issues/7)
-
-<a name="0.2.3"></a>
-
-## [0.2.3](https://github.com/blesh/symbol-observable/compare/0.2.3...v0.2.3) (2016-04-24)
-
-### Bug Fixes
-
-- **IE8/ECMAScript 3**: Make sure legacy browsers don't choke on a property named `for`. ([9aaa7c](https://github.com/blesh/symbol-observable/9aaa7c))
-
-<a name="0.2.2"></a>
-
-## [0.2.2](https://github.com/sindresorhus/symbol-observable/compare/0.2.1...v0.2.2) (2016-04-19)
-
-### Features
-
-- **TypeScript:** add TypeScript typings file ([befd7a](https://github.com/sindresorhus/symbol-observable/commit/befd7a))
-
-<a name="0.2.1"></a>
-
-## [0.2.1](https://github.com/sindresorhus/symbol-observable/compare/0.2.0...v0.2.1) (2016-04-19)
-
-### Bug Fixes
-
-- **publish:** publish all required files ([5f26c3a](https://github.com/sindresorhus/symbol-observable/commit/5f26c3a))
-
-<a name="0.2.0"></a>
-
-# [0.2.0](https://github.com/sindresorhus/symbol-observable/compare/v0.1.0...v0.2.0) (2016-04-19)
-
-### Bug Fixes
-
-- **Symbol.observable:** ensure Symbol.for(\'observable\') matches Symbol.observable ([ada343f](https://github.com/sindresorhus/symbol-observable/commit/ada343f)), closes [#1](https://github.com/sindresorhus/symbol-observable/issues/1) [#2](https://github.com/sindresorhus/symbol-observable/issues/2)
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/README.md b/sandbox/testAppNevena/Front/node_modules/symbol-observable/README.md
deleted file mode 100644
index cd93e4c3..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/README.md
+++ /dev/null
@@ -1,70 +0,0 @@
-# symbol-observable [![Build Status](https://travis-ci.org/benlesh/symbol-observable.svg?branch=master)](https://travis-ci.org/benlesh/symbol-observable)
-
-> [`Symbol.observable`](https://github.com/zenparsing/es-observable) [pony/polyfill](https://ponyfill.com)
-
-This will polyfill `Symbol.observable` if `Symbol` exists, but will not polyfill `Symbol` if it doesn't exist. Meant to be used as a "ponyfill", meaning you're meant to use the module's exported symbol value as described below. This is all done to ensure that everyone is using the same version of the symbol (or string depending on the environment), as per the nature of symbols in JavaScript.
-
-
-## Install
-
-```
-$ npm install --save symbol-observable
-```
-
-
-## Basic Usage
-
-```js
-const symbolObservable = require('symbol-observable').default;
-
-console.log(symbolObservable);
-//=> Symbol(observable)
-```
-
-```ts
-import Symbol_observable from 'symbol-observable';
-
-console.log(Symbol_observable);
-//=> Symbol(observable)
-```
-
-## Making an object "observable":
-
-You can do something like what you see below to make any object "observable" by libraries like RxJS, XStream and Most.js.
-
-Things to know:
-
-1. It's best if you just use one of the above libraries.
-2. If you're not, but sure you never `next`, `error` or `complete` on your observer after `error` or `complete` was called.
-3. Likewise, make sure you don't `next`, `error` or `complete` after `unsubscribe` is called on the returned object.
-
-```ts
-import Symbol_observable from 'symbol-observable';
-
-someObject[Symbol_observable] = () => {
- return {
- subscribe(observer) {
- const handler = e => observer.next(e);
- someObject.addEventListener('data', handler);
- return {
- unsubscribe() {
- someObject.removeEventListener('data', handler);
- }
- }
- },
- [Symbol_observable]() { return this }
- }
-}
-```
-
-Often, it's not very hard, but it can get tricky in some cases.
-
-## Related
-
-- [is-observable](https://github.com/sindresorhus/is-observable) - Check if a value is an Observable
-- [observable-to-promise](https://github.com/sindresorhus/observable-to-promise) - Convert an Observable to a Promise
-
-
-## License
-
-MIT © [Sindre Sorhus](https://sindresorhus.com) and [Ben Lesh](https://github.com/benlesh)
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/index.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/index.js
deleted file mode 100644
index 4ed892d2..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/* global window */
-import ponyfill from './ponyfill.js';
-
-var root;
-
-if (typeof self !== 'undefined') {
- root = self;
-} else if (typeof window !== 'undefined') {
- root = window;
-} else if (typeof global !== 'undefined') {
- root = global;
-} else if (typeof module !== 'undefined') {
- root = module;
-} else {
- root = Function('return this')();
-}
-
-var result = ponyfill(root);
-export default result;
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/ponyfill.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/ponyfill.js
deleted file mode 100644
index 7f2cd0e2..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/es/ponyfill.js
+++ /dev/null
@@ -1,34 +0,0 @@
-export default function symbolObservablePonyfill(root) {
- var result;
- var Symbol = root.Symbol;
-
- if (typeof Symbol === 'function') {
- if (Symbol.observable) {
- result = Symbol.observable;
- } else {
-
- if (typeof Symbol.for === 'function') {
- // This just needs to be something that won't trample other user's Symbol.for use
- // It also will guide people to the source of their issues, if this is problematic.
- // META: It's a resource locator!
- result = Symbol.for('https://github.com/benlesh/symbol-observable');
- } else {
- // Symbol.for didn't exist! The best we can do at this point is a totally
- // unique symbol. Note that the string argument here is a descriptor, not
- // an identifier. This symbol is unique.
- result = Symbol('https://github.com/benlesh/symbol-observable');
- }
- try {
- Symbol.observable = result;
- } catch (err) {
- // Do nothing. In some environments, users have frozen `Symbol` for security reasons,
- // if it is frozen assigning to it will throw. In this case, we don't care, because
- // they will need to use the returned value from the ponyfill.
- }
- }
- } else {
- result = '@@observable';
- }
-
- return result;
-};
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.d.ts b/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.d.ts
deleted file mode 100644
index c74badea..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-declare const observableSymbol: symbol;
-export default observableSymbol;
-
-declare global {
- export interface SymbolConstructor {
- readonly observable: symbol;
- }
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.js
deleted file mode 100644
index b58e228f..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/index.js
+++ /dev/null
@@ -1 +0,0 @@
-module.exports = require('./lib/index');
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/index.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/index.js
deleted file mode 100644
index de74e784..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/index.js
+++ /dev/null
@@ -1,29 +0,0 @@
-'use strict';
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-
-var _ponyfill = require('./ponyfill.js');
-
-var _ponyfill2 = _interopRequireDefault(_ponyfill);
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
-
-var root; /* global window */
-
-
-if (typeof self !== 'undefined') {
- root = self;
-} else if (typeof window !== 'undefined') {
- root = window;
-} else if (typeof global !== 'undefined') {
- root = global;
-} else if (typeof module !== 'undefined') {
- root = module;
-} else {
- root = Function('return this')();
-}
-
-var result = (0, _ponyfill2['default'])(root);
-exports['default'] = result; \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/ponyfill.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/ponyfill.js
deleted file mode 100644
index 19e2dbd9..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/lib/ponyfill.js
+++ /dev/null
@@ -1,40 +0,0 @@
-'use strict';
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports['default'] = symbolObservablePonyfill;
-function symbolObservablePonyfill(root) {
- var result;
- var _Symbol = root.Symbol;
-
- if (typeof _Symbol === 'function') {
- if (_Symbol.observable) {
- result = _Symbol.observable;
- } else {
-
- if (typeof _Symbol['for'] === 'function') {
- // This just needs to be something that won't trample other user's Symbol.for use
- // It also will guide people to the source of their issues, if this is problematic.
- // META: It's a resource locator!
- result = _Symbol['for']('https://github.com/benlesh/symbol-observable');
- } else {
- // Symbol.for didn't exist! The best we can do at this point is a totally
- // unique symbol. Note that the string argument here is a descriptor, not
- // an identifier. This symbol is unique.
- result = _Symbol('https://github.com/benlesh/symbol-observable');
- }
- try {
- _Symbol.observable = result;
- } catch (err) {
- // Do nothing. In some environments, users have frozen `Symbol` for security reasons,
- // if it is frozen assigning to it will throw. In this case, we don't care, because
- // they will need to use the returned value from the ponyfill.
- }
- }
- } else {
- result = '@@observable';
- }
-
- return result;
-}; \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/license b/sandbox/testAppNevena/Front/node_modules/symbol-observable/license
deleted file mode 100644
index b07f7a86..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/license
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2021 Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
-Copyright (c) 2021 Ben Lesh <ben@benlesh.com>
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/package.json b/sandbox/testAppNevena/Front/node_modules/symbol-observable/package.json
deleted file mode 100644
index bd03d4fe..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/package.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "name": "symbol-observable",
- "version": "4.0.0",
- "description": "Symbol.observable ponyfill",
- "license": "MIT",
- "repository": "blesh/symbol-observable",
- "author": {
- "name": "Ben Lesh",
- "email": "ben@benlesh.com"
- },
- "scripts": {
- "test": "npm run build && mocha && tsc && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill",
- "build": "babel es --out-dir lib",
- "prepublish": "npm test"
- },
- "files": [
- "index.js",
- "ponyfill.js",
- "index.d.ts",
- "ponyfill.d.ts",
- "es/index.js",
- "es/ponyfill.js",
- "lib/index.js",
- "lib/ponyfill.js"
- ],
- "main": "lib/index.js",
- "module": "es/index.js",
- "jsnext:main": "es/index.js",
- "typings": "index.d.ts",
- "keywords": [
- "symbol",
- "observable",
- "observables",
- "ponyfill",
- "polyfill",
- "shim"
- ],
- "devDependencies": {
- "babel-cli": "^6.9.0",
- "babel-preset-es2015": "^6.9.0",
- "babel-preset-es3": "^1.0.0",
- "chai": "^3.5.0",
- "check-es3-syntax-cli": "^0.1.0",
- "mocha": "^2.4.5",
- "typescript": "^4.0.5"
- },
- "engines": {
- "node": ">=0.10"
- }
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.d.ts b/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.d.ts
deleted file mode 100644
index 8ca8852c..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const makeObservableSymbol : (root : object) => symbol;
-export default makeObservableSymbol;
diff --git a/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.js b/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.js
deleted file mode 100644
index 94a400cf..00000000
--- a/sandbox/testAppNevena/Front/node_modules/symbol-observable/ponyfill.js
+++ /dev/null
@@ -1 +0,0 @@
-module.exports = require('./lib/ponyfill');