Sampo Juustila
Sampo Juustila
The only dependency that fails in the browser is `google-auth-library`. This is [used only](https://github.com/theoephraim/node-google-spreadsheet/blob/198e9c3aa6053f72f8a6e0da0f2019fcaa74f479/lib/GoogleSpreadsheet.js#L2) with the `useServiceAccountAuth` authentication method which isn't really applicable in browser use cases anyway. I got...
Same issue when I use ` @react-native-community/[email protected]` which depends on `[email protected]`. Adding `eslint-disable` in the file doesn't fix it, so I had to add the file to `.eslintignore`. Fortunately it...
I was just going to open the same issue. I think metascraper-date should *prefer* published time above updated time. For example the article at https://www.zdnet.com/article/3d-printing-with-light-scientists-create-3d-holograms/ shows clearly "January 25, 2018...
I might implement this at some point. My idea was that there would be an argument `preference: ["create", "update", "generic"]` which would filter and order the rules. Does this seem...
It's also worth noting that JavaScript sees correctly the cookies of primarydomain.com, it's just the server request which contains cookies from secondarydomain.com.
Personally I was confused with the `success` boolean, and in what case the operation could be unsuccessful and what to do then. (That's why I started digging into the code...
I was trying to find a command line argument for this as well. Also `npx react-native-clean-project --help` just starts the interactive wiping. Command line help should be provided with `-h`/`--help`...
[The code has condition](https://github.com/junina-de/react-native-haptic-feedback/blob/master/ios/RNReactNativeHapticFeedback.m#L50) that on iPhone 6 & 6S it uses `AudioServicesPlaySystemSound` and handles only the values `selection`, `impactMedium` and `notificationWarning`. The code should be changed to perform a...
Would appreciate this too, to avoid converting ArrayBuffer --> Blob --> ArrayBuffer in Node. (Edit: I ended up using bmathews's version directly as I couldn't get Blob polyfill to work....
I had the same problem when trying to control a 904008 light on a Raspberry Pi running Raspbian. After @Aurenkin's patch setting the lights worked. However something goes wrong later...