clientnode 4.0.1446 → 4.0.1447
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/Logger.js +3 -3
- package/dist/array.js +3 -3
- package/dist/bundle/Logger.js +3 -3
- package/dist/bundle/array.js +3 -3
- package/dist/bundle/data-transfer.js +3 -3
- package/dist/bundle/datetime.js +5 -5
- package/dist/bundle/expression/evaluators.js +5 -5
- package/dist/bundle/expression/index.js +5 -5
- package/dist/bundle/index.js +8 -8
- package/dist/bundle/indicators.js +3 -3
- package/dist/bundle/number.js +3 -3
- package/dist/bundle/object.js +5 -5
- package/dist/bundle/scope.js +5 -5
- package/dist/bundle/string.js +7 -7
- package/dist/bundle/test-helper.js +3 -3
- package/dist/compatible/Logger.js +3 -3
- package/dist/compatible/array.js +3 -3
- package/dist/compatible/data-transfer.js +3 -3
- package/dist/compatible/datetime.js +5 -5
- package/dist/compatible/expression/evaluators.js +5 -5
- package/dist/compatible/expression/index.js +5 -5
- package/dist/compatible/index.js +8 -8
- package/dist/compatible/indicators.js +3 -3
- package/dist/compatible/number.js +3 -3
- package/dist/compatible/object.js +5 -5
- package/dist/compatible/scope.js +5 -5
- package/dist/compatible/string.js +7 -7
- package/dist/compatible/test-helper.js +3 -3
- package/dist/data-transfer.js +3 -3
- package/dist/datetime.js +5 -5
- package/dist/expression/evaluators.js +5 -5
- package/dist/expression/index.js +5 -5
- package/dist/index.js +8 -8
- package/dist/indicators.js +3 -3
- package/dist/number.js +3 -3
- package/dist/object.js +5 -5
- package/dist/scope.js +5 -5
- package/dist/string.d.ts +1 -1
- package/dist/string.js +7 -7
- package/dist/test-helper.js +3 -3
- package/package.json +1 -1
package/dist/string.d.ts
CHANGED
|
@@ -198,7 +198,7 @@ export declare const evaluate: <T = string, S extends object = object>(expressio
|
|
|
198
198
|
* @param binding - Object to apply as "this" in evaluation scope.
|
|
199
199
|
* @returns Object with an error message during parsing / running or result.
|
|
200
200
|
*/
|
|
201
|
-
export declare const
|
|
201
|
+
export declare const evaluateOrThrowError: <Result = string, Scope extends object = object>(expression: string, scope?: Scope, execute?: boolean, removeGlobalScope?: boolean, binding?: unknown) => Result;
|
|
202
202
|
/**
|
|
203
203
|
* Finds the string match of a given query in a given target text by applying a
|
|
204
204
|
* given normalization function to target and query.
|
package/dist/string.js
CHANGED
|
@@ -64,7 +64,7 @@ __webpack_require__.a(__webpack_module__, async function (__webpack_handle_async
|
|
|
64
64
|
/* unused harmony import specifier */ var isFunction;
|
|
65
65
|
/* unused harmony import specifier */ var isProxy;
|
|
66
66
|
/* unused harmony import specifier */ var isNotANumber;
|
|
67
|
-
/* unused harmony import specifier */ var
|
|
67
|
+
/* unused harmony import specifier */ var evaluateOrThrowError;
|
|
68
68
|
/* unused harmony import specifier */ var escapeRegularExpressions;
|
|
69
69
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
70
70
|
/* harmony import */ var core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7);
|
|
@@ -202,7 +202,7 @@ if(options.deep!==0){var result=_equals(value,second[key],_objectSpread(_objectS
|
|
|
202
202
|
* @param givenOptions.executionIndicatorKey - Indicator property name to mark
|
|
203
203
|
* a value to evaluate.
|
|
204
204
|
* @returns Evaluated given mapping.
|
|
205
|
-
*/var evaluateDynamicData=function evaluateDynamicData(object,givenOptions){if(givenOptions===void 0){givenOptions={}}var options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__evaluate__",executionIndicatorKey:"__execute__"},givenOptions);if(_typeof(object)!=="object"||object===null)return object;if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=object;var internalEvaluateAndThrowError=function internalEvaluateAndThrowError(code,type){if(type===void 0){type=options.expressionIndicatorKey}return
|
|
205
|
+
*/var evaluateDynamicData=function evaluateDynamicData(object,givenOptions){if(givenOptions===void 0){givenOptions={}}var options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__evaluate__",executionIndicatorKey:"__execute__"},givenOptions);if(_typeof(object)!=="object"||object===null)return object;if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=object;var internalEvaluateAndThrowError=function internalEvaluateAndThrowError(code,type){if(type===void 0){type=options.expressionIndicatorKey}return evaluateOrThrowError(code,options.scope,type===options.executionIndicatorKey)};var _addProxyRecursively=function addProxyRecursively(data){if(_typeof(data)!=="object"||data===null||typeof Proxy==="undefined")return data;for(var _i14=0,_Object$entries8=Object.entries(data);_i14<_Object$entries8.length;_i14++){var _Object$entries8$_i=_slicedToArray(_Object$entries8[_i14],2),key=_Object$entries8$_i[0],givenValue=_Object$entries8$_i[1];if(key!=="__target__"&&isObject(givenValue)){var value=givenValue;_addProxyRecursively(value);// NOTE: We only wrap needed objects for performance reasons.
|
|
206
206
|
if(Object.prototype.hasOwnProperty.call(value,options.expressionIndicatorKey)||Object.prototype.hasOwnProperty.call(value,options.executionIndicatorKey)){var backup=value;data[key]=new Proxy(value,{get:function get(target,key){if(key==="__target__")return target;if(key==="hasOwnProperty")return target[key];/*
|
|
207
207
|
NOTE: Very complicated section, do only
|
|
208
208
|
changes while having good tests.
|
|
@@ -224,7 +224,7 @@ for(var _i18=0,_arr9=[options.expressionIndicatorKey,options.executionIndicatorK
|
|
|
224
224
|
* @param givenOptions.executionIndicatorKey - Indicator property name to mark
|
|
225
225
|
* a value to evaluate.
|
|
226
226
|
* @returns Evaluated given mapping.
|
|
227
|
-
*/var _evaluateAsyncDynamicData=/*#__PURE__*/(/* unused pure expression or super */ null && (function(){var _evaluateAsyncDynamicData2=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(data,givenOptions){var options,index,_iterator16,_step16,item,
|
|
227
|
+
*/var _evaluateAsyncDynamicData=/*#__PURE__*/(/* unused pure expression or super */ null && (function(){var _evaluateAsyncDynamicData2=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(data,givenOptions){var options,result,index,_iterator16,_step16,item,_i21,_Object$entries1,_Object$entries1$_i,key,value,_t;return _regenerator().w(function(_context){while(1)switch(_context.p=_context.n){case 0:if(givenOptions===void 0){givenOptions={}}options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__await_evaluate__",executionIndicatorKey:"__await_execute__"},givenOptions);if(!(_typeof(data)!=="object"||data===null)){_context.n=1;break}return _context.a(2,data);case 1:if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=data;result=data;if(!Array.isArray(data)){_context.n=10;break}index=0;_iterator16=_createForOfIteratorHelper(data);_context.p=2;_iterator16.s();case 3:if((_step16=_iterator16.n()).done){_context.n=6;break}item=_step16.value;_context.n=4;return _evaluateAsyncDynamicData(item,options);case 4:data[index]=_context.v;index+=1;case 5:_context.n=3;break;case 6:_context.n=8;break;case 7:_context.p=7;_t=_context.v;_iterator16.e(_t);case 8:_context.p=8;_iterator16.f();return _context.f(8);case 9:return _context.a(2,result);case 10:_i21=0,_Object$entries1=Object.entries(data);case 11:if(!(_i21<_Object$entries1.length)){_context.n=16;break}_Object$entries1$_i=_slicedToArray(_Object$entries1[_i21],2),key=_Object$entries1$_i[0],value=_Object$entries1$_i[1];if(![options.expressionIndicatorKey,options.executionIndicatorKey].includes(key)){_context.n=13;break}_context.n=12;return evaluateOrThrowError(value,options.scope,key===options.executionIndicatorKey);case 12:return _context.a(2,_context.v);case 13:if(!isPlainObject(value)){_context.n=15;break}_context.n=14;return _evaluateAsyncDynamicData(value,options);case 14:result[key]=_context.v;case 15:_i21++;_context.n=11;break;case 16:return _context.a(2,result)}},_callee,null,[[2,7,8,9]])}));function evaluateAsyncDynamicData(_x,_x2){return _evaluateAsyncDynamicData2.apply(this,arguments)}return evaluateAsyncDynamicData}()));/**
|
|
228
228
|
* Removes properties in objects where a dynamic indicator lives.
|
|
229
229
|
* @param data - Object to traverse recursively.
|
|
230
230
|
* @param expressionIndicators - Property key to remove.
|
|
@@ -497,6 +497,7 @@ __webpack_require__.a(__webpack_module__, async function (__webpack_handle_async
|
|
|
497
497
|
/* harmony export */ Ud: function() { return /* binding */ POLYFILL_TEMPLATE_STRINGS; },
|
|
498
498
|
/* harmony export */ Un: function() { return /* binding */ getEditDistance; },
|
|
499
499
|
/* harmony export */ V5: function() { return /* binding */ encodeURIComponentExtended; },
|
|
500
|
+
/* harmony export */ VK: function() { return /* binding */ evaluateOrThrowError; },
|
|
500
501
|
/* harmony export */ VU: function() { return /* binding */ getPortNumber; },
|
|
501
502
|
/* harmony export */ W5: function() { return /* binding */ maskForRegularExpression; },
|
|
502
503
|
/* harmony export */ Wq: function() { return /* binding */ getDomainName; },
|
|
@@ -516,7 +517,6 @@ __webpack_require__.a(__webpack_module__, async function (__webpack_handle_async
|
|
|
516
517
|
/* harmony export */ jL: function() { return /* binding */ parseEncodedObject; },
|
|
517
518
|
/* harmony export */ jt: function() { return /* binding */ escapeRegularExpressions; },
|
|
518
519
|
/* harmony export */ k7: function() { return /* binding */ FIX_ENCODING_ERROR_MAPPING; },
|
|
519
|
-
/* harmony export */ nD: function() { return /* binding */ evaluateAndThrowError; },
|
|
520
520
|
/* harmony export */ oz: function() { return /* binding */ representURL; },
|
|
521
521
|
/* harmony export */ p0: function() { return /* binding */ addSeparatorToPath; },
|
|
522
522
|
/* harmony export */ pM: function() { return /* binding */ fixKnownEncodingErrors; },
|
|
@@ -745,7 +745,7 @@ var _compile=compile(expression,scope,execute,removeGlobalScope,binding),error=_
|
|
|
745
745
|
* "undefined".
|
|
746
746
|
* @param binding - Object to apply as "this" in evaluation scope.
|
|
747
747
|
* @returns Object with an error message during parsing / running or result.
|
|
748
|
-
*/var
|
|
748
|
+
*/var evaluateOrThrowError=function evaluateOrThrowError(expression,scope,execute,removeGlobalScope,binding){if(scope===void 0){scope={}}if(execute===void 0){execute=false}if(removeGlobalScope===void 0){removeGlobalScope=true}if(binding===void 0){binding={}}var evaluated=evaluate(expression,scope,execute,removeGlobalScope,binding);if(evaluated.error)throw new Error(evaluated.error);return evaluated.result};/**
|
|
749
749
|
* Finds the string match of a given query in a given target text by applying a
|
|
750
750
|
* given normalization function to target and query.
|
|
751
751
|
* @param target - Target to search in.
|
|
@@ -1186,7 +1186,7 @@ __webpack_async_result__();
|
|
|
1186
1186
|
/******/ var __webpack_exports__encodeURIComponentExtended = __webpack_exports__.V5;
|
|
1187
1187
|
/******/ var __webpack_exports__escapeRegularExpressions = __webpack_exports__.jt;
|
|
1188
1188
|
/******/ var __webpack_exports__evaluate = __webpack_exports__._3;
|
|
1189
|
-
/******/ var
|
|
1189
|
+
/******/ var __webpack_exports__evaluateOrThrowError = __webpack_exports__.VK;
|
|
1190
1190
|
/******/ var __webpack_exports__findNormalizedMatchRange = __webpack_exports__.Tx;
|
|
1191
1191
|
/******/ var __webpack_exports__fixKnownEncodingErrors = __webpack_exports__.pM;
|
|
1192
1192
|
/******/ var __webpack_exports__format = __webpack_exports__.GP;
|
|
@@ -1209,5 +1209,5 @@ __webpack_async_result__();
|
|
|
1209
1209
|
/******/ var __webpack_exports__representURL = __webpack_exports__.oz;
|
|
1210
1210
|
/******/ var __webpack_exports__serviceURLEquals = __webpack_exports__._4;
|
|
1211
1211
|
/******/ var __webpack_exports__sliceAllExceptNumberAndLastSeparator = __webpack_exports__.U7;
|
|
1212
|
-
/******/ export { __webpack_exports__ALLOWED_STARTING_VARIABLE_SYMBOLS as ALLOWED_STARTING_VARIABLE_SYMBOLS, __webpack_exports__ALLOWED_VARIABLE_SYMBOLS as ALLOWED_VARIABLE_SYMBOLS, __webpack_exports__FIX_ENCODING_ERROR_MAPPING as FIX_ENCODING_ERROR_MAPPING, __webpack_exports__POLYFILL_TEMPLATE_STRINGS as POLYFILL_TEMPLATE_STRINGS, __webpack_exports__addSeparatorToPath as addSeparatorToPath, __webpack_exports__camelCaseToDelimited as camelCaseToDelimited, __webpack_exports__capitalize as capitalize, __webpack_exports__compile as compile, __webpack_exports__compressStyleValue as compressStyleValue, __webpack_exports__convertToValidVariableName as convertToValidVariableName, __webpack_exports__decodeHTMLEntities as decodeHTMLEntities, __webpack_exports__delimitedToCamelCase as delimitedToCamelCase, __webpack_exports__encodeURIComponentExtended as encodeURIComponentExtended, __webpack_exports__escapeRegularExpressions as escapeRegularExpressions, __webpack_exports__evaluate as evaluate,
|
|
1212
|
+
/******/ export { __webpack_exports__ALLOWED_STARTING_VARIABLE_SYMBOLS as ALLOWED_STARTING_VARIABLE_SYMBOLS, __webpack_exports__ALLOWED_VARIABLE_SYMBOLS as ALLOWED_VARIABLE_SYMBOLS, __webpack_exports__FIX_ENCODING_ERROR_MAPPING as FIX_ENCODING_ERROR_MAPPING, __webpack_exports__POLYFILL_TEMPLATE_STRINGS as POLYFILL_TEMPLATE_STRINGS, __webpack_exports__addSeparatorToPath as addSeparatorToPath, __webpack_exports__camelCaseToDelimited as camelCaseToDelimited, __webpack_exports__capitalize as capitalize, __webpack_exports__compile as compile, __webpack_exports__compressStyleValue as compressStyleValue, __webpack_exports__convertToValidVariableName as convertToValidVariableName, __webpack_exports__decodeHTMLEntities as decodeHTMLEntities, __webpack_exports__delimitedToCamelCase as delimitedToCamelCase, __webpack_exports__encodeURIComponentExtended as encodeURIComponentExtended, __webpack_exports__escapeRegularExpressions as escapeRegularExpressions, __webpack_exports__evaluate as evaluate, __webpack_exports__evaluateOrThrowError as evaluateOrThrowError, __webpack_exports__findNormalizedMatchRange as findNormalizedMatchRange, __webpack_exports__fixKnownEncodingErrors as fixKnownEncodingErrors, __webpack_exports__format as format, __webpack_exports__getDomainName as getDomainName, __webpack_exports__getEditDistance as getEditDistance, __webpack_exports__getPortNumber as getPortNumber, __webpack_exports__getProtocolName as getProtocolName, __webpack_exports__getURLParameter as getURLParameter, __webpack_exports__hasPathPrefix as hasPathPrefix, __webpack_exports__limit as limit, __webpack_exports__lowerCase as lowerCase, __webpack_exports__mark as mark, __webpack_exports__maskForRegularExpression as maskForRegularExpression, __webpack_exports__normalizeDomNodeSelector as normalizeDomNodeSelector, __webpack_exports__normalizePhoneNumber as normalizePhoneNumber, __webpack_exports__normalizeURL as normalizeURL, __webpack_exports__normalizeZipCode as normalizeZipCode, __webpack_exports__parseEncodedObject as parseEncodedObject, __webpack_exports__representPhoneNumber as representPhoneNumber, __webpack_exports__representURL as representURL, __webpack_exports__serviceURLEquals as serviceURLEquals, __webpack_exports__sliceAllExceptNumberAndLastSeparator as sliceAllExceptNumberAndLastSeparator };
|
|
1213
1213
|
/******/
|
package/dist/test-helper.js
CHANGED
|
@@ -178,7 +178,7 @@ __webpack_require__.a(__webpack_module__, async function (__webpack_handle_async
|
|
|
178
178
|
/* unused harmony import specifier */ var isFunction;
|
|
179
179
|
/* unused harmony import specifier */ var isProxy;
|
|
180
180
|
/* unused harmony import specifier */ var isNotANumber;
|
|
181
|
-
/* unused harmony import specifier */ var
|
|
181
|
+
/* unused harmony import specifier */ var evaluateOrThrowError;
|
|
182
182
|
/* unused harmony import specifier */ var escapeRegularExpressions;
|
|
183
183
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
184
184
|
/* harmony import */ var core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7);
|
|
@@ -316,7 +316,7 @@ if(options.deep!==0){var result=_equals(value,second[key],_objectSpread(_objectS
|
|
|
316
316
|
* @param givenOptions.executionIndicatorKey - Indicator property name to mark
|
|
317
317
|
* a value to evaluate.
|
|
318
318
|
* @returns Evaluated given mapping.
|
|
319
|
-
*/var evaluateDynamicData=function evaluateDynamicData(object,givenOptions){if(givenOptions===void 0){givenOptions={}}var options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__evaluate__",executionIndicatorKey:"__execute__"},givenOptions);if(_typeof(object)!=="object"||object===null)return object;if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=object;var internalEvaluateAndThrowError=function internalEvaluateAndThrowError(code,type){if(type===void 0){type=options.expressionIndicatorKey}return
|
|
319
|
+
*/var evaluateDynamicData=function evaluateDynamicData(object,givenOptions){if(givenOptions===void 0){givenOptions={}}var options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__evaluate__",executionIndicatorKey:"__execute__"},givenOptions);if(_typeof(object)!=="object"||object===null)return object;if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=object;var internalEvaluateAndThrowError=function internalEvaluateAndThrowError(code,type){if(type===void 0){type=options.expressionIndicatorKey}return evaluateOrThrowError(code,options.scope,type===options.executionIndicatorKey)};var _addProxyRecursively=function addProxyRecursively(data){if(_typeof(data)!=="object"||data===null||typeof Proxy==="undefined")return data;for(var _i14=0,_Object$entries8=Object.entries(data);_i14<_Object$entries8.length;_i14++){var _Object$entries8$_i=_slicedToArray(_Object$entries8[_i14],2),key=_Object$entries8$_i[0],givenValue=_Object$entries8$_i[1];if(key!=="__target__"&&isObject(givenValue)){var value=givenValue;_addProxyRecursively(value);// NOTE: We only wrap needed objects for performance reasons.
|
|
320
320
|
if(Object.prototype.hasOwnProperty.call(value,options.expressionIndicatorKey)||Object.prototype.hasOwnProperty.call(value,options.executionIndicatorKey)){var backup=value;data[key]=new Proxy(value,{get:function get(target,key){if(key==="__target__")return target;if(key==="hasOwnProperty")return target[key];/*
|
|
321
321
|
NOTE: Very complicated section, do only
|
|
322
322
|
changes while having good tests.
|
|
@@ -338,7 +338,7 @@ for(var _i18=0,_arr9=[options.expressionIndicatorKey,options.executionIndicatorK
|
|
|
338
338
|
* @param givenOptions.executionIndicatorKey - Indicator property name to mark
|
|
339
339
|
* a value to evaluate.
|
|
340
340
|
* @returns Evaluated given mapping.
|
|
341
|
-
*/var _evaluateAsyncDynamicData=/*#__PURE__*/(/* unused pure expression or super */ null && (function(){var _evaluateAsyncDynamicData2=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(data,givenOptions){var options,index,_iterator16,_step16,item,
|
|
341
|
+
*/var _evaluateAsyncDynamicData=/*#__PURE__*/(/* unused pure expression or super */ null && (function(){var _evaluateAsyncDynamicData2=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(data,givenOptions){var options,result,index,_iterator16,_step16,item,_i21,_Object$entries1,_Object$entries1$_i,key,value,_t;return _regenerator().w(function(_context){while(1)switch(_context.p=_context.n){case 0:if(givenOptions===void 0){givenOptions={}}options=_objectSpread({scope:{},selfReferenceName:"self",expressionIndicatorKey:"__await_evaluate__",executionIndicatorKey:"__await_execute__"},givenOptions);if(!(_typeof(data)!=="object"||data===null)){_context.n=1;break}return _context.a(2,data);case 1:if(!(options.selfReferenceName in options.scope))options.scope[options.selfReferenceName]=data;result=data;if(!Array.isArray(data)){_context.n=10;break}index=0;_iterator16=_createForOfIteratorHelper(data);_context.p=2;_iterator16.s();case 3:if((_step16=_iterator16.n()).done){_context.n=6;break}item=_step16.value;_context.n=4;return _evaluateAsyncDynamicData(item,options);case 4:data[index]=_context.v;index+=1;case 5:_context.n=3;break;case 6:_context.n=8;break;case 7:_context.p=7;_t=_context.v;_iterator16.e(_t);case 8:_context.p=8;_iterator16.f();return _context.f(8);case 9:return _context.a(2,result);case 10:_i21=0,_Object$entries1=Object.entries(data);case 11:if(!(_i21<_Object$entries1.length)){_context.n=16;break}_Object$entries1$_i=_slicedToArray(_Object$entries1[_i21],2),key=_Object$entries1$_i[0],value=_Object$entries1$_i[1];if(![options.expressionIndicatorKey,options.executionIndicatorKey].includes(key)){_context.n=13;break}_context.n=12;return evaluateOrThrowError(value,options.scope,key===options.executionIndicatorKey);case 12:return _context.a(2,_context.v);case 13:if(!isPlainObject(value)){_context.n=15;break}_context.n=14;return _evaluateAsyncDynamicData(value,options);case 14:result[key]=_context.v;case 15:_i21++;_context.n=11;break;case 16:return _context.a(2,result)}},_callee,null,[[2,7,8,9]])}));function evaluateAsyncDynamicData(_x,_x2){return _evaluateAsyncDynamicData2.apply(this,arguments)}return evaluateAsyncDynamicData}()));/**
|
|
342
342
|
* Removes properties in objects where a dynamic indicator lives.
|
|
343
343
|
* @param data - Object to traverse recursively.
|
|
344
344
|
* @param expressionIndicators - Property key to remove.
|