yahoo-finance2
Version:
JS API for Yahoo Finance
18 lines (17 loc) • 496 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._undefined = void 0;
const _undefined = function _undefined(input, schema, _ctx, errors, instancePath, _dataCtx, schemaPath) {
if (input !== undefined) {
errors.push({
instancePath,
schemaPath,
message: "Expected undefined",
data: input,
schema,
});
return false;
}
return true;
};
exports._undefined = _undefined;