Guizo
Guizo
The method is `os.IsNotExist()` not `os.IsNotExists()` - https://golang.org/pkg/os/#IsNotExist. Here is my implementation: ``` if err := godotenv.Load(); err != nil && !os.IsNotExist(err) { log.Fatalln("Error loading .env") } ```
I had the same doubt. Looking at the [code](https://github.com/bbc/sqs-consumer/blob/3cafbb7e2b4847e3afbd6ebb3cc17bbc6faceb09/src/consumer.ts#L333) this is not possible but it would be a nice feature. Meanwhile my solution was to manually delete the processed messages...
I was able to use `aesjs.padding.pkcs7.pad` but not `aesjs.padding.pkcs7.unpad`. I didn't noticed the correct name in the build in functionality. I updated the text.
> Is this ready to merge? Yes.
See Pull Request #14
@pedroborges Thanks for the review. I didn't find an effective way to discover the HTML element of the custom component main node without mounting it. Something like this: ```ts const...
You mean something like this (Vue3 example)? ```ts setup(props, { slots, attrs }) { const elementRef = ref(null) nextTick(() => { if (elementRef.value) { const element = elementRef.value.$el if (element.tagName...
Yeah, I just bumped into another problem. In Vue 2, because the Link is a functional component, which is stateless, I cannot use lifecycle hooks. `onMounted` hook worked fine in...
@pedroborges My understanding is that functional components are stateless, they do not work with reactive data and don't have access to lifecycle hooks - https://v2.vuejs.org/v2/guide/render-function#Functional-Components. Typescript interface `FunctionalComponentOptions` (used in...
No problem. I had more experience with Vue 2 - only started with Vue 3 last year =). It makes sense to drop support for Vue 2 since it reached...