@itentialopensource/adapter-utils 5.3.4 → 5.3.5
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 +10 -0
- package/lib/requestHandler.js +3 -0
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/CHANGELOG.md
CHANGED
package/lib/requestHandler.js
CHANGED
|
@@ -362,6 +362,9 @@ function getDataFromSources(loopField, sources, props) {
|
|
|
362
362
|
* @return {Array} Array containing 0 or more keys found in input String
|
|
363
363
|
*/
|
|
364
364
|
function extractKeysFromBraces(value) {
|
|
365
|
+
if (Number.isInteger(value)) {
|
|
366
|
+
value = value.toString();
|
|
367
|
+
}
|
|
365
368
|
const regex = /\{(.*?)\}/g;
|
|
366
369
|
const matches = value.match(regex);
|
|
367
370
|
if (matches) {
|
package/package.json
CHANGED
|
Binary file
|