UNPKG
fit-parser
Version:
latest (0.10.1)
0.10.1
0.10.0
0.9.3
0.9.2
0.9.1
0.9.0
Parse a written workout into a set of workout objects
github.com/duereg/fit-parser
duereg/fit-parser
fit-parser
/
lib
/
parser
/
string.js
8 lines
(6 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
if
(!
String
.
prototype
.
isEmpty
) {
String
.
prototype
.
isEmpty
=
function
(
) {
return
(
typeof
this
===
'undefined'
) || (
this
===
null
) || (
this
.
length
===
0
); }; }
module
.
exports
=
String
;