max-length.js 199 B

1234
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.default = (value, max) => typeof value === 'string' && value.length <= max;
  4. //# sourceMappingURL=max-length.js.map