// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #include "Luau/PathUtilities.h" #include namespace Luau::Require { PathType getPathType(std::string_view path) { if (path.size() >= 2 && path.substr(0, 2) == "./") return PathType::RelativeToCurrent; if (path.size() >= 3 && path.substr(0, 3) == "../") return PathType::RelativeToParent; if (path.size() >= 1 && path[0] == '@') return PathType::Aliased; return PathType::Unsupported; } std::pair splitPath(std::string_view path) { size_t pos = path.find_first_of('/'); if (pos == std::string_view::npos) return {path, {}}; return {path.substr(0, pos), path.substr(pos + 1)}; } } // namespace Luau::Require