@rbxts/app-forge 0.6.0-alpha.33 → 0.6.0-alpha.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/vide/init.luau +14 -11
- package/package.json +1 -1
package/out/vide/init.luau
CHANGED
|
@@ -44,18 +44,21 @@ do
|
|
|
44
44
|
local _name = name
|
|
45
45
|
local _value_1 = value
|
|
46
46
|
_sources[_name] = _value_1
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
47
|
+
return nil
|
|
48
|
+
end
|
|
49
|
+
local _sources = self.sources
|
|
50
|
+
local _name = name
|
|
51
|
+
local src = _sources[_name]
|
|
52
|
+
if not src then
|
|
53
|
+
createSource(name, self)
|
|
54
|
+
local _sources_1 = self.sources
|
|
55
|
+
local _name_1 = name
|
|
56
|
+
src = _sources_1[_name_1]
|
|
57
|
+
end
|
|
58
|
+
if src() == value then
|
|
59
|
+
return nil
|
|
58
60
|
end
|
|
61
|
+
src(value)
|
|
59
62
|
end
|
|
60
63
|
function AppForge:open(name)
|
|
61
64
|
self:set(name, true)
|