1ccc1ae54STomasz Sapeta // The core module that describes the `global.expo` object. 2ccc1ae54STomasz Sapeta internal final class CoreModule: Module { definitionnull3ccc1ae54STomasz Sapeta internal func definition() -> ModuleDefinition { 4*6e021b28SWojciech Dróżdż // Expose some common classes and maybe even the `modules` host object in the future. 5*6e021b28SWojciech Dróżdż Function("uuidv4") { () -> String in 6*6e021b28SWojciech Dróżdż return UUID().uuidString.lowercased() 7*6e021b28SWojciech Dróżdż } 8ccc1ae54STomasz Sapeta } 9ccc1ae54STomasz Sapeta } 10