@quenty/propertyvalue 1.1.0 → 1.2.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@1.1.0...@quenty/propertyvalue@1.2.0) (2023-07-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * No default predicate ([1d41dd2](https://github.com/Quenty/NevermoreEngine/commit/1d41dd2f419c04f45c0fa43d9bfc8608f88adbf4))
12
+
13
+
14
+
15
+
16
+
6
17
  # 1.1.0 (2023-07-15)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/propertyvalue",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Property value for Roblox instances",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "af7a623f58fe7ec96b47c80e385b71f820fd4cb8"
34
+ "gitHead": "c1fbe93a0a20b5c0c4b9ffbbac771926b07ac251"
35
35
  }
@@ -8,9 +8,6 @@ local require = require(script.Parent.loader).load(script)
8
8
 
9
9
  local RxInstanceUtils = require("RxInstanceUtils")
10
10
 
11
- local DEFAULT_PREDICATE = function(value)
12
- return value
13
- end
14
11
 
15
12
  local PropertyValue = {}
16
13
  PropertyValue.ClassName = "PropertyValue"
@@ -29,7 +26,6 @@ function PropertyValue.new(instance, propertyName)
29
26
  end
30
27
 
31
28
  function PropertyValue:ObserveBrio(condition)
32
- condition = condition or DEFAULT_PREDICATE
33
29
  return RxInstanceUtils.observePropertyBrio(self._obj, self._propertyName, condition)
34
30
  end
35
31