keynote-parser2
Version:
A library for parsing Apple Keynote file
12 lines (11 loc) • 392 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isIwaFile = void 0;
const IWA_FILE_DIRECTORY = 'Index/';
const IWA_FILE_EXTENSION = '.iwa';
/**
* Check if a file is an iwa file
*/
const isIwaFile = (relativeFilePath) => relativeFilePath.startsWith(IWA_FILE_DIRECTORY) &&
relativeFilePath.endsWith(IWA_FILE_EXTENSION);
exports.isIwaFile = isIwaFile;