TypeError: value.some is not a function
at /mnt/c/Users/dvcl643/workspace/python/axa_ai_marketplace_mailswitch_webservice/node_modules/serverless-aws-servicecatalog/src/aws-compile-servicecatalog.js:223:34
aws-compile-servicecatalog.js:223:34 looks like
const isCFRef = !value.some(v => v !== 'Ref' && !v.startsWith('Fn::'));
I am not a JS dev, but it looks like it cannot call some on the value object. maybe it's the empty string "" in the Fn::Join that causes this?
this is a function that raises an error when deploying using serverless-aws-servicecatalog;
the error that i get is the following;
aws-compile-servicecatalog.js:223:34 looks like
const isCFRef = !value.some(v => v !== 'Ref' && !v.startsWith('Fn::'));
I am not a JS dev, but it looks like it cannot call
some
on thevalue
object. maybe it's the empty string""
in theFn::Join
that causes this?