// The core module that describes the `global.expo` object. internal final class CoreModule: Module { internal func definition() -> ModuleDefinition { // Expose some common classes and maybe even the `modules` host object in the future. Function("uuidv4") { () -> String in return UUID().uuidString.lowercased() } } }