agsamantha/node_modules/@langchain/community/dist/utils/extname.cjs

6 lines
185 B
JavaScript
Raw Normal View History

2024-10-02 20:15:21 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.extname = void 0;
const extname = (path) => `.${path.split(".").pop()}`;
exports.extname = extname;