7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function isString(value) {
|
|
return typeof value === 'string';
|
|
}
|
|
exports.default = isString;
|
|
//# sourceMappingURL=is-string.js.map
|