Repository URL to install this package:
|
Version:
5.0.0-rc.11 ▾
|
'use strict';
function symbolObservablePonyfill(root) {
var result;
var Symbol = root.Symbol;
if (typeof Symbol === 'function') {
if (Symbol.observable) {
result = Symbol.observable;
} else {
result = Symbol('observable');
Symbol.observable = result;
}
} else {
result = '@@observable';
}
return result;
}
module.exports = symbolObservablePonyfill;
//# sourceMappingURL=ponyfill.js.map