agsamantha/node_modules/langchain/dist/util/extname.cjs

6 lines
185 B
JavaScript
Raw Normal View History

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