Nikolay

Results 285 comments of Nikolay

That's because Google's `libphonenumber` doesn't support that feature. https://github.com/google/libphonenumber/blob/10c40f6a583d97318449b3204a26f917dc6e308e/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberMatcher.java#L260-L263 ```java // Check for extra numbers at the end. // TODO: This is the place to start when trying to support...

When using `phantom-lambda-fontconfig-pack` make sure to set `FONTCONFIG_PATH` to `path.join(process.env['LAMBDA_TASK_ROOT'], '...');` instead of `process.env['LAMBDA_TASK_ROOT'];`, otherwise it'll render black boxes instead of letters.

I agree with @Cellule : I expect the queue to throw when doing `await onIdle()` if there's an error, not ignore it. My implementation: ```js import PQueue from 'p-queue'; import...

coffee-script is gone, people

Have just encountered this issue on Mac. The solution is simple: ``` brew install dos2unix dos2unix ./node_modules/mongodb-migrate/bin/mongo-migrate.js ``` However, it won't let me create a Pull Request because git doesn't...

Update: Yes, ["without country select"](https://github.com/catamphetamine/react-phone-number-input#without-country-select) component. First, create `PhoneTextInput.js` file: ```js import React, { useCallback } from 'react' import PropTypes from 'prop-types' import { TextInput } from 'react-native' function PhoneTextInput({...

Also see the previous question: https://github.com/catamphetamine/react-phone-number-input/issues/283#issuecomment-552244455

@whimsicaldreamer > "without country select" doesn't work with react native. How are you using it? Is it v3? > Till now what I have done has worked till some extent...

> I am using it as per the instructions in the readme for using "without country select" Then it won't work because React Native most likely doesn't support ``. https://github.com/catamphetamine/react-phone-number-input/blob/master/source/PhoneInput.js...

> You mean to pass in the react native TextInput component here? Yes.