Created
November 20, 2018 10:40
-
-
Save Ynote/f12f15dd466da2bd912241897f4c13b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import isPlainNumber from 'is-plain-number' | |
import isStringANumber from 'is-string-a-number' | |
isPlainNumber('42') // true | |
isStringANumber('42') // true | |
isPlainNumber('42e4') // false | |
isStringANumber('42e4') // false | |
isPlainNumber(42e4) // true | |
isStringANumber(42e4) // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment