solid-ui 2.4.19-alpha-2ef4a34d → 2.4.19-bd105e9f
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/dist/main.js +177 -192
- package/dist/main.js.map +1 -1
- package/lib/versionInfo.js +3 -3
- package/lib/versionInfo.js.map +1 -1
- package/package.json +16 -16
package/dist/main.js
CHANGED
|
@@ -15167,10 +15167,10 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
15167
15167
|
}));
|
|
15168
15168
|
exports.versionInfo = void 0;
|
|
15169
15169
|
var versionInfo = {
|
|
15170
|
-
buildTime: '2022-03-
|
|
15171
|
-
commit: '
|
|
15170
|
+
buildTime: '2022-03-29T21:14:43Z',
|
|
15171
|
+
commit: 'bd105e9f45ad55dd3ec0ab1ab247491a86e48aaa',
|
|
15172
15172
|
npmInfo: {
|
|
15173
|
-
'solid-ui': '2.4.19
|
|
15173
|
+
'solid-ui': '2.4.19',
|
|
15174
15174
|
npm: '6.14.16',
|
|
15175
15175
|
ares: '1.18.1',
|
|
15176
15176
|
brotli: '1.0.9',
|
|
@@ -43592,6 +43592,12 @@ class Term {
|
|
|
43592
43592
|
return this.id;
|
|
43593
43593
|
}
|
|
43594
43594
|
|
|
43595
|
+
// ### Implement hashCode for Immutable.js, since we implement `equals`
|
|
43596
|
+
// https://immutable-js.com/docs/v4.0.0/ValueObject/#hashCode()
|
|
43597
|
+
get hashCode() {
|
|
43598
|
+
return 0;
|
|
43599
|
+
}
|
|
43600
|
+
|
|
43595
43601
|
// ### Returns whether this object represents the same term as the other
|
|
43596
43602
|
equals(other) {
|
|
43597
43603
|
// If both terms were created by this library,
|
|
@@ -43603,12 +43609,6 @@ class Term {
|
|
|
43603
43609
|
this.value === other.value;
|
|
43604
43610
|
}
|
|
43605
43611
|
|
|
43606
|
-
// ### Implement hashCode for Immutable.js, since we implement `equals`
|
|
43607
|
-
// https://immutable-js.com/docs/v4.0.0/ValueObject/#hashCode()
|
|
43608
|
-
hashCode() {
|
|
43609
|
-
return 0;
|
|
43610
|
-
}
|
|
43611
|
-
|
|
43612
43612
|
// ### Returns a plain object representation of this term
|
|
43613
43613
|
toJSON() {
|
|
43614
43614
|
return {
|
|
@@ -44034,17 +44034,16 @@ class N3Lexer {
|
|
|
44034
44034
|
_tokenizeToEnd(callback, inputFinished) {
|
|
44035
44035
|
// Continue parsing as far as possible; the loop will return eventually
|
|
44036
44036
|
let input = this._input;
|
|
44037
|
-
|
|
44037
|
+
const outputComments = this._comments;
|
|
44038
44038
|
while (true) {
|
|
44039
44039
|
// Count and skip whitespace lines
|
|
44040
44040
|
let whiteSpaceMatch, comment;
|
|
44041
44041
|
while (whiteSpaceMatch = this._newline.exec(input)) {
|
|
44042
44042
|
// Try to find a comment
|
|
44043
|
-
if (
|
|
44044
|
-
|
|
44043
|
+
if (outputComments && (comment = this._comment.exec(whiteSpaceMatch[0])))
|
|
44044
|
+
callback(null, { line: this._line, type: 'comment', value: comment[1], prefix: '' });
|
|
44045
44045
|
// Advance the input
|
|
44046
44046
|
input = input.substr(whiteSpaceMatch[0].length, input.length);
|
|
44047
|
-
currentLineLength = input.length;
|
|
44048
44047
|
this._line++;
|
|
44049
44048
|
}
|
|
44050
44049
|
// Skip whitespace on current line
|
|
@@ -44056,10 +44055,9 @@ class N3Lexer {
|
|
|
44056
44055
|
// If the input is finished, emit EOF
|
|
44057
44056
|
if (inputFinished) {
|
|
44058
44057
|
// Try to find a final comment
|
|
44059
|
-
if (
|
|
44060
|
-
|
|
44061
|
-
input = null;
|
|
44062
|
-
emitToken('eof', '', '', this._line, 0);
|
|
44058
|
+
if (outputComments && (comment = this._comment.exec(input)))
|
|
44059
|
+
callback(null, { line: this._line, type: 'comment', value: comment[1], prefix: '' });
|
|
44060
|
+
callback(input = null, { line: this._line, type: 'eof', value: '', prefix: '' });
|
|
44063
44061
|
}
|
|
44064
44062
|
return this._input = input;
|
|
44065
44063
|
}
|
|
@@ -44303,23 +44301,14 @@ class N3Lexer {
|
|
|
44303
44301
|
}
|
|
44304
44302
|
|
|
44305
44303
|
// Emit the parsed token
|
|
44306
|
-
const
|
|
44307
|
-
|
|
44304
|
+
const token = { line: line, type: type, value: value, prefix: prefix };
|
|
44305
|
+
callback(null, token);
|
|
44308
44306
|
this.previousToken = token;
|
|
44309
44307
|
this._previousMarker = type;
|
|
44310
|
-
|
|
44311
44308
|
// Advance to next part to tokenize
|
|
44312
|
-
input = input.substr(length, input.length);
|
|
44309
|
+
input = input.substr(matchLength || match[0].length, input.length);
|
|
44313
44310
|
}
|
|
44314
44311
|
|
|
44315
|
-
// Emits the token through the callback
|
|
44316
|
-
function emitToken(type, value, prefix, line, length) {
|
|
44317
|
-
const start = input ? currentLineLength - input.length : currentLineLength;
|
|
44318
|
-
const end = start + length;
|
|
44319
|
-
const token = { type, value, prefix, line, start, end };
|
|
44320
|
-
callback(null, token);
|
|
44321
|
-
return token;
|
|
44322
|
-
}
|
|
44323
44312
|
// Signals the syntax error through the callback
|
|
44324
44313
|
function reportSyntaxError(self) { callback(self._syntaxError(/^\S*/.exec(input)[0])); }
|
|
44325
44314
|
}
|
|
@@ -45591,7 +45580,7 @@ function inDefaultGraph(quad) {
|
|
|
45591
45580
|
|
|
45592
45581
|
// Creates a function that prepends the given IRI to a local name
|
|
45593
45582
|
function prefix(iri, factory) {
|
|
45594
|
-
return prefixes({ '': iri
|
|
45583
|
+
return prefixes({ '': iri }, factory)('');
|
|
45595
45584
|
}
|
|
45596
45585
|
|
|
45597
45586
|
// Creates a function that allows registering and expanding prefixes
|
|
@@ -48974,9 +48963,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48974
48963
|
|
|
48975
48964
|
var _supports;
|
|
48976
48965
|
|
|
48977
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly
|
|
48966
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
48978
48967
|
|
|
48979
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source =
|
|
48968
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
48980
48969
|
|
|
48981
48970
|
|
|
48982
48971
|
|
|
@@ -49077,9 +49066,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49077
49066
|
/* harmony import */ var _extended_term_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./extended-term-factory */ "./node_modules/rdflib/esm/factories/extended-term-factory.js");
|
|
49078
49067
|
|
|
49079
49068
|
|
|
49080
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly
|
|
49069
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
49081
49070
|
|
|
49082
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source =
|
|
49071
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
49083
49072
|
|
|
49084
49073
|
|
|
49085
49074
|
|
|
@@ -49145,10 +49134,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49145
49134
|
/* harmony export */ "default": () => (/* binding */ Fetcher)
|
|
49146
49135
|
/* harmony export */ });
|
|
49147
49136
|
/* harmony import */ var _babel_runtime_helpers_asyncToGenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ "./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");
|
|
49148
|
-
/* harmony import */ var
|
|
49149
|
-
/* harmony import */ var
|
|
49150
|
-
/* harmony import */ var
|
|
49151
|
-
/* harmony import */ var
|
|
49137
|
+
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
49138
|
+
/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
49139
|
+
/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
49140
|
+
/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
49152
49141
|
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
49153
49142
|
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
49154
49143
|
/* harmony import */ var _babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/regenerator */ "./node_modules/@babel/runtime/regenerator/index.js");
|
|
@@ -49179,7 +49168,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
49179
49168
|
|
|
49180
49169
|
|
|
49181
49170
|
|
|
49182
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,
|
|
49171
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__["default"])(this, result); }; }
|
|
49183
49172
|
|
|
49184
49173
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
49185
49174
|
|
|
@@ -49266,7 +49255,7 @@ var getNS = function getNS(factory) {
|
|
|
49266
49255
|
|
|
49267
49256
|
var ns = getNS();
|
|
49268
49257
|
|
|
49269
|
-
var Handler =
|
|
49258
|
+
var Handler = // TODO: Document, type
|
|
49270
49259
|
// TODO: Document, type
|
|
49271
49260
|
function Handler(response, dom) {
|
|
49272
49261
|
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_5__["default"])(this, Handler);
|
|
@@ -49278,12 +49267,12 @@ function Handler(response, dom) {
|
|
|
49278
49267
|
this.response = response; // The type assertion operator here might need to be removed.
|
|
49279
49268
|
|
|
49280
49269
|
this.dom = dom;
|
|
49281
|
-
}
|
|
49270
|
+
};
|
|
49282
49271
|
|
|
49283
49272
|
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])(Handler, "pattern", void 0);
|
|
49284
49273
|
|
|
49285
49274
|
var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
49286
|
-
(0,
|
|
49275
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(RDFXMLHandler, _Handler);
|
|
49287
49276
|
|
|
49288
49277
|
var _super = _createSuper(RDFXMLHandler);
|
|
49289
49278
|
|
|
@@ -49293,7 +49282,7 @@ var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
|
49293
49282
|
return _super.apply(this, arguments);
|
|
49294
49283
|
}
|
|
49295
49284
|
|
|
49296
|
-
(0,
|
|
49285
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(RDFXMLHandler, [{
|
|
49297
49286
|
key: "parse",
|
|
49298
49287
|
value: function parse(fetcher,
|
|
49299
49288
|
/** An XML String */
|
|
@@ -49348,7 +49337,7 @@ var RDFXMLHandler = /*#__PURE__*/function (_Handler) {
|
|
|
49348
49337
|
RDFXMLHandler.pattern = new RegExp('application/rdf\\+xml');
|
|
49349
49338
|
|
|
49350
49339
|
var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
49351
|
-
(0,
|
|
49340
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(XHTMLHandler, _Handler2);
|
|
49352
49341
|
|
|
49353
49342
|
var _super2 = _createSuper(XHTMLHandler);
|
|
49354
49343
|
|
|
@@ -49358,7 +49347,7 @@ var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
|
49358
49347
|
return _super2.apply(this, arguments);
|
|
49359
49348
|
}
|
|
49360
49349
|
|
|
49361
|
-
(0,
|
|
49350
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(XHTMLHandler, [{
|
|
49362
49351
|
key: "parse",
|
|
49363
49352
|
value: function parse(fetcher, responseText, options) {
|
|
49364
49353
|
var relation, reverse;
|
|
@@ -49442,7 +49431,7 @@ var XHTMLHandler = /*#__PURE__*/function (_Handler2) {
|
|
|
49442
49431
|
XHTMLHandler.pattern = new RegExp('application/xhtml');
|
|
49443
49432
|
|
|
49444
49433
|
var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
49445
|
-
(0,
|
|
49434
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(XMLHandler, _Handler3);
|
|
49446
49435
|
|
|
49447
49436
|
var _super3 = _createSuper(XMLHandler);
|
|
49448
49437
|
|
|
@@ -49452,7 +49441,7 @@ var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
|
49452
49441
|
return _super3.apply(this, arguments);
|
|
49453
49442
|
}
|
|
49454
49443
|
|
|
49455
|
-
(0,
|
|
49444
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(XMLHandler, [{
|
|
49456
49445
|
key: "parse",
|
|
49457
49446
|
value: function parse(fetcher, responseText, options) {
|
|
49458
49447
|
var dom = _utils_js__WEBPACK_IMPORTED_MODULE_11__.parseXML(responseText); // XML Semantics defined by root element namespace
|
|
@@ -49536,7 +49525,7 @@ var XMLHandler = /*#__PURE__*/function (_Handler3) {
|
|
|
49536
49525
|
XMLHandler.pattern = new RegExp('(text|application)/(.*)xml');
|
|
49537
49526
|
|
|
49538
49527
|
var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
49539
|
-
(0,
|
|
49528
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(HTMLHandler, _Handler4);
|
|
49540
49529
|
|
|
49541
49530
|
var _super4 = _createSuper(HTMLHandler);
|
|
49542
49531
|
|
|
@@ -49546,7 +49535,7 @@ var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
|
49546
49535
|
return _super4.apply(this, arguments);
|
|
49547
49536
|
}
|
|
49548
49537
|
|
|
49549
|
-
(0,
|
|
49538
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(HTMLHandler, [{
|
|
49550
49539
|
key: "parse",
|
|
49551
49540
|
value: function parse(fetcher, responseText, options) {
|
|
49552
49541
|
var kb = fetcher.store; // We only handle XHTML so we have to figure out if this is XML
|
|
@@ -49608,7 +49597,7 @@ var HTMLHandler = /*#__PURE__*/function (_Handler4) {
|
|
|
49608
49597
|
HTMLHandler.pattern = new RegExp('text/html');
|
|
49609
49598
|
|
|
49610
49599
|
var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
49611
|
-
(0,
|
|
49600
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(JsonLdHandler, _Handler5);
|
|
49612
49601
|
|
|
49613
49602
|
var _super5 = _createSuper(JsonLdHandler);
|
|
49614
49603
|
|
|
@@ -49618,7 +49607,7 @@ var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
|
49618
49607
|
return _super5.apply(this, arguments);
|
|
49619
49608
|
}
|
|
49620
49609
|
|
|
49621
|
-
(0,
|
|
49610
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(JsonLdHandler, [{
|
|
49622
49611
|
key: "parse",
|
|
49623
49612
|
value: function parse(fetcher, responseText, options, response) {
|
|
49624
49613
|
var kb = fetcher.store;
|
|
@@ -49654,7 +49643,7 @@ var JsonLdHandler = /*#__PURE__*/function (_Handler5) {
|
|
|
49654
49643
|
JsonLdHandler.pattern = /application\/ld\+json/;
|
|
49655
49644
|
|
|
49656
49645
|
var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
49657
|
-
(0,
|
|
49646
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(TextHandler, _Handler6);
|
|
49658
49647
|
|
|
49659
49648
|
var _super6 = _createSuper(TextHandler);
|
|
49660
49649
|
|
|
@@ -49664,7 +49653,7 @@ var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
|
49664
49653
|
return _super6.apply(this, arguments);
|
|
49665
49654
|
}
|
|
49666
49655
|
|
|
49667
|
-
(0,
|
|
49656
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(TextHandler, [{
|
|
49668
49657
|
key: "parse",
|
|
49669
49658
|
value: function parse(fetcher, responseText, options) {
|
|
49670
49659
|
// We only speak dialects of XML right now. Is this XML?
|
|
@@ -49708,7 +49697,7 @@ var TextHandler = /*#__PURE__*/function (_Handler6) {
|
|
|
49708
49697
|
TextHandler.pattern = new RegExp('text/plain');
|
|
49709
49698
|
|
|
49710
49699
|
var N3Handler = /*#__PURE__*/function (_Handler7) {
|
|
49711
|
-
(0,
|
|
49700
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(N3Handler, _Handler7);
|
|
49712
49701
|
|
|
49713
49702
|
var _super7 = _createSuper(N3Handler);
|
|
49714
49703
|
|
|
@@ -49718,7 +49707,7 @@ var N3Handler = /*#__PURE__*/function (_Handler7) {
|
|
|
49718
49707
|
return _super7.apply(this, arguments);
|
|
49719
49708
|
}
|
|
49720
49709
|
|
|
49721
|
-
(0,
|
|
49710
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(N3Handler, [{
|
|
49722
49711
|
key: "parse",
|
|
49723
49712
|
value: function parse(fetcher, responseText, options, response) {
|
|
49724
49713
|
// Parse the text of this N3 file
|
|
@@ -49907,7 +49896,7 @@ var Fetcher = /*#__PURE__*/function () {
|
|
|
49907
49896
|
});
|
|
49908
49897
|
}
|
|
49909
49898
|
|
|
49910
|
-
(0,
|
|
49899
|
+
(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(Fetcher, [{
|
|
49911
49900
|
key: "load",
|
|
49912
49901
|
value:
|
|
49913
49902
|
/**
|
|
@@ -52363,111 +52352,109 @@ var Formula = /*#__PURE__*/function (_Node) {
|
|
|
52363
52352
|
"use strict";
|
|
52364
52353
|
__webpack_require__.r(__webpack_exports__);
|
|
52365
52354
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
52366
|
-
/* harmony export */ "BlankNode": () => (/* reexport safe */
|
|
52367
|
-
/* harmony export */ "Collection": () => (/* reexport safe */
|
|
52355
|
+
/* harmony export */ "BlankNode": () => (/* reexport safe */ _blank_node__WEBPACK_IMPORTED_MODULE_9__["default"]),
|
|
52356
|
+
/* harmony export */ "Collection": () => (/* reexport safe */ _collection__WEBPACK_IMPORTED_MODULE_11__["default"]),
|
|
52368
52357
|
/* harmony export */ "ConnectedStore": () => (/* binding */ ConnectedStore),
|
|
52369
|
-
/* harmony export */ "DataFactory": () => (/* reexport safe */
|
|
52370
|
-
/* harmony export */ "Empty": () => (/* reexport safe */
|
|
52371
|
-
/* harmony export */ "Fetcher": () => (/* reexport safe */
|
|
52372
|
-
/* harmony export */ "Formula": () => (/* reexport safe */
|
|
52373
|
-
/* harmony export */ "IndexedFormula": () => (/* reexport safe */
|
|
52374
|
-
/* harmony export */ "Literal": () => (/* reexport safe */
|
|
52358
|
+
/* harmony export */ "DataFactory": () => (/* reexport safe */ _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__["default"]),
|
|
52359
|
+
/* harmony export */ "Empty": () => (/* reexport safe */ _empty__WEBPACK_IMPORTED_MODULE_13__["default"]),
|
|
52360
|
+
/* harmony export */ "Fetcher": () => (/* reexport safe */ _fetcher__WEBPACK_IMPORTED_MODULE_14__["default"]),
|
|
52361
|
+
/* harmony export */ "Formula": () => (/* reexport safe */ _formula__WEBPACK_IMPORTED_MODULE_7__["default"]),
|
|
52362
|
+
/* harmony export */ "IndexedFormula": () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_15__["default"]),
|
|
52363
|
+
/* harmony export */ "Literal": () => (/* reexport safe */ _literal__WEBPACK_IMPORTED_MODULE_17__["default"]),
|
|
52375
52364
|
/* harmony export */ "LiveStore": () => (/* binding */ LiveStore),
|
|
52376
|
-
/* harmony export */ "N3Parser": () => (/* reexport safe */
|
|
52377
|
-
/* harmony export */ "NamedNode": () => (/* reexport safe */
|
|
52378
|
-
/* harmony export */ "Namespace": () => (/* reexport safe */
|
|
52365
|
+
/* harmony export */ "N3Parser": () => (/* reexport safe */ _n3parser__WEBPACK_IMPORTED_MODULE_19__["default"]),
|
|
52366
|
+
/* harmony export */ "NamedNode": () => (/* reexport safe */ _named_node__WEBPACK_IMPORTED_MODULE_20__["default"]),
|
|
52367
|
+
/* harmony export */ "Namespace": () => (/* reexport safe */ _namespace__WEBPACK_IMPORTED_MODULE_21__["default"]),
|
|
52379
52368
|
/* harmony export */ "NextId": () => (/* binding */ NextId),
|
|
52380
|
-
/* harmony export */ "Node": () => (/* reexport safe */
|
|
52381
|
-
/* harmony export */ "Query": () => (/* reexport safe */
|
|
52382
|
-
/* harmony export */ "RDFParser": () => (/* reexport safe */
|
|
52383
|
-
/* harmony export */ "RDFaProcessor": () => (/* reexport safe */
|
|
52384
|
-
/* harmony export */ "SPARQLToQuery": () => (/* reexport safe */
|
|
52385
|
-
/* harmony export */ "Serializer": () => (/* reexport safe */
|
|
52386
|
-
/* harmony export */ "Statement": () => (/* reexport safe */
|
|
52387
|
-
/* harmony export */ "Store": () => (/* reexport safe */
|
|
52388
|
-
/* harmony export */ "UpdateManager": () => (/* reexport safe */
|
|
52389
|
-
/* harmony export */ "UpdatesSocket": () => (/* reexport safe */
|
|
52390
|
-
/* harmony export */ "UpdatesVia": () => (/* reexport safe */
|
|
52391
|
-
/* harmony export */ "Util": () => (/* reexport module object */
|
|
52392
|
-
/* harmony export */ "Variable": () => (/* reexport safe */
|
|
52369
|
+
/* harmony export */ "Node": () => (/* reexport safe */ _node__WEBPACK_IMPORTED_MODULE_8__["default"]),
|
|
52370
|
+
/* harmony export */ "Query": () => (/* reexport safe */ _query__WEBPACK_IMPORTED_MODULE_23__.Query),
|
|
52371
|
+
/* harmony export */ "RDFParser": () => (/* reexport safe */ _rdfxmlparser__WEBPACK_IMPORTED_MODULE_26__["default"]),
|
|
52372
|
+
/* harmony export */ "RDFaProcessor": () => (/* reexport safe */ _rdfaparser__WEBPACK_IMPORTED_MODULE_25__["default"]),
|
|
52373
|
+
/* harmony export */ "SPARQLToQuery": () => (/* reexport safe */ _sparql_to_query__WEBPACK_IMPORTED_MODULE_29__["default"]),
|
|
52374
|
+
/* harmony export */ "Serializer": () => (/* reexport safe */ _serializer__WEBPACK_IMPORTED_MODULE_28__["default"]),
|
|
52375
|
+
/* harmony export */ "Statement": () => (/* reexport safe */ _statement__WEBPACK_IMPORTED_MODULE_31__["default"]),
|
|
52376
|
+
/* harmony export */ "Store": () => (/* reexport safe */ _store__WEBPACK_IMPORTED_MODULE_15__["default"]),
|
|
52377
|
+
/* harmony export */ "UpdateManager": () => (/* reexport safe */ _update_manager__WEBPACK_IMPORTED_MODULE_32__["default"]),
|
|
52378
|
+
/* harmony export */ "UpdatesSocket": () => (/* reexport safe */ _updates_via__WEBPACK_IMPORTED_MODULE_33__.UpdatesSocket),
|
|
52379
|
+
/* harmony export */ "UpdatesVia": () => (/* reexport safe */ _updates_via__WEBPACK_IMPORTED_MODULE_33__.UpdatesVia),
|
|
52380
|
+
/* harmony export */ "Util": () => (/* reexport module object */ _utils_js__WEBPACK_IMPORTED_MODULE_35__),
|
|
52381
|
+
/* harmony export */ "Variable": () => (/* reexport safe */ _variable__WEBPACK_IMPORTED_MODULE_36__["default"]),
|
|
52393
52382
|
/* harmony export */ "blankNode": () => (/* binding */ blankNode),
|
|
52394
|
-
/* harmony export */ "convert": () => (/* reexport module object */
|
|
52383
|
+
/* harmony export */ "convert": () => (/* reexport module object */ _convert__WEBPACK_IMPORTED_MODULE_12__),
|
|
52395
52384
|
/* harmony export */ "defaultGraph": () => (/* binding */ defaultGraph),
|
|
52396
52385
|
/* harmony export */ "fetcher": () => (/* binding */ fetcher),
|
|
52397
52386
|
/* harmony export */ "fromNT": () => (/* binding */ fromNT),
|
|
52398
52387
|
/* harmony export */ "graph": () => (/* binding */ graph),
|
|
52399
|
-
/* harmony export */ "isBlankNode": () => (/* reexport safe */
|
|
52400
|
-
/* harmony export */ "isCollection": () => (/* reexport safe */
|
|
52401
|
-
/* harmony export */ "isGraph": () => (/* reexport safe */
|
|
52402
|
-
/* harmony export */ "isLiteral": () => (/* reexport safe */
|
|
52403
|
-
/* harmony export */ "isNamedNode": () => (/* reexport safe */
|
|
52404
|
-
/* harmony export */ "isPredicate": () => (/* reexport safe */
|
|
52405
|
-
/* harmony export */ "isQuad": () => (/* reexport safe */
|
|
52406
|
-
/* harmony export */ "isRDFObject": () => (/* reexport safe */
|
|
52407
|
-
/* harmony export */ "isRDFlibObject": () => (/* reexport safe */
|
|
52408
|
-
/* harmony export */ "isStatement": () => (/* reexport safe */
|
|
52409
|
-
/* harmony export */ "isStore": () => (/* reexport safe */
|
|
52410
|
-
/* harmony export */ "isSubject": () => (/* reexport safe */
|
|
52411
|
-
/* harmony export */ "isTerm": () => (/* reexport safe */
|
|
52412
|
-
/* harmony export */ "isVariable": () => (/* reexport safe */
|
|
52413
|
-
/* harmony export */ "jsonParser": () => (/* reexport safe */
|
|
52388
|
+
/* harmony export */ "isBlankNode": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isBlankNode),
|
|
52389
|
+
/* harmony export */ "isCollection": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isCollection),
|
|
52390
|
+
/* harmony export */ "isGraph": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isGraph),
|
|
52391
|
+
/* harmony export */ "isLiteral": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isLiteral),
|
|
52392
|
+
/* harmony export */ "isNamedNode": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isNamedNode),
|
|
52393
|
+
/* harmony export */ "isPredicate": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isPredicate),
|
|
52394
|
+
/* harmony export */ "isQuad": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isQuad),
|
|
52395
|
+
/* harmony export */ "isRDFObject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isRDFObject),
|
|
52396
|
+
/* harmony export */ "isRDFlibObject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isRDFlibObject),
|
|
52397
|
+
/* harmony export */ "isStatement": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isStatement),
|
|
52398
|
+
/* harmony export */ "isStore": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isStore),
|
|
52399
|
+
/* harmony export */ "isSubject": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isSubject),
|
|
52400
|
+
/* harmony export */ "isTerm": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isTerm),
|
|
52401
|
+
/* harmony export */ "isVariable": () => (/* reexport safe */ _utils_terms__WEBPACK_IMPORTED_MODULE_10__.isVariable),
|
|
52402
|
+
/* harmony export */ "jsonParser": () => (/* reexport safe */ _jsonparser__WEBPACK_IMPORTED_MODULE_16__["default"]),
|
|
52414
52403
|
/* harmony export */ "lit": () => (/* binding */ lit),
|
|
52415
52404
|
/* harmony export */ "literal": () => (/* binding */ literal),
|
|
52416
|
-
/* harmony export */ "log": () => (/* reexport safe */
|
|
52405
|
+
/* harmony export */ "log": () => (/* reexport safe */ _log__WEBPACK_IMPORTED_MODULE_18__["default"]),
|
|
52417
52406
|
/* harmony export */ "namedNode": () => (/* binding */ namedNode),
|
|
52418
|
-
/* harmony export */ "parse": () => (/* reexport safe */
|
|
52407
|
+
/* harmony export */ "parse": () => (/* reexport safe */ _parse__WEBPACK_IMPORTED_MODULE_22__["default"]),
|
|
52419
52408
|
/* harmony export */ "quad": () => (/* binding */ quad),
|
|
52420
|
-
/* harmony export */ "queryToSPARQL": () => (/* reexport safe */
|
|
52421
|
-
/* harmony export */ "serialize": () => (/* reexport safe */
|
|
52422
|
-
/* harmony export */ "sparqlUpdateParser": () => (/* reexport safe */
|
|
52409
|
+
/* harmony export */ "queryToSPARQL": () => (/* reexport safe */ _query_to_sparql__WEBPACK_IMPORTED_MODULE_24__["default"]),
|
|
52410
|
+
/* harmony export */ "serialize": () => (/* reexport safe */ _serialize__WEBPACK_IMPORTED_MODULE_27__["default"]),
|
|
52411
|
+
/* harmony export */ "sparqlUpdateParser": () => (/* reexport safe */ _patch_parser__WEBPACK_IMPORTED_MODULE_30__["default"]),
|
|
52423
52412
|
/* harmony export */ "st": () => (/* binding */ st),
|
|
52424
52413
|
/* harmony export */ "sym": () => (/* binding */ namedNode),
|
|
52425
52414
|
/* harmony export */ "term": () => (/* binding */ term),
|
|
52426
|
-
/* harmony export */ "termValue": () => (/* reexport safe */
|
|
52415
|
+
/* harmony export */ "termValue": () => (/* reexport safe */ _utils_termValue__WEBPACK_IMPORTED_MODULE_37__.termValue),
|
|
52427
52416
|
/* harmony export */ "triple": () => (/* binding */ triple),
|
|
52428
|
-
/* harmony export */ "uri": () => (/* reexport module object */
|
|
52417
|
+
/* harmony export */ "uri": () => (/* reexport module object */ _uri__WEBPACK_IMPORTED_MODULE_34__),
|
|
52429
52418
|
/* harmony export */ "variable": () => (/* binding */ variable)
|
|
52430
52419
|
/* harmony export */ });
|
|
52431
|
-
/* harmony import */ var
|
|
52432
|
-
/* harmony import */ var
|
|
52433
|
-
/* harmony import */ var
|
|
52434
|
-
/* harmony import */ var
|
|
52435
|
-
/* harmony import */ var
|
|
52436
|
-
/* harmony import */ var
|
|
52437
|
-
/* harmony import */ var
|
|
52438
|
-
/* harmony import */ var
|
|
52439
|
-
/* harmony import */ var
|
|
52440
|
-
/* harmony import */ var
|
|
52441
|
-
/* harmony import */ var
|
|
52442
|
-
/* harmony import */ var
|
|
52443
|
-
/* harmony import */ var
|
|
52444
|
-
/* harmony import */ var
|
|
52445
|
-
/* harmony import */ var
|
|
52446
|
-
/* harmony import */ var
|
|
52447
|
-
/* harmony import */ var
|
|
52448
|
-
/* harmony import */ var
|
|
52449
|
-
/* harmony import */ var
|
|
52450
|
-
/* harmony import */ var
|
|
52451
|
-
/* harmony import */ var
|
|
52452
|
-
/* harmony import */ var
|
|
52453
|
-
/* harmony import */ var
|
|
52454
|
-
/* harmony import */ var
|
|
52455
|
-
/* harmony import */ var
|
|
52456
|
-
/* harmony import */ var
|
|
52457
|
-
/* harmony import */ var
|
|
52458
|
-
/* harmony import */ var
|
|
52459
|
-
/* harmony import */ var
|
|
52460
|
-
/* harmony import */ var
|
|
52461
|
-
/* harmony import */ var
|
|
52462
|
-
/* harmony import */ var
|
|
52463
|
-
/* harmony import */ var
|
|
52464
|
-
/* harmony import */ var
|
|
52465
|
-
/* harmony import */ var
|
|
52466
|
-
/* harmony import */ var
|
|
52467
|
-
/* harmony import */ var
|
|
52468
|
-
/* harmony import */ var
|
|
52469
|
-
/* harmony import */ var _utils_termValue__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./utils/termValue */ "./node_modules/rdflib/esm/utils/termValue.js");
|
|
52470
|
-
|
|
52420
|
+
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
52421
|
+
/* harmony import */ var _babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
52422
|
+
/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
52423
|
+
/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
52424
|
+
/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
52425
|
+
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
52426
|
+
/* harmony import */ var _blank_node__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./blank-node */ "./node_modules/rdflib/esm/blank-node.js");
|
|
52427
|
+
/* harmony import */ var _collection__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./collection */ "./node_modules/rdflib/esm/collection.js");
|
|
52428
|
+
/* harmony import */ var _convert__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./convert */ "./node_modules/rdflib/esm/convert.js");
|
|
52429
|
+
/* harmony import */ var _empty__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./empty */ "./node_modules/rdflib/esm/empty.js");
|
|
52430
|
+
/* harmony import */ var _fetcher__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./fetcher */ "./node_modules/rdflib/esm/fetcher.js");
|
|
52431
|
+
/* harmony import */ var _formula__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./formula */ "./node_modules/rdflib/esm/formula.js");
|
|
52432
|
+
/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./store */ "./node_modules/rdflib/esm/store.js");
|
|
52433
|
+
/* harmony import */ var _jsonparser__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./jsonparser */ "./node_modules/rdflib/esm/jsonparser.js");
|
|
52434
|
+
/* harmony import */ var _literal__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./literal */ "./node_modules/rdflib/esm/literal.js");
|
|
52435
|
+
/* harmony import */ var _log__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./log */ "./node_modules/rdflib/esm/log.js");
|
|
52436
|
+
/* harmony import */ var _n3parser__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./n3parser */ "./node_modules/rdflib/esm/n3parser.js");
|
|
52437
|
+
/* harmony import */ var _named_node__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./named-node */ "./node_modules/rdflib/esm/named-node.js");
|
|
52438
|
+
/* harmony import */ var _namespace__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./namespace */ "./node_modules/rdflib/esm/namespace.js");
|
|
52439
|
+
/* harmony import */ var _node__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./node */ "./node_modules/rdflib/esm/node.js");
|
|
52440
|
+
/* harmony import */ var _parse__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./parse */ "./node_modules/rdflib/esm/parse.js");
|
|
52441
|
+
/* harmony import */ var _query__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./query */ "./node_modules/rdflib/esm/query.js");
|
|
52442
|
+
/* harmony import */ var _query_to_sparql__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./query-to-sparql */ "./node_modules/rdflib/esm/query-to-sparql.js");
|
|
52443
|
+
/* harmony import */ var _rdfaparser__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./rdfaparser */ "./node_modules/rdflib/esm/rdfaparser.js");
|
|
52444
|
+
/* harmony import */ var _rdfxmlparser__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./rdfxmlparser */ "./node_modules/rdflib/esm/rdfxmlparser.js");
|
|
52445
|
+
/* harmony import */ var _serialize__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./serialize */ "./node_modules/rdflib/esm/serialize.js");
|
|
52446
|
+
/* harmony import */ var _serializer__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./serializer */ "./node_modules/rdflib/esm/serializer.js");
|
|
52447
|
+
/* harmony import */ var _sparql_to_query__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./sparql-to-query */ "./node_modules/rdflib/esm/sparql-to-query.js");
|
|
52448
|
+
/* harmony import */ var _patch_parser__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./patch-parser */ "./node_modules/rdflib/esm/patch-parser.js");
|
|
52449
|
+
/* harmony import */ var _statement__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./statement */ "./node_modules/rdflib/esm/statement.js");
|
|
52450
|
+
/* harmony import */ var _update_manager__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./update-manager */ "./node_modules/rdflib/esm/update-manager.js");
|
|
52451
|
+
/* harmony import */ var _updates_via__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./updates-via */ "./node_modules/rdflib/esm/updates-via.js");
|
|
52452
|
+
/* harmony import */ var _uri__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./uri */ "./node_modules/rdflib/esm/uri.js");
|
|
52453
|
+
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./utils-js */ "./node_modules/rdflib/esm/utils-js.js");
|
|
52454
|
+
/* harmony import */ var _variable__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./variable */ "./node_modules/rdflib/esm/variable.js");
|
|
52455
|
+
/* harmony import */ var _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./factories/rdflib-data-factory */ "./node_modules/rdflib/esm/factories/rdflib-data-factory.js");
|
|
52456
|
+
/* harmony import */ var _utils_terms__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utils/terms */ "./node_modules/rdflib/esm/utils/terms.js");
|
|
52457
|
+
/* harmony import */ var _utils_termValue__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./utils/termValue */ "./node_modules/rdflib/esm/utils/termValue.js");
|
|
52471
52458
|
|
|
52472
52459
|
|
|
52473
52460
|
|
|
@@ -52475,7 +52462,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
52475
52462
|
|
|
52476
52463
|
|
|
52477
52464
|
|
|
52478
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,
|
|
52465
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__["default"])(this, result); }; }
|
|
52479
52466
|
|
|
52480
52467
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
52481
52468
|
|
|
@@ -52513,8 +52500,8 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
52513
52500
|
|
|
52514
52501
|
var boundDataFactory = {};
|
|
52515
52502
|
|
|
52516
|
-
for (var name in
|
|
52517
|
-
if (typeof
|
|
52503
|
+
for (var name in _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__["default"]) {
|
|
52504
|
+
if (typeof _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__["default"][name] === 'function') boundDataFactory[name] = _factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__["default"][name].bind(_factories_rdflib_data_factory__WEBPACK_IMPORTED_MODULE_6__["default"]);
|
|
52518
52505
|
}
|
|
52519
52506
|
|
|
52520
52507
|
var fetcher = boundDataFactory.fetcher,
|
|
@@ -52528,58 +52515,58 @@ var fetcher = boundDataFactory.fetcher,
|
|
|
52528
52515
|
literal = boundDataFactory.literal,
|
|
52529
52516
|
quad = boundDataFactory.quad,
|
|
52530
52517
|
triple = boundDataFactory.triple;
|
|
52531
|
-
var formula = new
|
|
52518
|
+
var formula = new _formula__WEBPACK_IMPORTED_MODULE_7__["default"]();
|
|
52532
52519
|
|
|
52533
52520
|
var fromNT = function fromNT(str) {
|
|
52534
52521
|
return formula.fromNT(str);
|
|
52535
52522
|
};
|
|
52536
52523
|
|
|
52537
|
-
var term =
|
|
52524
|
+
var term = _node__WEBPACK_IMPORTED_MODULE_8__["default"].fromValue; // TODO: this export is broken;
|
|
52538
52525
|
// it exports the _current_ value of nextId, which is always 0
|
|
52539
52526
|
|
|
52540
|
-
var NextId =
|
|
52527
|
+
var NextId = _blank_node__WEBPACK_IMPORTED_MODULE_9__["default"].nextId;
|
|
52541
52528
|
|
|
52542
52529
|
|
|
52543
52530
|
|
|
52544
52531
|
var ConnectedStore = /*#__PURE__*/function (_Store) {
|
|
52545
|
-
(0,
|
|
52532
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(ConnectedStore, _Store);
|
|
52546
52533
|
|
|
52547
52534
|
var _super = _createSuper(ConnectedStore);
|
|
52548
52535
|
|
|
52549
52536
|
function ConnectedStore(features) {
|
|
52550
52537
|
var _this;
|
|
52551
52538
|
|
|
52552
|
-
(0,
|
|
52539
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__["default"])(this, ConnectedStore);
|
|
52553
52540
|
|
|
52554
52541
|
_this = _super.call(this, features);
|
|
52555
52542
|
|
|
52556
|
-
(0,
|
|
52543
|
+
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_5__["default"])((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__["default"])(_this), "fetcher", void 0);
|
|
52557
52544
|
|
|
52558
|
-
_this.fetcher = new
|
|
52545
|
+
_this.fetcher = new _fetcher__WEBPACK_IMPORTED_MODULE_14__["default"]((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__["default"])(_this), {});
|
|
52559
52546
|
return _this;
|
|
52560
52547
|
}
|
|
52561
52548
|
|
|
52562
|
-
return
|
|
52563
|
-
}(
|
|
52549
|
+
return ConnectedStore;
|
|
52550
|
+
}(_store__WEBPACK_IMPORTED_MODULE_15__["default"]);
|
|
52564
52551
|
var LiveStore = /*#__PURE__*/function (_ConnectedStore) {
|
|
52565
|
-
(0,
|
|
52552
|
+
(0,_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__["default"])(LiveStore, _ConnectedStore);
|
|
52566
52553
|
|
|
52567
52554
|
var _super2 = _createSuper(LiveStore);
|
|
52568
52555
|
|
|
52569
52556
|
function LiveStore(features) {
|
|
52570
52557
|
var _this2;
|
|
52571
52558
|
|
|
52572
|
-
(0,
|
|
52559
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__["default"])(this, LiveStore);
|
|
52573
52560
|
|
|
52574
52561
|
_this2 = _super2.call(this, features);
|
|
52575
52562
|
|
|
52576
|
-
(0,
|
|
52563
|
+
(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_5__["default"])((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__["default"])(_this2), "updater", void 0);
|
|
52577
52564
|
|
|
52578
|
-
_this2.updater = new
|
|
52565
|
+
_this2.updater = new _update_manager__WEBPACK_IMPORTED_MODULE_32__["default"]((0,_babel_runtime_helpers_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__["default"])(_this2));
|
|
52579
52566
|
return _this2;
|
|
52580
52567
|
}
|
|
52581
52568
|
|
|
52582
|
-
return
|
|
52569
|
+
return LiveStore;
|
|
52583
52570
|
}(ConnectedStore);
|
|
52584
52571
|
|
|
52585
52572
|
/***/ }),
|
|
@@ -55820,13 +55807,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55820
55807
|
/* harmony export */ "Query": () => (/* binding */ Query),
|
|
55821
55808
|
/* harmony export */ "indexedFormulaQuery": () => (/* binding */ indexedFormulaQuery)
|
|
55822
55809
|
/* harmony export */ });
|
|
55823
|
-
/* harmony import */ var
|
|
55824
|
-
/* harmony import */ var
|
|
55825
|
-
/* harmony import */ var
|
|
55826
|
-
/* harmony import */ var
|
|
55827
|
-
/* harmony import */ var
|
|
55828
|
-
/* harmony import */ var _uri__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./uri */ "./node_modules/rdflib/esm/uri.js");
|
|
55829
|
-
|
|
55810
|
+
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
55811
|
+
/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./store */ "./node_modules/rdflib/esm/store.js");
|
|
55812
|
+
/* harmony import */ var _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/default-graph-uri */ "./node_modules/rdflib/esm/utils/default-graph-uri.js");
|
|
55813
|
+
/* harmony import */ var _log__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./log */ "./node_modules/rdflib/esm/log.js");
|
|
55814
|
+
/* harmony import */ var _uri__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./uri */ "./node_modules/rdflib/esm/uri.js");
|
|
55830
55815
|
|
|
55831
55816
|
// Matching a formula against another formula
|
|
55832
55817
|
// Assync as well as Synchronously
|
|
@@ -55855,17 +55840,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55855
55840
|
* Query class, for tracking queries the user has in the UI.
|
|
55856
55841
|
*/
|
|
55857
55842
|
|
|
55858
|
-
var Query =
|
|
55859
|
-
(0,
|
|
55843
|
+
var Query = function Query(name, id) {
|
|
55844
|
+
(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__["default"])(this, Query);
|
|
55860
55845
|
|
|
55861
|
-
this.pat = new
|
|
55846
|
+
this.pat = new _store__WEBPACK_IMPORTED_MODULE_1__["default"](); // The pattern to search for
|
|
55862
55847
|
|
|
55863
55848
|
this.vars = []; // Used by UI code but not in query.js
|
|
55864
55849
|
// this.orderBy = [] // Not used yet
|
|
55865
55850
|
|
|
55866
55851
|
this.name = name;
|
|
55867
55852
|
this.id = id;
|
|
55868
|
-
}
|
|
55853
|
+
};
|
|
55869
55854
|
/**
|
|
55870
55855
|
* This function will match a pattern to the current Store
|
|
55871
55856
|
*
|
|
@@ -55942,7 +55927,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
55942
55927
|
other = formula.redirections[other];
|
|
55943
55928
|
}
|
|
55944
55929
|
|
|
55945
|
-
if (actual.equals(other) || actual.uri && actual.uri ===
|
|
55930
|
+
if (actual.equals(other) || actual.uri && actual.uri === _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_2__.defaultGraphURI) {
|
|
55946
55931
|
// Used to mean 'any graph' in a query
|
|
55947
55932
|
return [[[], null]];
|
|
55948
55933
|
}
|
|
@@ -56086,7 +56071,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56086
56071
|
}
|
|
56087
56072
|
}
|
|
56088
56073
|
|
|
56089
|
-
|
|
56074
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('OPTIONAL BIDNINGS ALL DONE:');
|
|
56090
56075
|
this.doCallBacks(this.branches.length - 1, this.trunkBindings);
|
|
56091
56076
|
}; // Recrursively generate the cross product of the bindings
|
|
56092
56077
|
|
|
@@ -56126,7 +56111,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56126
56111
|
|
|
56127
56112
|
MandatoryBranch.prototype.reportDone = function () {
|
|
56128
56113
|
this.done = true;
|
|
56129
|
-
|
|
56114
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].info('Mandatory query branch finished.***');
|
|
56130
56115
|
|
|
56131
56116
|
if (this.onDone !== undefined) {
|
|
56132
56117
|
this.onDone();
|
|
@@ -56148,13 +56133,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56148
56133
|
};
|
|
56149
56134
|
|
|
56150
56135
|
OptionalBranch.prototype.reportDone = function () {
|
|
56151
|
-
|
|
56136
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Optional branch finished - results.length = ' + this.results.length);
|
|
56152
56137
|
|
|
56153
56138
|
if (this.results.length === 0) {
|
|
56154
56139
|
// This is what optional means: if no hits,
|
|
56155
56140
|
this.results.push({}); // mimic success, but with no bindings
|
|
56156
56141
|
|
|
56157
|
-
|
|
56142
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug("Optional branch FAILED - that's OK.");
|
|
56158
56143
|
}
|
|
56159
56144
|
|
|
56160
56145
|
this.done = true;
|
|
@@ -56181,7 +56166,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56181
56166
|
for (i = 0; i < 4; i++) {
|
|
56182
56167
|
var t = terms[i]; // console.log(" Prepare (" + t + ") "+(t in bindings))
|
|
56183
56168
|
|
|
56184
|
-
if (t.uri && t.uri ===
|
|
56169
|
+
if (t.uri && t.uri === _utils_default_graph_uri__WEBPACK_IMPORTED_MODULE_2__.defaultGraphURI) {// chrome:session
|
|
56185
56170
|
// console.log(' query: Ignoring slot ' + i)
|
|
56186
56171
|
} else if (t.isVar && !(bindings[t] !== undefined)) {
|
|
56187
56172
|
item.nvars++;
|
|
@@ -56244,18 +56229,18 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56244
56229
|
***/
|
|
56245
56230
|
|
|
56246
56231
|
var match = function match(f, g, bindingsSoFar, level, fetcher, localCallback, branch) {
|
|
56247
|
-
|
|
56232
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Match begins, Branch count now: ' + branch.count + ' for ' + branch.pattern_debug); // log.debug("match: f has "+f.statements.length+", g has "+g.statements.length)
|
|
56248
56233
|
|
|
56249
56234
|
var pattern = g.statements;
|
|
56250
56235
|
|
|
56251
56236
|
if (pattern.length === 0) {
|
|
56252
56237
|
// when it's satisfied all the pattern triples
|
|
56253
|
-
|
|
56238
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('FOUND MATCH WITH BINDINGS:' + bindingDebug(bindingsSoFar));
|
|
56254
56239
|
|
|
56255
56240
|
if (g.optional.length === 0) {
|
|
56256
56241
|
branch.reportMatch(bindingsSoFar);
|
|
56257
56242
|
} else {
|
|
56258
|
-
|
|
56243
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('OPTIONAL: ' + g.optional);
|
|
56259
56244
|
var junction = new OptionalBranchJunction(callback, bindingsSoFar); // @@ won't work with nested optionals? nest callbacks
|
|
56260
56245
|
|
|
56261
56246
|
var br = [];
|
|
@@ -56275,7 +56260,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56275
56260
|
}
|
|
56276
56261
|
|
|
56277
56262
|
branch.count--;
|
|
56278
|
-
|
|
56263
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Match ends -- success , Branch count now: ' + branch.count + ' for ' + branch.pattern_debug);
|
|
56279
56264
|
return; // Success
|
|
56280
56265
|
}
|
|
56281
56266
|
|
|
@@ -56303,13 +56288,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56303
56288
|
for (i = 0; i < n; i++) {
|
|
56304
56289
|
item = pattern[i]; // for each of the triples in the query
|
|
56305
56290
|
|
|
56306
|
-
if (bindingsSoFar[item.subject] !== undefined && bindingsSoFar[item.subject].uri && fetcher && fetcher.getState((0,
|
|
56291
|
+
if (bindingsSoFar[item.subject] !== undefined && bindingsSoFar[item.subject].uri && fetcher && fetcher.getState((0,_uri__WEBPACK_IMPORTED_MODULE_4__.docpart)(bindingsSoFar[item.subject].uri)) === 'unrequested') {
|
|
56307
56292
|
// fetch the subject info and return to id
|
|
56308
56293
|
fetchResource(bindingsSoFar[item.subject], id);
|
|
56309
56294
|
return; // only look up one per line this time, but we will come back again though match
|
|
56310
56295
|
}
|
|
56311
56296
|
|
|
56312
|
-
if (bindingsSoFar[item.object] !== undefined && bindingsSoFar[item.object].uri && fetcher && fetcher.getState((0,
|
|
56297
|
+
if (bindingsSoFar[item.object] !== undefined && bindingsSoFar[item.object].uri && fetcher && fetcher.getState((0,_uri__WEBPACK_IMPORTED_MODULE_4__.docpart)(bindingsSoFar[item.object].uri)) === 'unrequested') {
|
|
56313
56298
|
fetchResource(bindingsSoFar[item.object], id);
|
|
56314
56299
|
return;
|
|
56315
56300
|
}
|
|
@@ -56370,7 +56355,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56370
56355
|
rest.constraints = g.constraints;
|
|
56371
56356
|
rest.statements = pattern.slice(1); // No indexes: we will not query g.
|
|
56372
56357
|
|
|
56373
|
-
|
|
56358
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug(level + 'match2 searching ' + item.index.length + ' for ' + item + '; bindings so far=' + bindingDebug(bindingsSoFar)); // var results = []
|
|
56374
56359
|
|
|
56375
56360
|
var c;
|
|
56376
56361
|
var nc = item.index.length;
|
|
@@ -56383,7 +56368,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56383
56368
|
st = item.index[c]; // for each statement in the item's index, spawn a new match with that binding
|
|
56384
56369
|
|
|
56385
56370
|
nbs1 = unifyContents([item.subject, item.predicate, item.object, item.why], [st.subject, st.predicate, st.object, st.why], bindingsSoFar, f);
|
|
56386
|
-
|
|
56371
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].info(level + ' From first: ' + nbs1.length + ': ' + bindingsDebug(nbs1));
|
|
56387
56372
|
nk = nbs1.length; // branch.count += nk
|
|
56388
56373
|
// log.debug("Branch count bumped "+nk+" to: "+branch.count)
|
|
56389
56374
|
|
|
@@ -56394,7 +56379,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56394
56379
|
|
|
56395
56380
|
if (!constraintsSatisfied(newBindings1, g.constraints)) {
|
|
56396
56381
|
// branch.count--
|
|
56397
|
-
|
|
56382
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Branch count CS: ' + branch.count);
|
|
56398
56383
|
} else {
|
|
56399
56384
|
for (v in newBindings1) {
|
|
56400
56385
|
if (newBindings1.hasOwnProperty(v)) {
|
|
@@ -56419,13 +56404,13 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56419
56404
|
branch.count--;
|
|
56420
56405
|
|
|
56421
56406
|
if (onward === 0) {
|
|
56422
|
-
|
|
56407
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Match2 fails completely on ' + item);
|
|
56423
56408
|
}
|
|
56424
56409
|
|
|
56425
|
-
|
|
56410
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Match2 ends, Branch count: ' + branch.count + ' for ' + branch.pattern_debug);
|
|
56426
56411
|
|
|
56427
56412
|
if (branch.count === 0) {
|
|
56428
|
-
|
|
56413
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Branch finished.');
|
|
56429
56414
|
branch.reportDone();
|
|
56430
56415
|
}
|
|
56431
56416
|
}; // match2
|
|
@@ -56433,7 +56418,7 @@ function indexedFormulaQuery(myQuery, callback, fetcher, onDone) {
|
|
|
56433
56418
|
|
|
56434
56419
|
|
|
56435
56420
|
var f = this;
|
|
56436
|
-
|
|
56421
|
+
_log__WEBPACK_IMPORTED_MODULE_3__["default"].debug('Query on ' + this.statements.length);
|
|
56437
56422
|
var trunck = new MandatoryBranch(callback, onDone);
|
|
56438
56423
|
trunck.count++; // count one branch to complete at the moment
|
|
56439
56424
|
|
|
@@ -60407,9 +60392,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60407
60392
|
|
|
60408
60393
|
|
|
60409
60394
|
|
|
60410
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly
|
|
60395
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
60411
60396
|
|
|
60412
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source =
|
|
60397
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_6__["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
60413
60398
|
|
|
60414
60399
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
60415
60400
|
|