@pod-os/core 0.12.1-fef97c9.0 → 0.13.1-0b8a8a5.0
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/{chunk-7VQUARYZ.js → chunk-XBA7NYKJ.js} +344 -1
- package/dist/{dist-F3EUFQHU.js → dist-5TZZFAHE.js} +2 -344
- package/dist/index.js +159 -85
- package/lib/index.js +176 -97
- package/package.json +13 -12
- package/types/Store.d.ts +2 -0
- package/types/index.d.ts +7 -1
- package/types/namespaces/index.d.ts +1 -0
- package/types/search/addToLabelIndex.d.ts +4 -0
- package/types/search/addToLabelIndex.spec.d.ts +1 -0
- package/types/thing/Thing.d.ts +2 -0
- package/types/thing/index.d.ts +1 -0
- package/types/thing/labelFromUri.d.ts +5 -0
- package/types/thing/labelFromUri.spec.d.ts +1 -0
|
@@ -12983,6 +12983,348 @@ var require_browser_ponyfill = __commonJS({
|
|
|
12983
12983
|
}
|
|
12984
12984
|
});
|
|
12985
12985
|
|
|
12986
|
+
// ../node_modules/short-unique-id/dist/short-unique-id.js
|
|
12987
|
+
var require_short_unique_id = __commonJS({
|
|
12988
|
+
"../node_modules/short-unique-id/dist/short-unique-id.js"(exports, module2) {
|
|
12989
|
+
"use strict";
|
|
12990
|
+
var ShortUniqueId = (() => {
|
|
12991
|
+
var __defProp = Object.defineProperty;
|
|
12992
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12993
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
12994
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
12995
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12996
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
12997
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
12998
|
+
var __spreadValues = (a, b) => {
|
|
12999
|
+
for (var prop in b || (b = {}))
|
|
13000
|
+
if (__hasOwnProp.call(b, prop))
|
|
13001
|
+
__defNormalProp(a, prop, b[prop]);
|
|
13002
|
+
if (__getOwnPropSymbols)
|
|
13003
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
13004
|
+
if (__propIsEnum.call(b, prop))
|
|
13005
|
+
__defNormalProp(a, prop, b[prop]);
|
|
13006
|
+
}
|
|
13007
|
+
return a;
|
|
13008
|
+
};
|
|
13009
|
+
var __export2 = (target, all) => {
|
|
13010
|
+
for (var name in all)
|
|
13011
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
13012
|
+
};
|
|
13013
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13014
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13015
|
+
for (let key of __getOwnPropNames(from))
|
|
13016
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13017
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13018
|
+
}
|
|
13019
|
+
return to;
|
|
13020
|
+
};
|
|
13021
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
13022
|
+
var __publicField = (obj, key, value) => {
|
|
13023
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
13024
|
+
return value;
|
|
13025
|
+
};
|
|
13026
|
+
var src_exports = {};
|
|
13027
|
+
__export2(src_exports, {
|
|
13028
|
+
DEFAULT_OPTIONS: () => DEFAULT_OPTIONS,
|
|
13029
|
+
DEFAULT_UUID_LENGTH: () => DEFAULT_UUID_LENGTH,
|
|
13030
|
+
default: () => ShortUniqueId2
|
|
13031
|
+
});
|
|
13032
|
+
var version = "5.2.0";
|
|
13033
|
+
var DEFAULT_UUID_LENGTH = 6;
|
|
13034
|
+
var DEFAULT_OPTIONS = {
|
|
13035
|
+
dictionary: "alphanum",
|
|
13036
|
+
shuffle: true,
|
|
13037
|
+
debug: false,
|
|
13038
|
+
length: DEFAULT_UUID_LENGTH,
|
|
13039
|
+
counter: 0
|
|
13040
|
+
};
|
|
13041
|
+
var _ShortUniqueId = class _ShortUniqueId {
|
|
13042
|
+
constructor(argOptions = {}) {
|
|
13043
|
+
__publicField(this, "counter");
|
|
13044
|
+
__publicField(this, "debug");
|
|
13045
|
+
__publicField(this, "dict");
|
|
13046
|
+
__publicField(this, "version");
|
|
13047
|
+
__publicField(this, "dictIndex", 0);
|
|
13048
|
+
__publicField(this, "dictRange", []);
|
|
13049
|
+
__publicField(this, "lowerBound", 0);
|
|
13050
|
+
__publicField(this, "upperBound", 0);
|
|
13051
|
+
__publicField(this, "dictLength", 0);
|
|
13052
|
+
__publicField(this, "uuidLength");
|
|
13053
|
+
__publicField(this, "_digit_first_ascii", 48);
|
|
13054
|
+
__publicField(this, "_digit_last_ascii", 58);
|
|
13055
|
+
__publicField(this, "_alpha_lower_first_ascii", 97);
|
|
13056
|
+
__publicField(this, "_alpha_lower_last_ascii", 123);
|
|
13057
|
+
__publicField(this, "_hex_last_ascii", 103);
|
|
13058
|
+
__publicField(this, "_alpha_upper_first_ascii", 65);
|
|
13059
|
+
__publicField(this, "_alpha_upper_last_ascii", 91);
|
|
13060
|
+
__publicField(this, "_number_dict_ranges", {
|
|
13061
|
+
digits: [this._digit_first_ascii, this._digit_last_ascii]
|
|
13062
|
+
});
|
|
13063
|
+
__publicField(this, "_alpha_dict_ranges", {
|
|
13064
|
+
lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii],
|
|
13065
|
+
upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii]
|
|
13066
|
+
});
|
|
13067
|
+
__publicField(this, "_alpha_lower_dict_ranges", {
|
|
13068
|
+
lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii]
|
|
13069
|
+
});
|
|
13070
|
+
__publicField(this, "_alpha_upper_dict_ranges", {
|
|
13071
|
+
upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii]
|
|
13072
|
+
});
|
|
13073
|
+
__publicField(this, "_alphanum_dict_ranges", {
|
|
13074
|
+
digits: [this._digit_first_ascii, this._digit_last_ascii],
|
|
13075
|
+
lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii],
|
|
13076
|
+
upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii]
|
|
13077
|
+
});
|
|
13078
|
+
__publicField(this, "_alphanum_lower_dict_ranges", {
|
|
13079
|
+
digits: [this._digit_first_ascii, this._digit_last_ascii],
|
|
13080
|
+
lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii]
|
|
13081
|
+
});
|
|
13082
|
+
__publicField(this, "_alphanum_upper_dict_ranges", {
|
|
13083
|
+
digits: [this._digit_first_ascii, this._digit_last_ascii],
|
|
13084
|
+
upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii]
|
|
13085
|
+
});
|
|
13086
|
+
__publicField(this, "_hex_dict_ranges", {
|
|
13087
|
+
decDigits: [this._digit_first_ascii, this._digit_last_ascii],
|
|
13088
|
+
alphaDigits: [this._alpha_lower_first_ascii, this._hex_last_ascii]
|
|
13089
|
+
});
|
|
13090
|
+
__publicField(this, "_dict_ranges", {
|
|
13091
|
+
_number_dict_ranges: this._number_dict_ranges,
|
|
13092
|
+
_alpha_dict_ranges: this._alpha_dict_ranges,
|
|
13093
|
+
_alpha_lower_dict_ranges: this._alpha_lower_dict_ranges,
|
|
13094
|
+
_alpha_upper_dict_ranges: this._alpha_upper_dict_ranges,
|
|
13095
|
+
_alphanum_dict_ranges: this._alphanum_dict_ranges,
|
|
13096
|
+
_alphanum_lower_dict_ranges: this._alphanum_lower_dict_ranges,
|
|
13097
|
+
_alphanum_upper_dict_ranges: this._alphanum_upper_dict_ranges,
|
|
13098
|
+
_hex_dict_ranges: this._hex_dict_ranges
|
|
13099
|
+
});
|
|
13100
|
+
__publicField(this, "log", (...args) => {
|
|
13101
|
+
const finalArgs = [...args];
|
|
13102
|
+
finalArgs[0] = `[short-unique-id] ${args[0]}`;
|
|
13103
|
+
if (this.debug === true) {
|
|
13104
|
+
if (typeof console !== "undefined" && console !== null) {
|
|
13105
|
+
return console.log(...finalArgs);
|
|
13106
|
+
}
|
|
13107
|
+
}
|
|
13108
|
+
});
|
|
13109
|
+
__publicField(this, "_normalizeDictionary", (dictionary2, shuffle2) => {
|
|
13110
|
+
let finalDict;
|
|
13111
|
+
if (dictionary2 && Array.isArray(dictionary2) && dictionary2.length > 1) {
|
|
13112
|
+
finalDict = dictionary2;
|
|
13113
|
+
} else {
|
|
13114
|
+
finalDict = [];
|
|
13115
|
+
let i;
|
|
13116
|
+
this.dictIndex = i = 0;
|
|
13117
|
+
const rangesName = `_${dictionary2}_dict_ranges`;
|
|
13118
|
+
const ranges = this._dict_ranges[rangesName];
|
|
13119
|
+
Object.keys(ranges).forEach((rangeType) => {
|
|
13120
|
+
const rangeTypeKey = rangeType;
|
|
13121
|
+
this.dictRange = ranges[rangeTypeKey];
|
|
13122
|
+
this.lowerBound = this.dictRange[0];
|
|
13123
|
+
this.upperBound = this.dictRange[1];
|
|
13124
|
+
for (this.dictIndex = i = this.lowerBound; this.lowerBound <= this.upperBound ? i < this.upperBound : i > this.upperBound; this.dictIndex = this.lowerBound <= this.upperBound ? i += 1 : i -= 1) {
|
|
13125
|
+
finalDict.push(String.fromCharCode(this.dictIndex));
|
|
13126
|
+
}
|
|
13127
|
+
});
|
|
13128
|
+
}
|
|
13129
|
+
if (shuffle2) {
|
|
13130
|
+
const PROBABILITY = 0.5;
|
|
13131
|
+
finalDict = finalDict.sort(() => Math.random() - PROBABILITY);
|
|
13132
|
+
}
|
|
13133
|
+
return finalDict;
|
|
13134
|
+
});
|
|
13135
|
+
__publicField(this, "setDictionary", (dictionary2, shuffle2) => {
|
|
13136
|
+
this.dict = this._normalizeDictionary(dictionary2, shuffle2);
|
|
13137
|
+
this.dictLength = this.dict.length;
|
|
13138
|
+
this.setCounter(0);
|
|
13139
|
+
});
|
|
13140
|
+
__publicField(this, "seq", () => {
|
|
13141
|
+
return this.sequentialUUID();
|
|
13142
|
+
});
|
|
13143
|
+
__publicField(this, "sequentialUUID", () => {
|
|
13144
|
+
let counterDiv;
|
|
13145
|
+
let counterRem;
|
|
13146
|
+
let id3 = "";
|
|
13147
|
+
counterDiv = this.counter;
|
|
13148
|
+
do {
|
|
13149
|
+
counterRem = counterDiv % this.dictLength;
|
|
13150
|
+
counterDiv = Math.trunc(counterDiv / this.dictLength);
|
|
13151
|
+
id3 += this.dict[counterRem];
|
|
13152
|
+
} while (counterDiv !== 0);
|
|
13153
|
+
this.counter += 1;
|
|
13154
|
+
return id3;
|
|
13155
|
+
});
|
|
13156
|
+
__publicField(this, "rnd", (uuidLength = this.uuidLength || DEFAULT_UUID_LENGTH) => {
|
|
13157
|
+
return this.randomUUID(uuidLength);
|
|
13158
|
+
});
|
|
13159
|
+
__publicField(this, "randomUUID", (uuidLength = this.uuidLength || DEFAULT_UUID_LENGTH) => {
|
|
13160
|
+
let id3;
|
|
13161
|
+
let randomPartIdx;
|
|
13162
|
+
let j;
|
|
13163
|
+
if (uuidLength === null || typeof uuidLength === "undefined" || uuidLength < 1) {
|
|
13164
|
+
throw new Error("Invalid UUID Length Provided");
|
|
13165
|
+
}
|
|
13166
|
+
const isPositive = uuidLength >= 0;
|
|
13167
|
+
id3 = "";
|
|
13168
|
+
for (j = 0; j < uuidLength; j += 1) {
|
|
13169
|
+
randomPartIdx = parseInt(
|
|
13170
|
+
(Math.random() * this.dictLength).toFixed(0),
|
|
13171
|
+
10
|
|
13172
|
+
) % this.dictLength;
|
|
13173
|
+
id3 += this.dict[randomPartIdx];
|
|
13174
|
+
}
|
|
13175
|
+
return id3;
|
|
13176
|
+
});
|
|
13177
|
+
__publicField(this, "fmt", (format, date) => {
|
|
13178
|
+
return this.formattedUUID(format, date);
|
|
13179
|
+
});
|
|
13180
|
+
__publicField(this, "formattedUUID", (format, date) => {
|
|
13181
|
+
const fnMap = {
|
|
13182
|
+
"$r": this.randomUUID,
|
|
13183
|
+
"$s": this.sequentialUUID,
|
|
13184
|
+
"$t": this.stamp
|
|
13185
|
+
};
|
|
13186
|
+
const result = format.replace(
|
|
13187
|
+
/\$[rs]\d{0,}|\$t0|\$t[1-9]\d{1,}/g,
|
|
13188
|
+
(m) => {
|
|
13189
|
+
const fn = m.slice(0, 2);
|
|
13190
|
+
const len = parseInt(m.slice(2), 10);
|
|
13191
|
+
if (fn === "$s") {
|
|
13192
|
+
return fnMap[fn]().padStart(len, "0");
|
|
13193
|
+
}
|
|
13194
|
+
if (fn === "$t" && date) {
|
|
13195
|
+
return fnMap[fn](len, date);
|
|
13196
|
+
}
|
|
13197
|
+
return fnMap[fn](len);
|
|
13198
|
+
}
|
|
13199
|
+
);
|
|
13200
|
+
return result;
|
|
13201
|
+
});
|
|
13202
|
+
__publicField(this, "availableUUIDs", (uuidLength = this.uuidLength) => {
|
|
13203
|
+
return parseFloat(
|
|
13204
|
+
Math.pow([...new Set(this.dict)].length, uuidLength).toFixed(0)
|
|
13205
|
+
);
|
|
13206
|
+
});
|
|
13207
|
+
__publicField(this, "approxMaxBeforeCollision", (rounds = this.availableUUIDs(this.uuidLength)) => {
|
|
13208
|
+
return parseFloat(
|
|
13209
|
+
Math.sqrt(Math.PI / 2 * rounds).toFixed(20)
|
|
13210
|
+
);
|
|
13211
|
+
});
|
|
13212
|
+
__publicField(this, "collisionProbability", (rounds = this.availableUUIDs(this.uuidLength), uuidLength = this.uuidLength) => {
|
|
13213
|
+
return parseFloat(
|
|
13214
|
+
(this.approxMaxBeforeCollision(rounds) / this.availableUUIDs(uuidLength)).toFixed(20)
|
|
13215
|
+
);
|
|
13216
|
+
});
|
|
13217
|
+
__publicField(this, "uniqueness", (rounds = this.availableUUIDs(this.uuidLength)) => {
|
|
13218
|
+
const score = parseFloat(
|
|
13219
|
+
(1 - this.approxMaxBeforeCollision(rounds) / rounds).toFixed(20)
|
|
13220
|
+
);
|
|
13221
|
+
return score > 1 ? 1 : score < 0 ? 0 : score;
|
|
13222
|
+
});
|
|
13223
|
+
__publicField(this, "getVersion", () => {
|
|
13224
|
+
return this.version;
|
|
13225
|
+
});
|
|
13226
|
+
__publicField(this, "stamp", (finalLength, date) => {
|
|
13227
|
+
const hexStamp = Math.floor(+(date || /* @__PURE__ */ new Date()) / 1e3).toString(16);
|
|
13228
|
+
if (typeof finalLength === "number" && finalLength === 0) {
|
|
13229
|
+
return hexStamp;
|
|
13230
|
+
}
|
|
13231
|
+
if (typeof finalLength !== "number" || finalLength < 10) {
|
|
13232
|
+
throw new Error(
|
|
13233
|
+
[
|
|
13234
|
+
"Param finalLength must be a number greater than or equal to 10,",
|
|
13235
|
+
"or 0 if you want the raw hexadecimal timestamp"
|
|
13236
|
+
].join("\n")
|
|
13237
|
+
);
|
|
13238
|
+
}
|
|
13239
|
+
const idLength = finalLength - 9;
|
|
13240
|
+
const rndIdx = Math.round(Math.random() * (idLength > 15 ? 15 : idLength));
|
|
13241
|
+
const id3 = this.randomUUID(idLength);
|
|
13242
|
+
return `${id3.substring(0, rndIdx)}${hexStamp}${id3.substring(rndIdx)}${rndIdx.toString(16)}`;
|
|
13243
|
+
});
|
|
13244
|
+
__publicField(this, "parseStamp", (suid, format) => {
|
|
13245
|
+
if (format && !/t0|t[1-9]\d{1,}/.test(format)) {
|
|
13246
|
+
throw new Error("Cannot extract date from a formated UUID with no timestamp in the format");
|
|
13247
|
+
}
|
|
13248
|
+
const stamp = format ? format.replace(
|
|
13249
|
+
/\$[rs]\d{0,}|\$t0|\$t[1-9]\d{1,}/g,
|
|
13250
|
+
(m) => {
|
|
13251
|
+
const fnMap = {
|
|
13252
|
+
"$r": (len2) => [...Array(len2)].map(() => "r").join(""),
|
|
13253
|
+
"$s": (len2) => [...Array(len2)].map(() => "s").join(""),
|
|
13254
|
+
"$t": (len2) => [...Array(len2)].map(() => "t").join("")
|
|
13255
|
+
};
|
|
13256
|
+
const fn = m.slice(0, 2);
|
|
13257
|
+
const len = parseInt(m.slice(2), 10);
|
|
13258
|
+
return fnMap[fn](len);
|
|
13259
|
+
}
|
|
13260
|
+
).replace(
|
|
13261
|
+
/^(.*?)(t{8,})(.*)$/g,
|
|
13262
|
+
(_m, p1, p2) => {
|
|
13263
|
+
return suid.substring(p1.length, p1.length + p2.length);
|
|
13264
|
+
}
|
|
13265
|
+
) : suid;
|
|
13266
|
+
if (stamp.length === 8) {
|
|
13267
|
+
return new Date(parseInt(stamp, 16) * 1e3);
|
|
13268
|
+
}
|
|
13269
|
+
if (stamp.length < 10) {
|
|
13270
|
+
throw new Error("Stamp length invalid");
|
|
13271
|
+
}
|
|
13272
|
+
const rndIdx = parseInt(stamp.substring(stamp.length - 1), 16);
|
|
13273
|
+
return new Date(parseInt(stamp.substring(rndIdx, rndIdx + 8), 16) * 1e3);
|
|
13274
|
+
});
|
|
13275
|
+
__publicField(this, "setCounter", (counter2) => {
|
|
13276
|
+
this.counter = counter2;
|
|
13277
|
+
});
|
|
13278
|
+
__publicField(this, "validate", (uid, dictionary2) => {
|
|
13279
|
+
const finalDictionary = dictionary2 ? this._normalizeDictionary(dictionary2) : this.dict;
|
|
13280
|
+
return uid.split("").every((c) => finalDictionary.includes(c));
|
|
13281
|
+
});
|
|
13282
|
+
const options = __spreadValues(__spreadValues({}, DEFAULT_OPTIONS), argOptions);
|
|
13283
|
+
this.counter = 0;
|
|
13284
|
+
this.debug = false;
|
|
13285
|
+
this.dict = [];
|
|
13286
|
+
this.version = version;
|
|
13287
|
+
const {
|
|
13288
|
+
dictionary,
|
|
13289
|
+
shuffle,
|
|
13290
|
+
length,
|
|
13291
|
+
counter
|
|
13292
|
+
} = options;
|
|
13293
|
+
this.uuidLength = length;
|
|
13294
|
+
this.setDictionary(dictionary, shuffle);
|
|
13295
|
+
this.setCounter(counter);
|
|
13296
|
+
this.debug = options.debug;
|
|
13297
|
+
this.log(this.dict);
|
|
13298
|
+
this.log(
|
|
13299
|
+
`Generator instantiated with Dictionary Size ${this.dictLength} and counter set to ${this.counter}`
|
|
13300
|
+
);
|
|
13301
|
+
this.log = this.log.bind(this);
|
|
13302
|
+
this.setDictionary = this.setDictionary.bind(this);
|
|
13303
|
+
this.setCounter = this.setCounter.bind(this);
|
|
13304
|
+
this.seq = this.seq.bind(this);
|
|
13305
|
+
this.sequentialUUID = this.sequentialUUID.bind(this);
|
|
13306
|
+
this.rnd = this.rnd.bind(this);
|
|
13307
|
+
this.randomUUID = this.randomUUID.bind(this);
|
|
13308
|
+
this.fmt = this.fmt.bind(this);
|
|
13309
|
+
this.formattedUUID = this.formattedUUID.bind(this);
|
|
13310
|
+
this.availableUUIDs = this.availableUUIDs.bind(this);
|
|
13311
|
+
this.approxMaxBeforeCollision = this.approxMaxBeforeCollision.bind(this);
|
|
13312
|
+
this.collisionProbability = this.collisionProbability.bind(this);
|
|
13313
|
+
this.uniqueness = this.uniqueness.bind(this);
|
|
13314
|
+
this.getVersion = this.getVersion.bind(this);
|
|
13315
|
+
this.stamp = this.stamp.bind(this);
|
|
13316
|
+
this.parseStamp = this.parseStamp.bind(this);
|
|
13317
|
+
return this;
|
|
13318
|
+
}
|
|
13319
|
+
};
|
|
13320
|
+
__publicField(_ShortUniqueId, "default", _ShortUniqueId);
|
|
13321
|
+
var ShortUniqueId2 = _ShortUniqueId;
|
|
13322
|
+
return __toCommonJS(src_exports);
|
|
13323
|
+
})();
|
|
13324
|
+
"undefined" != typeof module2 && (module2.exports = ShortUniqueId.default), "undefined" != typeof window && (ShortUniqueId = ShortUniqueId.default);
|
|
13325
|
+
}
|
|
13326
|
+
});
|
|
13327
|
+
|
|
12986
13328
|
// ../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
12987
13329
|
function _typeof(o) {
|
|
12988
13330
|
"@babel/helpers - typeof";
|
|
@@ -25528,7 +25870,8 @@ export {
|
|
|
25528
25870
|
graph2 as graph,
|
|
25529
25871
|
lit2 as lit,
|
|
25530
25872
|
st2 as st,
|
|
25531
|
-
namedNode3 as namedNode
|
|
25873
|
+
namedNode3 as namedNode,
|
|
25874
|
+
require_short_unique_id
|
|
25532
25875
|
};
|
|
25533
25876
|
/*! Bundled license information:
|
|
25534
25877
|
|