is-string.js 237 B

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