CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.cjs40 linesDownload Raw Back to dist
1'use strict';2 3Object.defineProperty(exports, '__esModule', { value: true });4 5const _path = require('./shared/pathe.BSlhyZSM.cjs');6 7const delimiter = /* @__PURE__ */ (() => globalThis.process?.platform === "win32" ? ";" : ":")();8const _platforms = { posix: void 0, win32: void 0 };9const mix = (del = delimiter) => {10  return new Proxy(_path._path, {11    get(_, prop) {12      if (prop === "delimiter") return del;13      if (prop === "posix") return posix;14      if (prop === "win32") return win32;15      return _platforms[prop] || _path._path[prop];16    }17  });18};19const posix = /* @__PURE__ */ mix(":");20const win32 = /* @__PURE__ */ mix(";");21 22exports.basename = _path.basename;23exports.dirname = _path.dirname;24exports.extname = _path.extname;25exports.format = _path.format;26exports.isAbsolute = _path.isAbsolute;27exports.join = _path.join;28exports.matchesGlob = _path.matchesGlob;29exports.normalize = _path.normalize;30exports.normalizeString = _path.normalizeString;31exports.parse = _path.parse;32exports.relative = _path.relative;33exports.resolve = _path.resolve;34exports.sep = _path.sep;35exports.toNamespacedPath = _path.toNamespacedPath;36exports.default = posix;37exports.delimiter = delimiter;38exports.posix = posix;39exports.win32 = win32;40 
basant307/AI_Governance_Project · CoolFace