1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | exports.PLUGIN_NAME = "gulp-transform";
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | function isFunction(value) {
|
15 | return typeof value === "function";
|
16 | }
|
17 | exports.isFunction = isFunction;
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 | function isNil(value) {
|
24 | return value == null;
|
25 | }
|
26 | exports.isNil = isNil;
|
27 |
|
28 |
|
29 |
|
30 |
|
31 |
|
32 | function isObjectLike(value) {
|
33 | return typeof value === "object" && !!value;
|
34 | }
|
35 | exports.isObjectLike = isObjectLike;
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
|
41 | function isString(value) {
|
42 | return typeof value === "string";
|
43 | }
|
44 | exports.isString = isString;
|
45 |
|
\ | No newline at end of file |