UNPKG
indeed-jobs-api
Version:
latest (0.1.1)
0.1.1
node.js library for indeed jobs search api
github.com/paulrays/indeed-jobs
paulrays/indeed-jobs
indeed-jobs-api
/
lib
/
util.js
9 lines
(7 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
Util
=
function
(
){
this
.
isNumeric
=
function
(
value
) {
return
!
isNaN
(
parseFloat
(value)) &&
isFinite
(value); }; };
module
.
exports
=
new
Util
();