UNPKG
fast-glob
Version:
beta (3.2.1-beta.1)
latest (3.3.3)
next (2.0.2)
3.3.3
3.3.2
3.3.1
3.3.0
3.2.12
3.2.11
3.2.10
3.2.9
3.2.8
3.2.7
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.1-beta.1
3.2.1-beta.0
3.2.0
3.2.0-beta.2
3.2.0-beta
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.1
1.0.0
It's a very fast and efficient glob library for Node.js
github.com/mrmlnc/fast-glob
mrmlnc/fast-glob
fast-glob
/
out
/
utils
/
string.js
12 lines
(11 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isEmpty
=
exports
.
isString
=
void
0
;
function
isString
(
input
) {
return
typeof
input ===
'string'
; }
exports
.
isString
= isString;
function
isEmpty
(
input
) {
return
input ===
''
; }
exports
.
isEmpty
= isEmpty;