TypeError: arg.startsWith is not a function
See original GitHub issueHello, I seem to be running into an issue with v0.22.1 on macOS 12.5.1. When trying to pass input through, it’s reporting TypeError: arg.startsWith is not a function
. This seems to be isolated to macOS only as 0.22.1 works fine on my Ubuntu 22.04 machine.
Downgrading to v0.22.0 seems to run fine without any issues on macOS.
Issue Analytics
- State:
- Created a year ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
startsWith is not a function getting called for no reason
startsWith (1)) , would occur with a TypeError due to startsWith() requiring a string. We can tell this is a TypeError from the...
Read more >[Solved] TypeError: startsWith is not a function - ItsJavaScript
The TypeError: startsWith is not a function occurs if we call a startsWith() method on the value that is not of a type...
Read more >TypeError: startsWith is not a Function in JavaScript - Linux Hint
The “TypeError: startsWith is not a function” occurs when the method is called on the non-string type values, as the “startsWith()” method is...
Read more >Arg Startswith Is Not A Function - Amarta Karya
25/06/2022 How to fix TypeError: startsWith is not a function error? Solution 1: Convert the value into a string. Solution 2 Performing the...
Read more >String.prototype.startsWith() - JavaScript - MDN Web Docs
This method lets you determine whether or not a string begins with another string. This method is case-sensitive. Examples. Using startsWith().
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think that was it. Running
pkill prettierd
after upgrading seems to have fixed it. Thanks for your help!@matthewswitzer thanks for confirming. I’ll try to reproduce the setup/error later today.