I'm new to rxjs but I think it's part of all ng apps and I've read that it has a handy isNumeric() function. I tried both of the following imports:
import 'rxjs/util/isNumeric';
import 'es6/util/isNumeric';
Here's some sample code that I tried to hook into this rxjs isNumeric() function:
var testString = "100";
//this doesn't compile
var isNumber = isNumeric(testString);
//this fails at runtime
var isNumber = testString.isNumeric();
What am I missing with this?