This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/@svgr/hast-util-to-babel-ast/lib/one.js
2025-01-13 09:33:52 +03:00

23 lines
423 B
JavaScript

"use strict";
exports.__esModule = true;
exports.default = void 0;
function one(h, node, parent) {
const type = node && node.type;
const fn = h.handlers[type];
/* Fail on non-nodes. */
if (!type) {
throw new Error(`Expected node, got \`${node}\``);
}
if (!fn) {
throw new Error(`Node of type ${type} is unknown`);
}
return fn(h, node, parent);
}
var _default = one;
exports.default = _default;