@cabloy/utils 2.0.21 → 2.0.23

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -0
  2. 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
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/utils",
3
3
  "type": "module",
4
- "version": "2.0.21",
4
+ "version": "2.0.23",
5
5
  "description": "cabloy utils",
6
6
  "publishConfig": {
7
7
  "access": "public"