@cabloy/utils 2.0.22 → 2.0.24
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/dist/index.js +12 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -309,6 +309,18 @@ celEnvBase.registerFunction('get(map,string):dyn', (obj, name) => {
|
|
|
309
309
|
celEnvBase.registerFunction('get(map,string,string):dyn', (obj, name, sep) => {
|
|
310
310
|
return getProperty(obj, name, sep) ?? null;
|
|
311
311
|
});
|
|
312
|
+
celEnvBase.registerFunction('get(bool,string):dyn', (_obj, _name) => {
|
|
313
|
+
return null;
|
|
314
|
+
});
|
|
315
|
+
celEnvBase.registerFunction('get(bool,string,string):dyn', (_obj, _name, _sep) => {
|
|
316
|
+
return null;
|
|
317
|
+
});
|
|
318
|
+
celEnvBase.registerFunction('get(null,string):dyn', (_obj, _name) => {
|
|
319
|
+
return null;
|
|
320
|
+
});
|
|
321
|
+
celEnvBase.registerFunction('get(null,string,string):dyn', (_obj, _name, _sep) => {
|
|
322
|
+
return null;
|
|
323
|
+
});
|
|
312
324
|
celEnvBase.registerFunction('exists(null,string):bool', (obj, name) => {
|
|
313
325
|
return hasProperty(obj, name);
|
|
314
326
|
});
|