UNPKG

wip-backup-manager

Version:

This utility enables backup & restore of Kentico Kontent projects

17 lines 474 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function getFilenameWithoutExtension(filename) { if (!filename) { throw Error("Invalid filename"); } if (!filename.includes('.')) { return filename; } ; return filename .split('.') .slice(0, -1) .join('.'); } exports.getFilenameWithoutExtension = getFilenameWithoutExtension; //# sourceMappingURL=global-helper.js.map