This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local fs = require("bee.filesystem") | |
local fsu = require("fs-utility") | |
local furi = require("file-uri") | |
local workspace = require("workspace") | |
local foundFileCache = {} | |
local function relativePathToDotPath(relPath) | |
-- Convert posix path to dots, and remove file extension. | |
return tostring(relPath):gsub(".lua", ""):gsub("\\", "."):gsub("/", ".") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[=[ | |
@class MemoryStoreUtils2 | |
Utils for working with MemoryStore. | |
]=] | |
local require = require(script.Parent.loader).load(script) | |
local DEBUG_MAP = false |