is-string.js 209 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function isString(value) {
  4. return typeof value === 'string';
  5. }
  6. exports.default = isString;
  7. //# sourceMappingURL=is-string.js.map