agsamantha/node_modules/langchain/dist/util/extname.cjs
2024-10-02 15:15:21 -05:00

5 lines
185 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.extname = void 0;
const extname = (path) => `.${path.split(".").pop()}`;
exports.extname = extname;