mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 15:59:13 +08:00
33 lines
No EOL
896 B
Text
33 lines
No EOL
896 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.isIterableIterator = isIterableIterator;
|
|
exports.mergeOptions = mergeOptions;
|
|
|
|
function mergeOptions(target, source) {
|
|
for (const k of Object.keys(source)) {
|
|
if ((k === "parserOpts" || k === "generatorOpts" || k === "assumptions") && source[k]) {
|
|
const parserOpts = source[k];
|
|
const targetObj = target[k] || (target[k] = {});
|
|
mergeDefaultFields(targetObj, parserOpts);
|
|
} else {
|
|
const val = source[k];
|
|
if (val !== undefined) target[k] = val;
|
|
}
|
|
}
|
|
}
|
|
|
|
function mergeDefaultFields(target, source) {
|
|
for (const k of Object.keys(source)) {
|
|
const val = source[k];
|
|
if (val !== undefined) target[k] = val;
|
|
}
|
|
}
|
|
|
|
function isIterableIterator(value) {
|
|
return !!value && typeof value.next === "function" && typeof value[Symbol.iterator] === "function";
|
|
}
|
|
|
|
0 && 0; |